From 5aacb87c28c382c1d66a18fae7225dfc28622269 Mon Sep 17 00:00:00 2001 From: Kamil Jakubus Date: Mon, 23 Sep 2024 00:00:36 +0200 Subject: [PATCH] 0.0.40 --- package.json | 2 +- src/grammar.json | 277 +- src/node-types.json | 108 + src/parser.c | 316410 +++++++++++++++++++++-------------------- 4 files changed, 160052 insertions(+), 156745 deletions(-) diff --git a/package.json b/package.json index 19a998e..0606179 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@usagi-coffee/tree-sitter-abl", - "version": "0.0.39", + "version": "0.0.40", "description": "ABL grammar for tree-sitter", "main": "bindings/node", "scripts": { diff --git a/src/grammar.json b/src/grammar.json index c1d09ad..9abac5b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -548,7 +548,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_type" } } ] @@ -13942,6 +13942,277 @@ } ] }, + "enum_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enum_definition" + } + } + ] + }, + "enum_member": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[==]" + } + } + }, + "named": false, + "value": "=" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "enum_definition": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[dD][eE][fF][iI][nN][eE]" + } + } + }, + "named": false, + "value": "DEFINE" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[eE][nN][uU][mM]" + } + } + }, + "named": false, + "value": "ENUM" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enum_member" + } + }, + { + "type": "SYMBOL", + "name": "_terminator" + } + ] + }, + "enum_tuning": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[fF][lL][aA][gG][sS]" + } + } + }, + "named": false, + "value": "FLAGS" + } + ] + }, + "enum_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[eE][nN][uU][mM]" + } + } + }, + "named": false, + "value": "ENUM" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "enum_tuning" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "enum_body" + }, + "named": true, + "value": "body" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + } + } + }, + "named": false, + "value": "END" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[eE][nN][uU][mM]" + } + } + }, + "named": false, + "value": "ENUM" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_terminator" + } + ] + }, "_expression": { "type": "CHOICE", "members": [ @@ -14202,6 +14473,10 @@ "type": "SYMBOL", "name": "run_statement" }, + { + "type": "SYMBOL", + "name": "enum_statement" + }, { "type": "SYMBOL", "name": "abl_statement" diff --git a/src/node-types.json b/src/node-types.json index 10a2cef..7a13f55 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -169,6 +169,10 @@ "type": "do_block", "named": true }, + { + "type": "enum_statement", + "named": true + }, { "type": "error_scope_statement", "named": true @@ -611,6 +615,10 @@ "type": "destructor_definition", "named": true }, + { + "type": "enum_definition", + "named": true + }, { "type": "event_definition", "named": true @@ -1300,6 +1308,98 @@ ] } }, + { + "type": "enum_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "enum_member", + "named": true + } + ] + } + }, + { + "type": "enum_member", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "enum_statement", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "body", + "named": true + }, + { + "type": "enum_tuning", + "named": true + } + ] + } + }, + { + "type": "enum_tuning", + "named": true, + "fields": {} + }, { "type": "error_scope_statement", "named": true, @@ -4094,6 +4194,10 @@ "type": "END", "named": false }, + { + "type": "ENUM", + "named": false + }, { "type": "EQ", "named": false @@ -4158,6 +4262,10 @@ "type": "FIRST", "named": false }, + { + "type": "FLAGS", + "named": false + }, { "type": "FLAT-BUTTON", "named": false diff --git a/src/parser.c b/src/parser.c index 6d3ab98..4a9313b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6818 +#define STATE_COUNT 6903 #define LARGE_STATE_COUNT 207 -#define SYMBOL_COUNT 535 +#define SYMBOL_COUNT 547 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 306 +#define TOKEN_COUNT 309 #define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 27 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 63 +#define PRODUCTION_ID_COUNT 65 enum { sym_identifier = 1, @@ -322,243 +322,255 @@ enum { aux_sym_run_tuning_token6 = 295, aux_sym_run_tuning_token7 = 296, aux_sym_run_statement_token1 = 297, - sym__namedot = 298, - sym__namecolon = 299, - sym__namedoublecolon = 300, - sym__or_operator = 301, - sym__and_operator = 302, - 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, + aux_sym_enum_member_token1 = 298, + aux_sym_enum_definition_token1 = 299, + aux_sym_enum_tuning_token1 = 300, + sym__namedot = 301, + sym__namecolon = 302, + sym__namedoublecolon = 303, + sym__or_operator = 304, + sym__and_operator = 305, + sym__augmented_assignment = 306, + sym__escaped_string = 307, + sym__special_character = 308, + sym_source_code = 309, + sym_body = 310, + sym_dot_body = 311, + sym_comment = 312, + sym_constant = 313, + sym_qualified_name = 314, + sym__block_terminator = 315, + sym_boolean_literal = 316, + sym__decimal_literal = 317, + sym_number_literal = 318, + sym_string_literal = 319, + sym_array_literal = 320, + sym_double_quoted_string = 321, + sym_parenthesized_expression = 322, + sym__logical_operator = 323, + sym_logical_expression = 324, + sym_type_tuning = 325, + sym__unary_minus_expressions = 326, + sym_unary_expression = 327, + sym_ambiguous_expression = 328, + sym_temp_table_expression = 329, + sym_current_changed_expression = 330, + sym_locked_expression = 331, + sym_dataset_expression = 332, + sym_input_expression = 333, + sym__additive_operator = 334, + sym_additive_expression = 335, + sym__multiplicative_operator = 336, + sym_multiplicative_expression = 337, + sym__comparison_operator = 338, + sym_comparison_expression = 339, + sym__binary_expression = 340, + sym_array_access = 341, + sym_include_argument = 342, + sym_include = 343, + sym_primitive_type = 344, + sym_class_type = 345, + sym__type = 346, + sym_when_expression = 347, + sym_assignment = 348, + sym_variable_assignment = 349, + sym_variable_tuning = 350, + sym_scope_tuning = 351, + sym_access_tuning = 352, + sym_serialization_tuning = 353, + sym_variable_definition = 354, + sym_buffer_definition = 355, + sym_query_definition_tuning = 356, + sym_query_fields = 357, + sym_query_definition = 358, + sym_return_type = 359, + sym_function_call_statement = 360, + sym_argument_mode = 361, + sym_argument_pass_type = 362, + sym__function_argument_with_mode = 363, + sym_function_call_argument = 364, + sym_function_arguments = 365, + sym_function_call = 366, + sym_if_statement = 367, + sym_else_statement = 368, + sym_ternary_expression = 369, + sym_label = 370, + sym_while_phrase = 371, + sym_repeat_tuning = 372, + sym_repeat_statement = 373, + sym__procedure_terminator = 374, + sym_procedure_statement = 375, + sym_procedure_parameter_definition = 376, + sym__function_terminator = 377, + sym_function_parameter_mode = 378, + sym_function_parameter_tuning = 379, + sym_function_parameter = 380, + sym_function_parameters = 381, + sym_function_statement = 382, + sym_return_statement = 383, + sym_interface_body = 384, + sym_interface_tuning = 385, + sym_interface_statement = 386, + sym_property_type = 387, + sym_property_tuning = 388, + sym_getter = 389, + sym_setter = 390, + sym_property_definition = 391, + sym_event_definition = 392, + sym_method_tuning = 393, + sym_method_definition = 394, + sym_data_relation = 395, + sym_dataset_definition = 396, + sym_using_statement = 397, + sym_class_body = 398, + sym_constructor_definition = 399, + sym_destructor_definition = 400, + sym_class_tuning = 401, + sym_class_statement = 402, + sym_inherits = 403, + sym_implements = 404, + sym_use_widget_pool = 405, + sym_abstract = 406, + sym_final = 407, + sym_serializable = 408, + sym_new_expression = 409, + sym_object_access = 410, + sym_member_access = 411, + sym_stream_definition = 412, + sym_input_close_statement = 413, + sym_output_close_statement = 414, + sym__stream_statement = 415, + sym_input_stream_tuning = 416, + sym_input_stream_statement = 417, + sym_output_stream_tuning = 418, + sym_output_stream_statement = 419, + sym_on_error_phrase = 420, + sym_on_stop_phrase = 421, + sym_on_quit_phrase = 422, + sym_stop_after_phrase = 423, + sym_do_tuning = 424, + sym_to_phrase = 425, + sym_do_block = 426, + sym__case_terminator = 427, + sym__case_branch_body = 428, + sym_case_conditon = 429, + sym_case_when_branch = 430, + sym_case_otherwise_branch = 431, + sym_case_body = 432, + sym_case_statement = 433, + sym_where_clause = 434, + sym__pre_tuning = 435, + sym_query_tuning = 436, + sym_sort_order = 437, + sym_sort_column = 438, + sym_sort_clause = 439, + sym_for_phrase = 440, + sym_for_statement = 441, + sym__find_type = 442, + sym_find_statement = 443, + sym_can_find_expression = 444, + sym_of = 445, + sym_using = 446, + sym_using_field = 447, + sym_abl_statement = 448, + sym_assign_statement = 449, + sym_catch_statement = 450, + sym_finally_statement = 451, + sym_accumulate_aggregate = 452, + sym_accumulate_statement = 453, + sym_accumulate_expression = 454, + sym_available_expression = 455, + sym_undo_statement = 456, + sym_error_scope_statement = 457, + sym_temp_table_tuning = 458, + sym_field_option = 459, + sym_field_definition = 460, + sym_index_tuning = 461, + sym_index_definition = 462, + sym_workfile_tuning = 463, + sym_workfile_definition = 464, + sym_temp_table_definition = 465, + sym_widget_field = 466, + sym_widget_phrase = 467, + sym_on_statement = 468, + sym_data_source_definition = 469, + sym_prompt_for_statement = 470, + sym_variable = 471, + sym_var_statement = 472, + sym_image_phrase = 473, + sym_size_phrase = 474, + sym_button_tuning = 475, + sym_button_definition = 476, + sym_run_tuning = 477, + sym_run_statement = 478, + sym_enum_body = 479, + sym_enum_member = 480, + sym_enum_definition = 481, + sym_enum_tuning = 482, + sym_enum_statement = 483, + sym__expression = 484, + sym__statement = 485, + aux_sym_source_code_repeat1 = 486, + aux_sym_qualified_name_repeat1 = 487, + aux_sym_array_literal_repeat1 = 488, + aux_sym_double_quoted_string_repeat1 = 489, + aux_sym_include_repeat1 = 490, + aux_sym_include_repeat2 = 491, + aux_sym_variable_definition_repeat1 = 492, + aux_sym_variable_definition_repeat2 = 493, + aux_sym_buffer_definition_repeat1 = 494, + aux_sym_query_fields_repeat1 = 495, + aux_sym_query_definition_repeat1 = 496, + aux_sym_function_arguments_repeat1 = 497, + aux_sym_if_statement_repeat1 = 498, + aux_sym_repeat_statement_repeat1 = 499, + aux_sym_function_parameter_repeat1 = 500, + aux_sym_function_parameters_repeat1 = 501, + aux_sym_interface_body_repeat1 = 502, + aux_sym_interface_statement_repeat1 = 503, + aux_sym_property_definition_repeat1 = 504, + aux_sym_property_definition_repeat2 = 505, + aux_sym_property_definition_repeat3 = 506, + aux_sym_event_definition_repeat1 = 507, + aux_sym_method_definition_repeat1 = 508, + aux_sym_data_relation_repeat1 = 509, + aux_sym_class_body_repeat1 = 510, + aux_sym_destructor_definition_repeat1 = 511, + aux_sym_class_statement_repeat1 = 512, + aux_sym_inherits_repeat1 = 513, + aux_sym_object_access_repeat1 = 514, + aux_sym_member_access_repeat1 = 515, + aux_sym_input_stream_statement_repeat1 = 516, + aux_sym_output_stream_statement_repeat1 = 517, + aux_sym_do_block_repeat1 = 518, + aux_sym_case_when_branch_repeat1 = 519, + aux_sym_case_body_repeat1 = 520, + aux_sym_sort_clause_repeat1 = 521, + aux_sym_for_phrase_repeat1 = 522, + aux_sym_for_phrase_repeat2 = 523, + aux_sym_for_statement_repeat1 = 524, + aux_sym_can_find_expression_repeat1 = 525, + aux_sym_using_repeat1 = 526, + aux_sym_abl_statement_repeat1 = 527, + aux_sym_assign_statement_repeat1 = 528, + aux_sym_accumulate_statement_repeat1 = 529, + aux_sym_field_definition_repeat1 = 530, + aux_sym_index_definition_repeat1 = 531, + aux_sym_workfile_definition_repeat1 = 532, + aux_sym_workfile_definition_repeat2 = 533, + aux_sym_workfile_definition_repeat3 = 534, + aux_sym_temp_table_definition_repeat1 = 535, + aux_sym_temp_table_definition_repeat2 = 536, + aux_sym_widget_phrase_repeat1 = 537, + aux_sym_on_statement_repeat1 = 538, + aux_sym_on_statement_repeat2 = 539, + aux_sym_var_statement_repeat1 = 540, + aux_sym_button_definition_repeat1 = 541, + aux_sym_run_statement_repeat1 = 542, + aux_sym_enum_body_repeat1 = 543, + aux_sym_enum_member_repeat1 = 544, + aux_sym_enum_definition_repeat1 = 545, + aux_sym_enum_statement_repeat1 = 546, }; static const char * const ts_symbol_names[] = { @@ -860,6 +872,9 @@ static const char * const ts_symbol_names[] = { [aux_sym_run_tuning_token6] = "THIS-PROCEDURE", [aux_sym_run_tuning_token7] = "EVENT-PROCEDURE", [aux_sym_run_statement_token1] = "RUN", + [aux_sym_enum_member_token1] = "=", + [aux_sym_enum_definition_token1] = "ENUM", + [aux_sym_enum_tuning_token1] = "FLAGS", [sym__namedot] = ".", [sym__namecolon] = ":", [sym__namedoublecolon] = "::", @@ -1038,6 +1053,11 @@ static const char * const ts_symbol_names[] = { [sym_button_definition] = "button_definition", [sym_run_tuning] = "run_tuning", [sym_run_statement] = "run_statement", + [sym_enum_body] = "body", + [sym_enum_member] = "enum_member", + [sym_enum_definition] = "enum_definition", + [sym_enum_tuning] = "enum_tuning", + [sym_enum_statement] = "enum_statement", [sym__expression] = "_expression", [sym__statement] = "_statement", [aux_sym_source_code_repeat1] = "source_code_repeat1", @@ -1097,6 +1117,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_var_statement_repeat1] = "var_statement_repeat1", [aux_sym_button_definition_repeat1] = "button_definition_repeat1", [aux_sym_run_statement_repeat1] = "run_statement_repeat1", + [aux_sym_enum_body_repeat1] = "enum_body_repeat1", + [aux_sym_enum_member_repeat1] = "enum_member_repeat1", + [aux_sym_enum_definition_repeat1] = "enum_definition_repeat1", + [aux_sym_enum_statement_repeat1] = "enum_statement_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -1398,6 +1422,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_run_tuning_token6] = aux_sym_run_tuning_token6, [aux_sym_run_tuning_token7] = aux_sym_run_tuning_token7, [aux_sym_run_statement_token1] = aux_sym_run_statement_token1, + [aux_sym_enum_member_token1] = anon_sym_EQ, + [aux_sym_enum_definition_token1] = aux_sym_enum_definition_token1, + [aux_sym_enum_tuning_token1] = aux_sym_enum_tuning_token1, [sym__namedot] = anon_sym_DOT, [sym__namecolon] = anon_sym_COLON, [sym__namedoublecolon] = sym__namedoublecolon, @@ -1576,6 +1603,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_button_definition] = sym_button_definition, [sym_run_tuning] = sym_run_tuning, [sym_run_statement] = sym_run_statement, + [sym_enum_body] = sym_body, + [sym_enum_member] = sym_enum_member, + [sym_enum_definition] = sym_enum_definition, + [sym_enum_tuning] = sym_enum_tuning, + [sym_enum_statement] = sym_enum_statement, [sym__expression] = sym__expression, [sym__statement] = sym__statement, [aux_sym_source_code_repeat1] = aux_sym_source_code_repeat1, @@ -1635,6 +1667,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_var_statement_repeat1] = aux_sym_var_statement_repeat1, [aux_sym_button_definition_repeat1] = aux_sym_button_definition_repeat1, [aux_sym_run_statement_repeat1] = aux_sym_run_statement_repeat1, + [aux_sym_enum_body_repeat1] = aux_sym_enum_body_repeat1, + [aux_sym_enum_member_repeat1] = aux_sym_enum_member_repeat1, + [aux_sym_enum_definition_repeat1] = aux_sym_enum_definition_repeat1, + [aux_sym_enum_statement_repeat1] = aux_sym_enum_statement_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -2830,6 +2866,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_enum_member_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_enum_definition_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_enum_tuning_token1] = { + .visible = true, + .named = false, + }, [sym__namedot] = { .visible = true, .named = false, @@ -3542,6 +3590,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_enum_body] = { + .visible = true, + .named = true, + }, + [sym_enum_member] = { + .visible = true, + .named = true, + }, + [sym_enum_definition] = { + .visible = true, + .named = true, + }, + [sym_enum_tuning] = { + .visible = true, + .named = true, + }, + [sym_enum_statement] = { + .visible = true, + .named = true, + }, [sym__expression] = { .visible = false, .named = true, @@ -3780,6 +3848,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_enum_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_member_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_statement_repeat1] = { + .visible = false, + .named = false, + }, }; enum { @@ -3901,9 +3985,11 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [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}, + [60] = {.index = 80, .length = 3}, + [61] = {.index = 29, .length = 1}, + [62] = {.index = 83, .length = 1}, + [63] = {.index = 84, .length = 4}, + [64] = {.index = 88, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4044,8 +4130,17 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 4}, {field_variable, 1}, [80] = + {field_name, 0}, + {field_value, 1}, + {field_value, 2}, + [83] = {field_condition, 2}, - [81] = + [84] = + {field_name, 0}, + {field_value, 1}, + {field_value, 2}, + {field_value, 3}, + [88] = {field_height, 6}, {field_width, 4}, }; @@ -4067,7 +4162,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [55] = { [1] = sym_return_type, }, - [60] = { + [61] = { [2] = sym_return_type, }, }; @@ -4140,29 +4235,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [53] = 53, [54] = 54, [55] = 55, - [56] = 20, + [56] = 53, [57] = 57, - [58] = 19, + [58] = 58, [59] = 59, - [60] = 11, - [61] = 55, + [60] = 60, + [61] = 61, [62] = 62, [63] = 63, - [64] = 64, + [64] = 63, [65] = 65, [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 67, - [71] = 69, - [72] = 69, - [73] = 67, - [74] = 68, - [75] = 69, - [76] = 68, - [77] = 69, - [78] = 69, + [67] = 63, + [68] = 10, + [69] = 19, + [70] = 66, + [71] = 15, + [72] = 72, + [73] = 63, + [74] = 72, + [75] = 63, + [76] = 63, + [77] = 72, + [78] = 66, [79] = 79, [80] = 79, [81] = 79, @@ -4171,55 +4266,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [84] = 84, [85] = 85, [86] = 85, - [87] = 84, - [88] = 85, - [89] = 85, - [90] = 84, + [87] = 85, + [88] = 84, + [89] = 84, + [90] = 85, [91] = 84, - [92] = 84, - [93] = 85, - [94] = 85, - [95] = 85, - [96] = 84, + [92] = 85, + [93] = 84, + [94] = 84, + [95] = 84, + [96] = 85, [97] = 84, - [98] = 84, - [99] = 85, + [98] = 85, + [99] = 84, [100] = 85, - [101] = 85, + [101] = 84, [102] = 84, - [103] = 84, + [103] = 85, [104] = 84, [105] = 85, [106] = 85, - [107] = 84, + [107] = 85, [108] = 85, [109] = 84, [110] = 110, - [111] = 110, - [112] = 110, + [111] = 111, + [112] = 111, [113] = 110, - [114] = 110, - [115] = 115, - [116] = 115, - [117] = 115, - [118] = 115, - [119] = 115, - [120] = 110, - [121] = 115, + [114] = 111, + [115] = 110, + [116] = 111, + [117] = 111, + [118] = 110, + [119] = 111, + [120] = 111, + [121] = 111, [122] = 110, - [123] = 115, + [123] = 110, [124] = 110, [125] = 110, - [126] = 115, + [126] = 110, [127] = 110, [128] = 110, - [129] = 110, - [130] = 115, - [131] = 115, - [132] = 115, - [133] = 115, - [134] = 110, - [135] = 115, + [129] = 111, + [130] = 111, + [131] = 110, + [132] = 110, + [133] = 111, + [134] = 111, + [135] = 111, [136] = 136, [137] = 136, [138] = 136, @@ -4229,1399 +4324,1399 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [142] = 3, [143] = 143, [144] = 144, - [145] = 3, - [146] = 2, + [145] = 2, + [146] = 3, [147] = 147, [148] = 147, [149] = 147, [150] = 147, - [151] = 147, + [151] = 151, [152] = 147, [153] = 147, [154] = 147, [155] = 147, [156] = 147, [157] = 147, - [158] = 158, - [159] = 159, + [158] = 147, + [159] = 147, [160] = 147, - [161] = 161, + [161] = 147, [162] = 147, - [163] = 147, + [163] = 163, [164] = 147, [165] = 147, [166] = 147, [167] = 147, [168] = 147, - [169] = 23, - [170] = 147, + [169] = 147, + [170] = 25, [171] = 147, - [172] = 147, - [173] = 173, + [172] = 172, + [173] = 147, [174] = 147, - [175] = 147, + [175] = 175, [176] = 147, [177] = 147, [178] = 147, [179] = 147, - [180] = 180, - [181] = 181, - [182] = 2, - [183] = 39, - [184] = 4, - [185] = 43, - [186] = 5, + [180] = 5, + [181] = 41, + [182] = 4, + [183] = 6, + [184] = 184, + [185] = 2, + [186] = 186, [187] = 3, - [188] = 6, - [189] = 10, - [190] = 7, - [191] = 191, - [192] = 192, - [193] = 15, + [188] = 33, + [189] = 189, + [190] = 190, + [191] = 13, + [192] = 172, + [193] = 193, [194] = 194, [195] = 195, [196] = 196, - [197] = 161, + [197] = 197, [198] = 198, [199] = 199, - [200] = 200, - [201] = 201, + [200] = 7, + [201] = 9, [202] = 202, [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, + [207] = 27, + [208] = 16, + [209] = 209, + [210] = 10, + [211] = 19, + [212] = 15, + [213] = 213, + [214] = 12, + [215] = 184, + [216] = 18, + [217] = 11, + [218] = 218, + [219] = 8, + [220] = 14, + [221] = 20, + [222] = 17, + [223] = 203, + [224] = 18, + [225] = 10, + [226] = 8, + [227] = 19, + [228] = 26, + [229] = 20, [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, + [231] = 6, + [232] = 4, + [233] = 206, + [234] = 194, + [235] = 17, + [236] = 202, + [237] = 15, + [238] = 22, + [239] = 205, + [240] = 21, + [241] = 204, + [242] = 24, + [243] = 190, + [244] = 65, + [245] = 189, + [246] = 25, + [247] = 16, + [248] = 23, + [249] = 198, + [250] = 197, + [251] = 196, + [252] = 5, + [253] = 199, + [254] = 15, + [255] = 19, + [256] = 26, + [257] = 257, + [258] = 10, + [259] = 7, + [260] = 14, + [261] = 12, + [262] = 262, [263] = 263, [264] = 264, - [265] = 2, - [266] = 266, - [267] = 267, - [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, + [265] = 36, + [266] = 24, + [267] = 37, + [268] = 43, + [269] = 52, + [270] = 44, + [271] = 263, + [272] = 272, + [273] = 264, + [274] = 264, + [275] = 29, + [276] = 262, + [277] = 263, + [278] = 40, + [279] = 263, + [280] = 35, [281] = 281, - [282] = 3, - [283] = 267, - [284] = 266, - [285] = 267, - [286] = 266, - [287] = 267, - [288] = 266, - [289] = 267, - [290] = 280, + [282] = 264, + [283] = 34, + [284] = 32, + [285] = 264, + [286] = 31, + [287] = 263, + [288] = 262, + [289] = 264, + [290] = 263, [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, + [292] = 30, + [293] = 9, + [294] = 263, + [295] = 45, + [296] = 38, + [297] = 264, + [298] = 39, + [299] = 42, + [300] = 22, + [301] = 21, + [302] = 48, + [303] = 49, + [304] = 263, + [305] = 25, + [306] = 264, + [307] = 50, + [308] = 264, + [309] = 46, + [310] = 47, + [311] = 263, + [312] = 3, + [313] = 262, + [314] = 314, + [315] = 263, + [316] = 316, + [317] = 264, + [318] = 41, + [319] = 264, + [320] = 51, + [321] = 33, + [322] = 264, + [323] = 262, + [324] = 27, + [325] = 263, + [326] = 263, + [327] = 13, + [328] = 28, + [329] = 263, + [330] = 2, + [331] = 264, + [332] = 332, + [333] = 43, + [334] = 334, + [335] = 35, + [336] = 34, + [337] = 32, + [338] = 31, + [339] = 40, + [340] = 28, + [341] = 30, + [342] = 45, + [343] = 29, + [344] = 38, + [345] = 39, + [346] = 42, + [347] = 44, + [348] = 52, + [349] = 48, + [350] = 49, + [351] = 50, + [352] = 37, + [353] = 46, + [354] = 2, + [355] = 41, + [356] = 3, + [357] = 33, + [358] = 51, + [359] = 47, + [360] = 36, + [361] = 12, + [362] = 16, + [363] = 18, + [364] = 8, + [365] = 26, + [366] = 20, + [367] = 11, + [368] = 6, + [369] = 4, + [370] = 7, + [371] = 5, + [372] = 65, + [373] = 17, + [374] = 14, + [375] = 15, + [376] = 19, + [377] = 10, + [378] = 15, + [379] = 19, + [380] = 10, + [381] = 257, + [382] = 334, + [383] = 334, + [384] = 334, + [385] = 334, [386] = 386, [387] = 387, [388] = 388, - [389] = 388, - [390] = 388, + [389] = 389, + [390] = 390, [391] = 391, - [392] = 9, + [392] = 392, [393] = 393, - [394] = 394, + [394] = 387, [395] = 395, - [396] = 386, - [397] = 391, + [396] = 14, + [397] = 397, [398] = 398, - [399] = 399, + [399] = 386, [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] = 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, + [403] = 393, + [404] = 397, + [405] = 405, + [406] = 405, + [407] = 405, + [408] = 405, + [409] = 405, + [410] = 410, + [411] = 405, + [412] = 405, + [413] = 413, + [414] = 405, + [415] = 405, + [416] = 416, + [417] = 405, + [418] = 388, + [419] = 392, + [420] = 389, + [421] = 390, + [422] = 391, + [423] = 392, + [424] = 391, + [425] = 393, + [426] = 387, + [427] = 393, + [428] = 428, + [429] = 398, + [430] = 390, + [431] = 398, + [432] = 389, + [433] = 398, + [434] = 398, + [435] = 398, + [436] = 398, + [437] = 389, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 405, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 390, + [446] = 391, + [447] = 392, + [448] = 393, + [449] = 389, + [450] = 390, [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, + [452] = 392, + [453] = 393, + [454] = 387, + [455] = 389, + [456] = 387, + [457] = 390, + [458] = 389, + [459] = 398, + [460] = 389, + [461] = 390, + [462] = 391, + [463] = 390, + [464] = 389, + [465] = 390, + [466] = 391, + [467] = 392, + [468] = 393, + [469] = 387, + [470] = 389, + [471] = 390, [472] = 391, - [473] = 404, - [474] = 399, - [475] = 400, - [476] = 401, + [473] = 392, + [474] = 393, + [475] = 416, + [476] = 391, [477] = 387, - [478] = 403, - [479] = 404, - [480] = 399, - [481] = 400, - [482] = 401, - [483] = 387, - [484] = 403, - [485] = 485, - [486] = 404, + [478] = 393, + [479] = 392, + [480] = 392, + [481] = 391, + [482] = 390, + [483] = 389, + [484] = 484, + [485] = 389, + [486] = 390, [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, + [488] = 392, + [489] = 393, + [490] = 387, + [491] = 491, + [492] = 389, + [493] = 390, + [494] = 391, + [495] = 392, + [496] = 393, + [497] = 387, + [498] = 393, + [499] = 387, + [500] = 443, + [501] = 391, + [502] = 443, + [503] = 405, + [504] = 484, + [505] = 405, + [506] = 405, + [507] = 392, + [508] = 389, + [509] = 390, + [510] = 391, + [511] = 392, + [512] = 393, + [513] = 387, + [514] = 389, + [515] = 390, + [516] = 391, + [517] = 392, + [518] = 518, + [519] = 393, + [520] = 387, + [521] = 392, + [522] = 522, + [523] = 393, + [524] = 443, + [525] = 405, + [526] = 405, + [527] = 387, + [528] = 405, + [529] = 387, + [530] = 393, + [531] = 392, + [532] = 391, + [533] = 395, + [534] = 389, + [535] = 390, + [536] = 391, + [537] = 392, + [538] = 393, + [539] = 387, + [540] = 390, + [541] = 387, + [542] = 393, + [543] = 392, + [544] = 391, + [545] = 390, + [546] = 389, + [547] = 387, + [548] = 398, + [549] = 387, + [550] = 393, + [551] = 392, + [552] = 391, + [553] = 389, + [554] = 390, + [555] = 391, + [556] = 392, + [557] = 393, + [558] = 387, + [559] = 390, + [560] = 560, + [561] = 389, + [562] = 389, + [563] = 397, + [564] = 484, + [565] = 398, + [566] = 398, + [567] = 398, + [568] = 398, + [569] = 386, + [570] = 398, + [571] = 389, + [572] = 390, [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] = 404, - [610] = 403, - [611] = 387, - [612] = 401, - [613] = 400, - [614] = 399, - [615] = 615, - [616] = 411, - [617] = 398, - [618] = 386, - [619] = 395, - [620] = 394, + [574] = 400, + [575] = 392, + [576] = 393, + [577] = 387, + [578] = 401, + [579] = 416, + [580] = 388, + [581] = 398, + [582] = 443, + [583] = 398, + [584] = 405, + [585] = 398, + [586] = 398, + [587] = 398, + [588] = 398, + [589] = 589, + [590] = 386, + [591] = 389, + [592] = 390, + [593] = 391, + [594] = 392, + [595] = 393, + [596] = 387, + [597] = 400, + [598] = 401, + [599] = 416, + [600] = 388, + [601] = 398, + [602] = 393, + [603] = 398, + [604] = 604, + [605] = 605, + [606] = 392, + [607] = 388, + [608] = 387, + [609] = 609, + [610] = 443, + [611] = 391, + [612] = 393, + [613] = 392, + [614] = 391, + [615] = 401, + [616] = 390, + [617] = 389, + [618] = 390, + [619] = 391, + [620] = 392, [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, + [622] = 387, + [623] = 389, + [624] = 390, + [625] = 391, + [626] = 392, + [627] = 393, + [628] = 387, + [629] = 397, + [630] = 386, + [631] = 400, + [632] = 401, + [633] = 416, + [634] = 634, + [635] = 388, + [636] = 416, + [637] = 443, + [638] = 398, + [639] = 639, + [640] = 401, + [641] = 400, + [642] = 413, + [643] = 389, + [644] = 13, + [645] = 605, + [646] = 387, + [647] = 390, + [648] = 27, + [649] = 393, + [650] = 609, + [651] = 392, + [652] = 398, + [653] = 605, + [654] = 386, + [655] = 391, + [656] = 609, + [657] = 657, + [658] = 658, + [659] = 589, + [660] = 405, + [661] = 609, + [662] = 390, + [663] = 389, + [664] = 390, + [665] = 391, + [666] = 392, + [667] = 393, + [668] = 387, + [669] = 389, + [670] = 390, + [671] = 391, + [672] = 392, + [673] = 393, + [674] = 405, + [675] = 387, + [676] = 398, + [677] = 389, + [678] = 389, + [679] = 386, + [680] = 400, + [681] = 401, + [682] = 416, + [683] = 388, + [684] = 605, + [685] = 609, + [686] = 686, + [687] = 398, + [688] = 605, + [689] = 609, + [690] = 484, + [691] = 443, + [692] = 692, + [693] = 413, + [694] = 639, + [695] = 695, + [696] = 25, + [697] = 17, + [698] = 484, + [699] = 21, + [700] = 398, + [701] = 386, + [702] = 702, + [703] = 589, + [704] = 400, + [705] = 22, + [706] = 400, + [707] = 401, + [708] = 416, + [709] = 388, + [710] = 405, + [711] = 605, + [712] = 609, + [713] = 443, + [714] = 397, + [715] = 398, + [716] = 389, + [717] = 387, + [718] = 389, + [719] = 391, + [720] = 390, + [721] = 391, + [722] = 392, + [723] = 393, + [724] = 387, + [725] = 389, + [726] = 390, + [727] = 391, + [728] = 392, + [729] = 393, + [730] = 387, + [731] = 398, + [732] = 9, + [733] = 733, + [734] = 388, + [735] = 397, + [736] = 400, + [737] = 401, + [738] = 416, + [739] = 388, + [740] = 609, + [741] = 392, + [742] = 23, + [743] = 443, + [744] = 416, + [745] = 401, + [746] = 400, + [747] = 386, + [748] = 387, + [749] = 410, + [750] = 405, + [751] = 413, + [752] = 639, + [753] = 438, + [754] = 605, + [755] = 442, + [756] = 410, + [757] = 757, + [758] = 758, + [759] = 386, + [760] = 733, + [761] = 400, + [762] = 393, + [763] = 401, + [764] = 416, + [765] = 605, + [766] = 388, + [767] = 692, + [768] = 405, + [769] = 410, + [770] = 589, [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, + [772] = 443, + [773] = 443, + [774] = 405, + [775] = 388, + [776] = 416, + [777] = 401, + [778] = 400, + [779] = 386, + [780] = 410, + [781] = 443, + [782] = 405, + [783] = 388, + [784] = 416, + [785] = 401, + [786] = 400, + [787] = 386, + [788] = 405, + [789] = 443, + [790] = 405, + [791] = 388, + [792] = 416, + [793] = 401, [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, + [795] = 386, + [796] = 405, + [797] = 443, + [798] = 388, + [799] = 416, + [800] = 401, + [801] = 400, + [802] = 386, + [803] = 443, + [804] = 388, + [805] = 416, + [806] = 605, + [807] = 807, + [808] = 401, + [809] = 400, + [810] = 386, + [811] = 443, + [812] = 388, + [813] = 416, + [814] = 401, + [815] = 400, + [816] = 386, + [817] = 387, + [818] = 443, + [819] = 609, + [820] = 807, [821] = 393, - [822] = 394, - [823] = 395, - [824] = 386, - [825] = 398, - [826] = 427, - [827] = 393, - [828] = 394, - [829] = 395, - [830] = 386, + [822] = 392, + [823] = 560, + [824] = 518, + [825] = 388, + [826] = 416, + [827] = 401, + [828] = 400, + [829] = 386, + [830] = 444, [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, + [832] = 443, + [833] = 391, + [834] = 392, + [835] = 390, + [836] = 388, + [837] = 416, + [838] = 401, + [839] = 400, + [840] = 386, + [841] = 389, + [842] = 391, + [843] = 443, + [844] = 440, + [845] = 332, + [846] = 605, + [847] = 388, + [848] = 416, + [849] = 401, + [850] = 400, + [851] = 386, + [852] = 686, + [853] = 386, + [854] = 443, + [855] = 609, + [856] = 428, + [857] = 807, + [858] = 388, + [859] = 416, + [860] = 401, + [861] = 400, + [862] = 386, [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, + [864] = 864, + [865] = 443, + [866] = 388, + [867] = 416, + [868] = 401, + [869] = 400, + [870] = 386, + [871] = 443, + [872] = 388, + [873] = 416, + [874] = 401, + [875] = 443, + [876] = 400, + [877] = 400, + [878] = 401, [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, + [880] = 416, + [881] = 388, + [882] = 443, + [883] = 390, + [884] = 560, + [885] = 405, + [886] = 518, + [887] = 405, + [888] = 388, + [889] = 416, + [890] = 401, + [891] = 400, + [892] = 386, + [893] = 393, + [894] = 444, + [895] = 443, + [896] = 398, + [897] = 388, + [898] = 416, + [899] = 401, + [900] = 900, + [901] = 400, + [902] = 386, + [903] = 440, + [904] = 443, + [905] = 605, + [906] = 686, + [907] = 388, + [908] = 416, + [909] = 401, + [910] = 400, + [911] = 386, + [912] = 609, + [913] = 443, + [914] = 428, + [915] = 807, + [916] = 560, + [917] = 443, + [918] = 518, + [919] = 444, + [920] = 398, + [921] = 388, + [922] = 416, + [923] = 401, + [924] = 400, + [925] = 389, + [926] = 386, + [927] = 398, + [928] = 440, + [929] = 443, + [930] = 605, + [931] = 686, + [932] = 386, + [933] = 609, + [934] = 388, + [935] = 416, + [936] = 401, + [937] = 400, + [938] = 386, + [939] = 400, + [940] = 401, + [941] = 416, + [942] = 388, + [943] = 443, + [944] = 388, + [945] = 405, + [946] = 428, + [947] = 388, + [948] = 416, + [949] = 401, + [950] = 400, + [951] = 386, + [952] = 405, + [953] = 405, + [954] = 443, + [955] = 390, + [956] = 388, + [957] = 416, + [958] = 401, + [959] = 400, + [960] = 386, + [961] = 416, + [962] = 443, + [963] = 443, + [964] = 386, + [965] = 401, + [966] = 428, + [967] = 609, + [968] = 686, + [969] = 605, + [970] = 440, + [971] = 807, + [972] = 388, + [973] = 416, + [974] = 401, + [975] = 400, + [976] = 386, + [977] = 398, + [978] = 24, + [979] = 444, + [980] = 518, + [981] = 387, + [982] = 560, + [983] = 395, + [984] = 400, + [985] = 405, + [986] = 36, + [987] = 204, + [988] = 194, + [989] = 24, [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, + [991] = 190, + [992] = 28, + [993] = 199, + [994] = 30, + [995] = 34, + [996] = 189, + [997] = 45, + [998] = 198, + [999] = 35, + [1000] = 197, + [1001] = 196, + [1002] = 52, + [1003] = 202, + [1004] = 205, + [1005] = 40, [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, + [1007] = 41, + [1008] = 29, + [1009] = 39, + [1010] = 37, + [1011] = 43, + [1012] = 33, + [1013] = 31, + [1014] = 206, + [1015] = 42, + [1016] = 47, + [1017] = 203, + [1018] = 48, + [1019] = 49, + [1020] = 50, + [1021] = 46, + [1022] = 51, + [1023] = 44, + [1024] = 189, + [1025] = 36, [1026] = 198, [1027] = 1027, - [1028] = 196, - [1029] = 195, - [1030] = 202, - [1031] = 1031, - [1032] = 192, - [1033] = 199, + [1028] = 197, + [1029] = 196, + [1030] = 199, + [1031] = 202, + [1032] = 203, + [1033] = 1033, [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, + [1037] = 1037, + [1038] = 190, + [1039] = 206, + [1040] = 5, + [1041] = 17, + [1042] = 18, + [1043] = 65, + [1044] = 8, + [1045] = 12, + [1046] = 1046, + [1047] = 16, + [1048] = 20, + [1049] = 15, + [1050] = 7, [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, + [1052] = 15, + [1053] = 6, + [1054] = 257, + [1055] = 10, + [1056] = 14, + [1057] = 11, + [1058] = 4, + [1059] = 19, + [1060] = 26, + [1061] = 19, + [1062] = 15, + [1063] = 17, [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] = 38, - [1100] = 52, - [1101] = 32, + [1066] = 19, + [1067] = 7, + [1068] = 25, + [1069] = 22, + [1070] = 23, + [1071] = 4, + [1072] = 19, + [1073] = 10, + [1074] = 12, + [1075] = 6, + [1076] = 10, + [1077] = 8, + [1078] = 27, + [1079] = 11, + [1080] = 18, + [1081] = 332, + [1082] = 65, + [1083] = 13, + [1084] = 21, + [1085] = 16, + [1086] = 9, + [1087] = 24, + [1088] = 14, + [1089] = 26, + [1090] = 20, + [1091] = 257, + [1092] = 48, + [1093] = 36, + [1094] = 52, + [1095] = 25, + [1096] = 33, + [1097] = 32, + [1098] = 31, + [1099] = 50, + [1100] = 49, + [1101] = 47, [1102] = 21, - [1103] = 31, + [1103] = 43, [1104] = 37, - [1105] = 7, - [1106] = 26, - [1107] = 30, + [1105] = 22, + [1106] = 13, + [1107] = 41, [1108] = 40, - [1109] = 41, - [1110] = 28, - [1111] = 49, - [1112] = 22, - [1113] = 307, + [1109] = 332, + [1110] = 46, + [1111] = 35, + [1112] = 27, + [1113] = 42, [1114] = 51, - [1115] = 15, - [1116] = 42, - [1117] = 35, - [1118] = 36, - [1119] = 33, + [1115] = 39, + [1116] = 9, + [1117] = 29, + [1118] = 34, + [1119] = 44, [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] = 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, + [1121] = 30, + [1122] = 24, + [1123] = 38, + [1124] = 23, + [1125] = 28, + [1126] = 203, + [1127] = 52, + [1128] = 36, + [1129] = 32, + [1130] = 34, + [1131] = 206, + [1132] = 205, + [1133] = 42, + [1134] = 204, + [1135] = 41, + [1136] = 50, + [1137] = 202, + [1138] = 199, + [1139] = 35, + [1140] = 46, + [1141] = 31, + [1142] = 51, + [1143] = 39, + [1144] = 48, + [1145] = 1145, + [1146] = 49, + [1147] = 190, + [1148] = 28, + [1149] = 38, + [1150] = 30, + [1151] = 45, + [1152] = 37, + [1153] = 43, + [1154] = 47, + [1155] = 33, + [1156] = 189, + [1157] = 198, + [1158] = 197, + [1159] = 196, + [1160] = 194, + [1161] = 40, + [1162] = 44, + [1163] = 29, + [1164] = 257, + [1165] = 10, + [1166] = 332, + [1167] = 19, + [1168] = 65, + [1169] = 15, [1170] = 1170, - [1171] = 1171, - [1172] = 1170, - [1173] = 1170, - [1174] = 1171, + [1171] = 1170, + [1172] = 1172, + [1173] = 1172, + [1174] = 1172, [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, + [1176] = 1170, + [1177] = 1172, + [1178] = 1172, + [1179] = 1170, + [1180] = 198, + [1181] = 197, + [1182] = 189, + [1183] = 1183, + [1184] = 199, + [1185] = 190, + [1186] = 194, + [1187] = 202, + [1188] = 203, + [1189] = 204, + [1190] = 205, + [1191] = 206, + [1192] = 196, + [1193] = 204, + [1194] = 205, + [1195] = 257, + [1196] = 203, + [1197] = 202, + [1198] = 1198, + [1199] = 1199, + [1200] = 206, + [1201] = 199, + [1202] = 189, + [1203] = 198, + [1204] = 2, + [1205] = 196, + [1206] = 197, + [1207] = 1207, + [1208] = 194, + [1209] = 190, + [1210] = 204, + [1211] = 189, + [1212] = 332, + [1213] = 206, + [1214] = 194, + [1215] = 196, + [1216] = 205, + [1217] = 257, + [1218] = 203, + [1219] = 202, + [1220] = 197, [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, + [1222] = 1222, + [1223] = 198, + [1224] = 3, + [1225] = 190, + [1226] = 189, + [1227] = 196, + [1228] = 257, + [1229] = 205, + [1230] = 190, + [1231] = 198, + [1232] = 204, + [1233] = 1222, + [1234] = 203, + [1235] = 194, + [1236] = 202, + [1237] = 206, + [1238] = 332, + [1239] = 197, + [1240] = 199, [1241] = 1241, [1242] = 1242, - [1243] = 1241, + [1243] = 1242, [1244] = 1241, - [1245] = 1242, - [1246] = 1242, + [1245] = 1241, + [1246] = 1241, [1247] = 1242, [1248] = 1242, - [1249] = 1241, - [1250] = 1241, - [1251] = 1241, + [1249] = 332, + [1250] = 1242, + [1251] = 257, [1252] = 1242, [1253] = 1241, - [1254] = 1242, - [1255] = 307, + [1254] = 1241, + [1255] = 1241, [1256] = 1241, [1257] = 1242, - [1258] = 1241, - [1259] = 1241, - [1260] = 1242, + [1258] = 1242, + [1259] = 1242, + [1260] = 1241, [1261] = 1242, - [1262] = 1242, - [1263] = 1241, - [1264] = 1242, - [1265] = 1241, - [1266] = 1242, + [1262] = 1241, + [1263] = 1242, + [1264] = 1241, + [1265] = 1242, + [1266] = 1241, [1267] = 1241, - [1268] = 234, + [1268] = 1242, [1269] = 1269, - [1270] = 1270, + [1270] = 1269, [1271] = 1271, - [1272] = 307, - [1273] = 1271, - [1274] = 1271, - [1275] = 1271, - [1276] = 1271, - [1277] = 199, - [1278] = 6, - [1279] = 5, - [1280] = 192, - [1281] = 205, + [1272] = 332, + [1273] = 1269, + [1274] = 1269, + [1275] = 1275, + [1276] = 1269, + [1277] = 198, + [1278] = 196, + [1279] = 194, + [1280] = 206, + [1281] = 5, [1282] = 1282, - [1283] = 201, - [1284] = 194, - [1285] = 4, - [1286] = 195, - [1287] = 204, - [1288] = 196, - [1289] = 198, - [1290] = 202, - [1291] = 191, - [1292] = 200, + [1283] = 197, + [1284] = 6, + [1285] = 189, + [1286] = 190, + [1287] = 4, + [1288] = 199, + [1289] = 202, + [1290] = 204, + [1291] = 205, + [1292] = 203, [1293] = 1293, - [1294] = 191, - [1295] = 205, - [1296] = 204, - [1297] = 201, - [1298] = 202, - [1299] = 1293, - [1300] = 192, + [1294] = 7, + [1295] = 198, + [1296] = 190, + [1297] = 1293, + [1298] = 13, + [1299] = 197, + [1300] = 196, [1301] = 1301, - [1302] = 198, - [1303] = 1301, - [1304] = 199, - [1305] = 194, - [1306] = 200, - [1307] = 195, - [1308] = 7, - [1309] = 10, - [1310] = 1301, + [1302] = 1301, + [1303] = 1303, + [1304] = 9, + [1305] = 1301, + [1306] = 189, + [1307] = 1293, + [1308] = 257, + [1309] = 194, + [1310] = 199, [1311] = 1293, - [1312] = 1293, - [1313] = 1301, - [1314] = 196, - [1315] = 1315, - [1316] = 1301, + [1312] = 1301, + [1313] = 202, + [1314] = 206, + [1315] = 1301, + [1316] = 205, [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] = 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] = 59, - [1343] = 198, - [1344] = 202, - [1345] = 191, - [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, + [1318] = 203, + [1319] = 204, + [1320] = 20, + [1321] = 194, + [1322] = 206, + [1323] = 8, + [1324] = 205, + [1325] = 204, + [1326] = 17, + [1327] = 203, + [1328] = 202, + [1329] = 199, + [1330] = 10, + [1331] = 14, + [1332] = 189, + [1333] = 198, + [1334] = 11, + [1335] = 197, + [1336] = 196, + [1337] = 1337, + [1338] = 18, + [1339] = 14, + [1340] = 17, + [1341] = 190, + [1342] = 15, + [1343] = 19, + [1344] = 332, + [1345] = 10, + [1346] = 27, + [1347] = 16, + [1348] = 15, + [1349] = 26, + [1350] = 257, + [1351] = 12, + [1352] = 19, + [1353] = 65, + [1354] = 1354, + [1355] = 1355, + [1356] = 65, + [1357] = 21, + [1358] = 25, + [1359] = 198, + [1360] = 2, [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, + [1362] = 1355, + [1363] = 1354, + [1364] = 1361, + [1365] = 1365, + [1366] = 1355, + [1367] = 1361, + [1368] = 1354, + [1369] = 1354, + [1370] = 206, + [1371] = 205, + [1372] = 1355, + [1373] = 1373, + [1374] = 204, + [1375] = 203, + [1376] = 24, + [1377] = 202, + [1378] = 199, + [1379] = 189, + [1380] = 2, + [1381] = 332, + [1382] = 2, + [1383] = 1383, + [1384] = 1384, + [1385] = 206, + [1386] = 205, + [1387] = 24, + [1388] = 1354, + [1389] = 22, + [1390] = 257, + [1391] = 1361, + [1392] = 204, + [1393] = 203, + [1394] = 198, + [1395] = 23, + [1396] = 1361, + [1397] = 190, + [1398] = 194, + [1399] = 202, + [1400] = 196, + [1401] = 199, + [1402] = 190, + [1403] = 197, + [1404] = 194, + [1405] = 196, + [1406] = 197, + [1407] = 1303, + [1408] = 1355, + [1409] = 189, + [1410] = 29, + [1411] = 202, + [1412] = 257, + [1413] = 52, + [1414] = 2, + [1415] = 2, + [1416] = 2, + [1417] = 37, + [1418] = 43, + [1419] = 38, + [1420] = 3, + [1421] = 44, + [1422] = 40, + [1423] = 35, + [1424] = 34, + [1425] = 32, + [1426] = 31, + [1427] = 28, + [1428] = 30, + [1429] = 45, + [1430] = 51, [1431] = 3, - [1432] = 2, - [1433] = 201, - [1434] = 204, - [1435] = 199, - [1436] = 2, + [1432] = 205, + [1433] = 39, + [1434] = 42, + [1435] = 48, + [1436] = 49, [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] = 202, - [1472] = 196, - [1473] = 205, - [1474] = 194, + [1438] = 204, + [1439] = 203, + [1440] = 206, + [1441] = 50, + [1442] = 199, + [1443] = 189, + [1444] = 198, + [1445] = 197, + [1446] = 196, + [1447] = 194, + [1448] = 46, + [1449] = 41, + [1450] = 1450, + [1451] = 33, + [1452] = 190, + [1453] = 47, + [1454] = 65, + [1455] = 36, + [1456] = 257, + [1457] = 332, + [1458] = 205, + [1459] = 206, + [1460] = 332, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1303, + [1465] = 1465, + [1466] = 1466, + [1467] = 1466, + [1468] = 1465, + [1469] = 1461, + [1470] = 190, + [1471] = 1461, + [1472] = 1462, + [1473] = 1466, + [1474] = 1465, [1475] = 204, - [1476] = 307, - [1477] = 1477, - [1478] = 1478, + [1476] = 3, + [1477] = 332, + [1478] = 1465, [1479] = 1479, - [1480] = 1479, - [1481] = 1478, - [1482] = 1482, - [1483] = 1483, - [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, + [1480] = 203, + [1481] = 202, + [1482] = 199, + [1483] = 189, + [1484] = 198, + [1485] = 197, + [1486] = 196, + [1487] = 194, + [1488] = 1463, + [1489] = 3, + [1490] = 1466, + [1491] = 257, + [1492] = 1461, + [1493] = 3, + [1494] = 1479, + [1495] = 257, + [1496] = 332, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, [1502] = 1502, - [1503] = 198, - [1504] = 204, - [1505] = 192, - [1506] = 199, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 192, - [1510] = 200, + [1509] = 1509, + [1510] = 1510, [1511] = 1511, - [1512] = 199, - [1513] = 196, - [1514] = 194, - [1515] = 195, - [1516] = 205, - [1517] = 191, - [1518] = 202, - [1519] = 198, - [1520] = 196, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, [1521] = 1521, - [1522] = 195, - [1523] = 1507, + [1522] = 1522, + [1523] = 1523, [1524] = 1524, - [1525] = 204, - [1526] = 201, - [1527] = 307, - [1528] = 1511, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, [1529] = 1529, [1530] = 1530, - [1531] = 201, + [1531] = 1531, [1532] = 1532, [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, - [1537] = 201, + [1537] = 1537, [1538] = 1538, [1539] = 1539, [1540] = 1540, @@ -5650,7 +5745,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 1533, + [1566] = 1566, [1567] = 1567, [1568] = 1568, [1569] = 1569, @@ -5703,21 +5798,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1616] = 1616, [1617] = 1617, [1618] = 1618, - [1619] = 1593, + [1619] = 1619, [1620] = 1620, [1621] = 1621, - [1622] = 1593, - [1623] = 195, - [1624] = 196, - [1625] = 198, - [1626] = 202, - [1627] = 191, - [1628] = 200, + [1622] = 1622, + [1623] = 1610, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, [1629] = 1629, [1630] = 1630, [1631] = 1631, [1632] = 1632, - [1633] = 1593, + [1633] = 1633, [1634] = 1634, [1635] = 1635, [1636] = 1636, @@ -5730,13 +5825,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1643] = 1643, [1644] = 1644, [1645] = 1645, - [1646] = 1646, + [1646] = 1575, [1647] = 1647, - [1648] = 1648, - [1649] = 1649, + [1648] = 1597, + [1649] = 1608, [1650] = 1650, - [1651] = 1651, - [1652] = 1652, + [1651] = 1612, + [1652] = 1613, [1653] = 1653, [1654] = 1654, [1655] = 1655, @@ -5750,21 +5845,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1663] = 1663, [1664] = 1664, [1665] = 1665, - [1666] = 1666, + [1666] = 1614, [1667] = 1667, [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1671, - [1672] = 192, - [1673] = 199, - [1674] = 194, - [1675] = 205, - [1676] = 204, + [1669] = 332, + [1670] = 1616, + [1671] = 1617, + [1672] = 1672, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, [1677] = 1677, [1678] = 1678, [1679] = 1679, - [1680] = 1680, + [1680] = 1498, [1681] = 1681, [1682] = 1682, [1683] = 1683, @@ -5772,1527 +5867,1527 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1685] = 1685, [1686] = 1686, [1687] = 1687, - [1688] = 1688, + [1688] = 1650, [1689] = 1689, [1690] = 1690, [1691] = 1691, - [1692] = 204, - [1693] = 205, + [1692] = 1692, + [1693] = 1693, [1694] = 1694, - [1695] = 194, - [1696] = 199, - [1697] = 192, - [1698] = 1588, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, [1699] = 1699, - [1700] = 1700, - [1701] = 1701, + [1700] = 1698, + [1701] = 1618, [1702] = 1702, - [1703] = 1703, - [1704] = 1704, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1685, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, - [1714] = 1714, - [1715] = 1715, - [1716] = 1716, - [1717] = 1717, - [1718] = 1718, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 234, - [1727] = 1727, - [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] = 1631, - [1746] = 1569, - [1747] = 1631, - [1748] = 1690, - [1749] = 1650, - [1750] = 1649, - [1751] = 1751, - [1752] = 1752, - [1753] = 1565, - [1754] = 1754, - [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] = 1771, - [1772] = 1684, - [1773] = 1534, - [1774] = 1683, - [1775] = 1670, - [1776] = 1776, - [1777] = 1777, - [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, + [1703] = 1677, + [1704] = 1676, + [1705] = 1675, + [1706] = 1674, + [1707] = 1672, + [1708] = 1665, + [1709] = 1664, + [1710] = 1619, + [1711] = 1663, + [1712] = 1662, + [1713] = 1661, + [1714] = 1660, + [1715] = 1659, + [1716] = 1696, + [1717] = 1695, + [1718] = 1657, + [1719] = 1654, + [1720] = 1653, + [1721] = 1645, + [1722] = 1644, + [1723] = 1643, + [1724] = 1641, + [1725] = 1639, + [1726] = 1694, + [1727] = 1638, + [1728] = 1637, + [1729] = 1636, + [1730] = 1635, + [1731] = 1634, + [1732] = 1633, + [1733] = 1632, + [1734] = 1631, + [1735] = 1628, + [1736] = 1627, + [1737] = 1626, + [1738] = 1625, + [1739] = 1501, + [1740] = 1693, + [1741] = 1504, + [1742] = 1620, + [1743] = 1621, + [1744] = 1692, + [1745] = 1691, + [1746] = 1629, + [1747] = 1507, + [1748] = 1508, + [1749] = 1509, + [1750] = 1510, + [1751] = 1511, + [1752] = 1512, + [1753] = 1513, + [1754] = 1514, + [1755] = 1515, + [1756] = 1516, + [1757] = 1517, + [1758] = 1690, + [1759] = 1518, + [1760] = 1519, + [1761] = 1520, + [1762] = 1521, + [1763] = 1678, + [1764] = 1689, + [1765] = 1522, + [1766] = 1523, + [1767] = 1524, + [1768] = 1525, + [1769] = 1526, + [1770] = 1527, + [1771] = 1528, + [1772] = 1529, + [1773] = 1531, + [1774] = 1532, + [1775] = 1536, + [1776] = 1539, + [1777] = 1540, + [1778] = 1569, + [1779] = 1541, + [1780] = 1542, + [1781] = 1543, + [1782] = 1544, + [1783] = 1545, + [1784] = 1546, + [1785] = 1547, + [1786] = 1548, + [1787] = 1549, + [1788] = 1687, + [1789] = 1686, + [1790] = 1685, + [1791] = 206, + [1792] = 1550, + [1793] = 1551, + [1794] = 1552, + [1795] = 1553, + [1796] = 1554, + [1797] = 1555, + [1798] = 1556, + [1799] = 1557, + [1800] = 1558, + [1801] = 1559, + [1802] = 1560, + [1803] = 1684, + [1804] = 1561, + [1805] = 1562, + [1806] = 205, + [1807] = 1563, + [1808] = 1564, + [1809] = 1668, + [1810] = 1667, + [1811] = 1811, + [1812] = 1565, + [1813] = 1566, + [1814] = 1567, + [1815] = 1568, + [1816] = 1571, + [1817] = 1572, + [1818] = 1573, + [1819] = 1574, + [1820] = 204, + [1821] = 1576, + [1822] = 1577, + [1823] = 1578, + [1824] = 1579, + [1825] = 1580, + [1826] = 1581, + [1827] = 1582, + [1828] = 1583, + [1829] = 1584, + [1830] = 1585, + [1831] = 1586, + [1832] = 1587, + [1833] = 1588, + [1834] = 1589, + [1835] = 203, + [1836] = 202, + [1837] = 199, + [1838] = 1590, + [1839] = 1702, + [1840] = 1499, + [1841] = 1591, + [1842] = 1592, + [1843] = 1593, + [1844] = 1594, + [1845] = 189, + [1846] = 1596, + [1847] = 198, + [1848] = 1598, + [1849] = 1599, + [1850] = 1600, + [1851] = 1601, + [1852] = 1602, + [1853] = 1603, + [1854] = 1604, + [1855] = 1605, + [1856] = 1606, + [1857] = 1607, + [1858] = 1609, + [1859] = 1611, + [1860] = 1615, + [1861] = 197, + [1862] = 1622, + [1863] = 1630, + [1864] = 196, + [1865] = 194, + [1866] = 190, + [1867] = 1811, + [1868] = 206, + [1869] = 205, + [1870] = 204, + [1871] = 203, + [1872] = 202, + [1873] = 199, + [1874] = 1500, + [1875] = 1647, + [1876] = 189, + [1877] = 198, + [1878] = 197, + [1879] = 196, + [1880] = 194, + [1881] = 1642, + [1882] = 1655, + [1883] = 1656, + [1884] = 1497, + [1885] = 1658, + [1886] = 1886, + [1887] = 1887, + [1888] = 190, + [1889] = 1502, + [1890] = 1503, + [1891] = 1505, + [1892] = 1506, + [1893] = 1530, + [1894] = 1533, + [1895] = 1534, + [1896] = 1535, + [1897] = 1537, + [1898] = 1538, + [1899] = 1624, + [1900] = 1679, + [1901] = 1570, + [1902] = 1683, + [1903] = 1682, + [1904] = 1681, + [1905] = 1595, + [1906] = 1906, + [1907] = 1499, + [1908] = 1694, + [1909] = 1693, + [1910] = 1620, + [1911] = 1621, + [1912] = 1692, + [1913] = 1691, + [1914] = 1629, + [1915] = 1690, + [1916] = 1689, + [1917] = 1650, + [1918] = 1687, + [1919] = 1686, + [1920] = 1685, + [1921] = 1684, + [1922] = 1510, + [1923] = 1696, + [1924] = 1619, + [1925] = 1627, + [1926] = 1565, + [1927] = 1577, + [1928] = 1619, + [1929] = 1618, + [1930] = 1698, + [1931] = 1677, + [1932] = 1676, + [1933] = 1675, + [1934] = 1696, + [1935] = 1695, + [1936] = 1936, + [1937] = 1674, + [1938] = 1694, + [1939] = 1596, + [1940] = 1672, + [1941] = 1617, + [1942] = 1616, + [1943] = 1614, + [1944] = 1665, + [1945] = 1664, + [1946] = 1663, + [1947] = 1662, + [1948] = 1618, + [1949] = 1578, + [1950] = 1628, + [1951] = 1661, + [1952] = 1660, + [1953] = 1659, + [1954] = 1657, + [1955] = 1654, + [1956] = 1653, + [1957] = 1613, + [1958] = 1612, + [1959] = 1626, + [1960] = 1576, + [1961] = 1610, + [1962] = 1497, + [1963] = 5, + [1964] = 1964, + [1965] = 1631, + [1966] = 206, + [1967] = 205, + [1968] = 204, + [1969] = 203, + [1970] = 202, + [1971] = 199, + [1972] = 1598, + [1973] = 1693, + [1974] = 1608, + [1975] = 1599, + [1976] = 1597, + [1977] = 1575, + [1978] = 1645, + [1979] = 1644, + [1980] = 1643, + [1981] = 1641, + [1982] = 1639, + [1983] = 1638, + [1984] = 1637, + [1985] = 1636, + [1986] = 1635, + [1987] = 1634, + [1988] = 1633, + [1989] = 1632, + [1990] = 1631, + [1991] = 1936, + [1992] = 1600, + [1993] = 1632, + [1994] = 1601, + [1995] = 1628, + [1996] = 1633, + [1997] = 1634, + [1998] = 1635, + [1999] = 1627, + [2000] = 1626, + [2001] = 1636, + [2002] = 1683, + [2003] = 1625, + [2004] = 1624, + [2005] = 1702, + [2006] = 1682, + [2007] = 2007, + [2008] = 1566, + [2009] = 1681, + [2010] = 4, + [2011] = 6, + [2012] = 189, + [2013] = 198, + [2014] = 197, + [2015] = 196, + [2016] = 194, + [2017] = 1499, + [2018] = 1500, + [2019] = 1637, + [2020] = 1501, + [2021] = 1502, + [2022] = 1503, + [2023] = 1504, + [2024] = 1505, + [2025] = 1506, + [2026] = 1507, + [2027] = 1638, + [2028] = 1508, + [2029] = 1964, + [2030] = 2030, + [2031] = 190, + [2032] = 1509, + [2033] = 1639, + [2034] = 1538, + [2035] = 1511, + [2036] = 1641, + [2037] = 1512, + [2038] = 1513, + [2039] = 1514, + [2040] = 1515, + [2041] = 1516, + [2042] = 1517, + [2043] = 1518, + [2044] = 1519, + [2045] = 1520, + [2046] = 1521, + [2047] = 1602, + [2048] = 1643, + [2049] = 1964, + [2050] = 1567, + [2051] = 1564, + [2052] = 1603, + [2053] = 1522, + [2054] = 1523, + [2055] = 1524, + [2056] = 1604, + [2057] = 1698, + [2058] = 190, + [2059] = 1525, + [2060] = 1526, + [2061] = 1677, + [2062] = 1964, + [2063] = 1644, + [2064] = 1527, + [2065] = 1528, + [2066] = 1645, + [2067] = 1964, + [2068] = 1676, + [2069] = 1605, + [2070] = 1529, + [2071] = 1530, + [2072] = 1531, + [2073] = 1532, + [2074] = 1675, + [2075] = 1533, + [2076] = 1534, + [2077] = 1535, + [2078] = 1536, + [2079] = 1537, + [2080] = 1586, + [2081] = 1539, + [2082] = 1540, + [2083] = 1541, + [2084] = 1542, + [2085] = 1543, + [2086] = 1544, + [2087] = 1545, + [2088] = 1546, + [2089] = 1547, + [2090] = 1548, + [2091] = 1549, + [2092] = 1568, + [2093] = 6, + [2094] = 1569, + [2095] = 1550, + [2096] = 1551, + [2097] = 190, + [2098] = 194, + [2099] = 1552, + [2100] = 196, + [2101] = 197, + [2102] = 198, + [2103] = 1553, + [2104] = 1554, + [2105] = 189, + [2106] = 1555, + [2107] = 1556, + [2108] = 1695, + [2109] = 1625, + [2110] = 1656, + [2111] = 1579, + [2112] = 1595, + [2113] = 1606, + [2114] = 1557, + [2115] = 199, + [2116] = 1558, + [2117] = 1559, + [2118] = 1560, + [2119] = 202, + [2120] = 1561, + [2121] = 1562, + [2122] = 1563, + [2123] = 1564, + [2124] = 203, + [2125] = 1565, + [2126] = 1566, + [2127] = 1567, + [2128] = 1568, + [2129] = 1569, + [2130] = 1570, + [2131] = 1571, + [2132] = 190, + [2133] = 204, + [2134] = 205, + [2135] = 206, + [2136] = 1572, + [2137] = 1573, + [2138] = 4, + [2139] = 1563, + [2140] = 1574, + [2141] = 1607, + [2142] = 1580, + [2143] = 1620, + [2144] = 1936, + [2145] = 1621, + [2146] = 1624, + [2147] = 1575, + [2148] = 1576, + [2149] = 1577, + [2150] = 1578, + [2151] = 1702, + [2152] = 1597, + [2153] = 1579, + [2154] = 1580, + [2155] = 1581, + [2156] = 1582, + [2157] = 1583, + [2158] = 1584, + [2159] = 1608, + [2160] = 1585, + [2161] = 1630, + [2162] = 1609, + [2163] = 1611, + [2164] = 1587, + [2165] = 1588, + [2166] = 1612, + [2167] = 1561, + [2168] = 1674, + [2169] = 1613, + [2170] = 1581, + [2171] = 1653, + [2172] = 1582, + [2173] = 1574, + [2174] = 1672, + [2175] = 1589, + [2176] = 1658, + [2177] = 1590, + [2178] = 1591, + [2179] = 1592, + [2180] = 1593, + [2181] = 1594, + [2182] = 1595, + [2183] = 1596, + [2184] = 1583, + [2185] = 1573, [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] = 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] = 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] = 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] = 20, - [2447] = 2441, - [2448] = 9, - [2449] = 14, - [2450] = 11, - [2451] = 2435, - [2452] = 18, - [2453] = 9, - [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, + [2187] = 194, + [2188] = 1584, + [2189] = 1500, + [2190] = 196, + [2191] = 197, + [2192] = 198, + [2193] = 189, + [2194] = 1615, + [2195] = 5, + [2196] = 1654, + [2197] = 1501, + [2198] = 1598, + [2199] = 1599, + [2200] = 1622, + [2201] = 257, + [2202] = 1502, + [2203] = 1692, + [2204] = 1600, + [2205] = 1657, + [2206] = 1601, + [2207] = 1602, + [2208] = 1603, + [2209] = 1604, + [2210] = 1605, + [2211] = 1606, + [2212] = 1610, + [2213] = 1562, + [2214] = 1503, + [2215] = 1607, + [2216] = 5, + [2217] = 1504, + [2218] = 1609, + [2219] = 1611, + [2220] = 1630, + [2221] = 4, + [2222] = 1659, + [2223] = 6, + [2224] = 1615, + [2225] = 1505, + [2226] = 1506, + [2227] = 1622, + [2228] = 2030, + [2229] = 1560, + [2230] = 1660, + [2231] = 1661, + [2232] = 1662, + [2233] = 1663, + [2234] = 1664, + [2235] = 1691, + [2236] = 199, + [2237] = 1585, + [2238] = 1665, + [2239] = 1507, + [2240] = 1586, + [2241] = 202, + [2242] = 203, + [2243] = 204, + [2244] = 1559, + [2245] = 1558, + [2246] = 1508, + [2247] = 205, + [2248] = 206, + [2249] = 1509, + [2250] = 1557, + [2251] = 1642, + [2252] = 1510, + [2253] = 1594, + [2254] = 1511, + [2255] = 1655, + [2256] = 1512, + [2257] = 1513, + [2258] = 1514, + [2259] = 1521, + [2260] = 1515, + [2261] = 206, + [2262] = 205, + [2263] = 204, + [2264] = 203, + [2265] = 202, + [2266] = 199, + [2267] = 1516, + [2268] = 1517, + [2269] = 1556, + [2270] = 1518, + [2271] = 1519, + [2272] = 1587, + [2273] = 1656, + [2274] = 1497, + [2275] = 1658, + [2276] = 1588, + [2277] = 1589, + [2278] = 1520, + [2279] = 1590, + [2280] = 1522, + [2281] = 1523, + [2282] = 1593, + [2283] = 1524, + [2284] = 1679, + [2285] = 1811, + [2286] = 257, + [2287] = 1525, + [2288] = 1526, + [2289] = 1570, + [2290] = 1681, + [2291] = 1682, + [2292] = 1683, + [2293] = 1527, + [2294] = 1684, + [2295] = 1528, + [2296] = 1555, + [2297] = 1617, + [2298] = 1529, + [2299] = 1685, + [2300] = 1530, + [2301] = 1531, + [2302] = 1532, + [2303] = 1686, + [2304] = 1533, + [2305] = 1534, + [2306] = 189, + [2307] = 198, + [2308] = 197, + [2309] = 196, + [2310] = 194, + [2311] = 1535, + [2312] = 1536, + [2313] = 1537, + [2314] = 1591, + [2315] = 1616, + [2316] = 1554, + [2317] = 1553, + [2318] = 1552, + [2319] = 1592, + [2320] = 1551, + [2321] = 1538, + [2322] = 1687, + [2323] = 1936, + [2324] = 1550, + [2325] = 1629, + [2326] = 1650, + [2327] = 1549, + [2328] = 1690, + [2329] = 1547, + [2330] = 1689, + [2331] = 1614, + [2332] = 1539, + [2333] = 1548, + [2334] = 1540, + [2335] = 1811, + [2336] = 1936, + [2337] = 1655, + [2338] = 1546, + [2339] = 1642, + [2340] = 1679, + [2341] = 1541, + [2342] = 1571, + [2343] = 1542, + [2344] = 1543, + [2345] = 1544, + [2346] = 1545, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, + [2350] = 190, + [2351] = 194, + [2352] = 2347, + [2353] = 196, + [2354] = 197, + [2355] = 206, + [2356] = 205, + [2357] = 204, + [2358] = 203, + [2359] = 198, + [2360] = 202, + [2361] = 2347, + [2362] = 199, + [2363] = 189, + [2364] = 198, + [2365] = 197, + [2366] = 196, + [2367] = 194, + [2368] = 190, + [2369] = 189, + [2370] = 199, + [2371] = 202, + [2372] = 203, + [2373] = 204, + [2374] = 205, + [2375] = 206, + [2376] = 2376, + [2377] = 2377, + [2378] = 332, + [2379] = 257, + [2380] = 5, + [2381] = 4, + [2382] = 2347, + [2383] = 6, + [2384] = 332, + [2385] = 5, + [2386] = 13, + [2387] = 2387, + [2388] = 7, + [2389] = 9, + [2390] = 4, + [2391] = 6, + [2392] = 6, + [2393] = 190, + [2394] = 194, + [2395] = 2395, + [2396] = 196, + [2397] = 197, + [2398] = 198, + [2399] = 189, + [2400] = 13, + [2401] = 2395, + [2402] = 199, + [2403] = 2403, + [2404] = 202, + [2405] = 9, + [2406] = 203, + [2407] = 7, + [2408] = 204, + [2409] = 205, + [2410] = 206, + [2411] = 206, + [2412] = 205, + [2413] = 204, + [2414] = 203, + [2415] = 202, + [2416] = 199, + [2417] = 190, + [2418] = 189, + [2419] = 198, + [2420] = 197, + [2421] = 196, + [2422] = 2347, + [2423] = 194, + [2424] = 190, + [2425] = 2403, + [2426] = 7, + [2427] = 2427, + [2428] = 9, + [2429] = 194, + [2430] = 196, + [2431] = 197, + [2432] = 198, + [2433] = 189, + [2434] = 5, + [2435] = 199, + [2436] = 13, + [2437] = 202, + [2438] = 203, + [2439] = 204, + [2440] = 205, + [2441] = 206, + [2442] = 2442, + [2443] = 4, + [2444] = 196, + [2445] = 12, + [2446] = 26, + [2447] = 257, + [2448] = 15, + [2449] = 257, + [2450] = 8, + [2451] = 17, + [2452] = 2452, + [2453] = 1647, + [2454] = 2454, + [2455] = 2452, + [2456] = 257, + [2457] = 18, + [2458] = 257, + [2459] = 8, + [2460] = 13, + [2461] = 10, + [2462] = 27, + [2463] = 13, + [2464] = 14, + [2465] = 190, + [2466] = 15, + [2467] = 16, + [2468] = 19, + [2469] = 18, + [2470] = 15, + [2471] = 19, + [2472] = 27, + [2473] = 2452, + [2474] = 16, + [2475] = 10, + [2476] = 12, + [2477] = 2452, [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] = 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] = 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] = 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] = 20, - [2620] = 205, - [2621] = 204, - [2622] = 201, - [2623] = 14, - [2624] = 16, - [2625] = 11, - [2626] = 19, - [2627] = 307, - [2628] = 20, - [2629] = 11, - [2630] = 16, - [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, + [2479] = 65, + [2480] = 19, + [2481] = 13, + [2482] = 19, + [2483] = 2454, + [2484] = 17, + [2485] = 10, + [2486] = 2454, + [2487] = 15, + [2488] = 20, + [2489] = 65, + [2490] = 11, + [2491] = 332, + [2492] = 10, + [2493] = 15, + [2494] = 14, + [2495] = 18, + [2496] = 194, + [2497] = 197, + [2498] = 198, + [2499] = 2452, + [2500] = 27, + [2501] = 16, + [2502] = 189, + [2503] = 199, + [2504] = 1906, + [2505] = 202, + [2506] = 7, + [2507] = 9, + [2508] = 203, + [2509] = 11, + [2510] = 9, + [2511] = 204, + [2512] = 205, + [2513] = 7, + [2514] = 7, + [2515] = 26, + [2516] = 206, + [2517] = 1647, + [2518] = 9, + [2519] = 2454, + [2520] = 20, + [2521] = 17, + [2522] = 10, + [2523] = 26, + [2524] = 12, + [2525] = 20, + [2526] = 2454, + [2527] = 11, + [2528] = 19, + [2529] = 14, + [2530] = 16, + [2531] = 18, + [2532] = 11, + [2533] = 65, + [2534] = 2376, + [2535] = 21, + [2536] = 190, + [2537] = 194, + [2538] = 196, + [2539] = 197, + [2540] = 198, + [2541] = 189, + [2542] = 2377, + [2543] = 199, + [2544] = 332, + [2545] = 257, + [2546] = 203, + [2547] = 16, + [2548] = 206, + [2549] = 22, + [2550] = 21, + [2551] = 257, + [2552] = 24, + [2553] = 205, + [2554] = 202, + [2555] = 203, + [2556] = 2556, + [2557] = 23, + [2558] = 25, + [2559] = 204, + [2560] = 12, + [2561] = 20, + [2562] = 205, + [2563] = 26, + [2564] = 206, + [2565] = 22, + [2566] = 18, + [2567] = 18, + [2568] = 205, + [2569] = 27, + [2570] = 204, + [2571] = 22, + [2572] = 332, + [2573] = 203, + [2574] = 332, + [2575] = 15, + [2576] = 21, + [2577] = 204, + [2578] = 8, + [2579] = 17, + [2580] = 24, + [2581] = 14, + [2582] = 25, + [2583] = 8, + [2584] = 23, + [2585] = 206, + [2586] = 11, + [2587] = 27, + [2588] = 2588, + [2589] = 12, + [2590] = 257, + [2591] = 65, + [2592] = 2427, + [2593] = 11, + [2594] = 27, + [2595] = 16, + [2596] = 65, + [2597] = 20, + [2598] = 257, + [2599] = 202, + [2600] = 12, + [2601] = 26, + [2602] = 190, + [2603] = 17, + [2604] = 194, + [2605] = 15, + [2606] = 14, + [2607] = 19, + [2608] = 2608, + [2609] = 196, + [2610] = 197, + [2611] = 190, + [2612] = 194, + [2613] = 198, + [2614] = 196, + [2615] = 332, + [2616] = 10, + [2617] = 26, + [2618] = 17, + [2619] = 189, + [2620] = 197, + [2621] = 14, + [2622] = 199, + [2623] = 20, + [2624] = 25, + [2625] = 8, + [2626] = 23, + [2627] = 24, + [2628] = 198, + [2629] = 189, + [2630] = 10, + [2631] = 15, + [2632] = 19, + [2633] = 15, + [2634] = 257, + [2635] = 199, + [2636] = 10, + [2637] = 332, + [2638] = 19, + [2639] = 10, + [2640] = 15, + [2641] = 202, + [2642] = 19, + [2643] = 19, + [2644] = 10, + [2645] = 206, [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, + [2647] = 2647, + [2648] = 2648, + [2649] = 2648, + [2650] = 2648, + [2651] = 2646, + [2652] = 2648, + [2653] = 2648, + [2654] = 33, + [2655] = 38, + [2656] = 21, + [2657] = 32, + [2658] = 332, + [2659] = 2659, + [2660] = 2648, + [2661] = 2648, + [2662] = 2659, + [2663] = 2648, + [2664] = 2659, + [2665] = 2648, + [2666] = 332, + [2667] = 2648, + [2668] = 2648, + [2669] = 31, + [2670] = 2648, + [2671] = 2648, + [2672] = 32, + [2673] = 31, + [2674] = 28, + [2675] = 33, + [2676] = 2676, + [2677] = 30, + [2678] = 2678, + [2679] = 45, + [2680] = 2659, + [2681] = 24, + [2682] = 23, + [2683] = 2659, + [2684] = 2648, + [2685] = 47, + [2686] = 2686, + [2687] = 2648, + [2688] = 2688, + [2689] = 2659, + [2690] = 2676, + [2691] = 2678, + [2692] = 2646, + [2693] = 2693, + [2694] = 24, + [2695] = 34, + [2696] = 25, + [2697] = 35, + [2698] = 22, + [2699] = 2699, + [2700] = 2676, + [2701] = 2646, + [2702] = 2647, + [2703] = 2678, + [2704] = 2704, + [2705] = 2648, + [2706] = 332, + [2707] = 2659, + [2708] = 28, + [2709] = 51, + [2710] = 2686, + [2711] = 190, + [2712] = 2688, + [2713] = 2659, + [2714] = 2648, + [2715] = 2688, + [2716] = 30, + [2717] = 65, + [2718] = 332, + [2719] = 2659, + [2720] = 2659, + [2721] = 40, + [2722] = 24, + [2723] = 2676, + [2724] = 194, + [2725] = 2648, + [2726] = 2647, + [2727] = 2659, + [2728] = 2647, + [2729] = 196, + [2730] = 2646, + [2731] = 197, + [2732] = 51, + [2733] = 23, + [2734] = 37, + [2735] = 41, + [2736] = 198, + [2737] = 39, + [2738] = 189, + [2739] = 34, + [2740] = 199, + [2741] = 202, + [2742] = 35, + [2743] = 29, + [2744] = 203, + [2745] = 2686, + [2746] = 2659, + [2747] = 204, + [2748] = 40, [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] = 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] = 2644, - [2833] = 47, - [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] = 192, - [2863] = 2863, - [2864] = 307, - [2865] = 41, - [2866] = 34, - [2867] = 199, - [2868] = 194, - [2869] = 32, - [2870] = 31, - [2871] = 205, - [2872] = 42, + [2750] = 205, + [2751] = 2648, + [2752] = 2752, + [2753] = 2646, + [2754] = 44, + [2755] = 2648, + [2756] = 2648, + [2757] = 2757, + [2758] = 47, + [2759] = 2659, + [2760] = 2678, + [2761] = 2688, + [2762] = 206, + [2763] = 2646, + [2764] = 2647, + [2765] = 44, + [2766] = 33, + [2767] = 2678, + [2768] = 2648, + [2769] = 23, + [2770] = 2752, + [2771] = 36, + [2772] = 2646, + [2773] = 52, + [2774] = 2752, + [2775] = 2646, + [2776] = 2647, + [2777] = 2777, + [2778] = 2648, + [2779] = 22, + [2780] = 2648, + [2781] = 2688, + [2782] = 2647, + [2783] = 1886, + [2784] = 52, + [2785] = 41, + [2786] = 2648, + [2787] = 2659, + [2788] = 36, + [2789] = 2659, + [2790] = 257, + [2791] = 2648, + [2792] = 43, + [2793] = 37, + [2794] = 48, + [2795] = 2659, + [2796] = 21, + [2797] = 190, + [2798] = 2757, + [2799] = 194, + [2800] = 2659, + [2801] = 196, + [2802] = 197, + [2803] = 2659, + [2804] = 198, + [2805] = 189, + [2806] = 199, + [2807] = 202, + [2808] = 203, + [2809] = 49, + [2810] = 25, + [2811] = 36, + [2812] = 2812, + [2813] = 2659, + [2814] = 2659, + [2815] = 38, + [2816] = 2659, + [2817] = 39, + [2818] = 42, + [2819] = 204, + [2820] = 45, + [2821] = 205, + [2822] = 51, + [2823] = 206, + [2824] = 2403, + [2825] = 2648, + [2826] = 50, + [2827] = 2648, + [2828] = 2757, + [2829] = 257, + [2830] = 190, + [2831] = 25, + [2832] = 194, + [2833] = 196, + [2834] = 2648, + [2835] = 2659, + [2836] = 47, + [2837] = 2659, + [2838] = 2752, + [2839] = 2648, + [2840] = 2647, + [2841] = 46, + [2842] = 2659, + [2843] = 2646, + [2844] = 2647, + [2845] = 2646, + [2846] = 2659, + [2847] = 197, + [2848] = 198, + [2849] = 2659, + [2850] = 37, + [2851] = 43, + [2852] = 2686, + [2853] = 2659, + [2854] = 43, + [2855] = 52, + [2856] = 2676, + [2857] = 22, + [2858] = 2648, + [2859] = 2648, + [2860] = 2403, + [2861] = 44, + [2862] = 2686, + [2863] = 29, + [2864] = 40, + [2865] = 2647, + [2866] = 2646, + [2867] = 50, + [2868] = 49, + [2869] = 48, + [2870] = 2647, + [2871] = 2659, + [2872] = 189, [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, + [2874] = 2659, + [2875] = 34, + [2876] = 2659, + [2877] = 2877, + [2878] = 2676, + [2879] = 2659, + [2880] = 2659, + [2881] = 2752, + [2882] = 42, + [2883] = 21, + [2884] = 32, + [2885] = 2659, + [2886] = 31, + [2887] = 199, + [2888] = 2659, + [2889] = 2648, + [2890] = 2647, + [2891] = 205, + [2892] = 2648, + [2893] = 28, + [2894] = 2647, + [2895] = 2646, + [2896] = 30, + [2897] = 45, + [2898] = 38, + [2899] = 39, + [2900] = 42, + [2901] = 204, [2902] = 48, - [2903] = 47, - [2904] = 29, - [2905] = 40, - [2906] = 30, - [2907] = 2907, - [2908] = 28, + [2903] = 49, + [2904] = 50, + [2905] = 46, + [2906] = 257, + [2907] = 202, + [2908] = 46, [2909] = 41, - [2910] = 234, - [2911] = 33, - [2912] = 38, - [2913] = 28, - [2914] = 37, - [2915] = 41, - [2916] = 307, - [2917] = 47, - [2918] = 2907, - [2919] = 51, - [2920] = 234, - [2921] = 33, - [2922] = 2922, + [2910] = 203, + [2911] = 36, + [2912] = 50, + [2913] = 44, + [2914] = 52, + [2915] = 32, + [2916] = 2916, + [2917] = 33, + [2918] = 34, + [2919] = 35, + [2920] = 31, + [2921] = 2916, + [2922] = 41, [2923] = 2923, - [2924] = 48, - [2925] = 307, - [2926] = 31, - [2927] = 38, - [2928] = 51, - [2929] = 37, - [2930] = 34, - [2931] = 2900, - [2932] = 50, + [2924] = 37, + [2925] = 43, + [2926] = 2926, + [2927] = 332, + [2928] = 40, + [2929] = 52, + [2930] = 29, + [2931] = 2923, + [2932] = 48, [2933] = 2933, - [2934] = 50, - [2935] = 31, - [2936] = 2933, - [2937] = 42, - [2938] = 34, - [2939] = 2939, - [2940] = 35, - [2941] = 32, - [2942] = 31, - [2943] = 36, - [2944] = 42, - [2945] = 35, - [2946] = 36, - [2947] = 29, - [2948] = 44, - [2949] = 45, - [2950] = 46, - [2951] = 38, - [2952] = 39, - [2953] = 32, + [2934] = 28, + [2935] = 43, + [2936] = 2936, + [2937] = 37, + [2938] = 30, + [2939] = 36, + [2940] = 45, + [2941] = 44, + [2942] = 38, + [2943] = 46, + [2944] = 29, + [2945] = 40, + [2946] = 39, + [2947] = 42, + [2948] = 2926, + [2949] = 52, + [2950] = 2950, + [2951] = 2951, + [2952] = 49, + [2953] = 50, [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, + [2955] = 2926, + [2956] = 43, + [2957] = 35, + [2958] = 50, + [2959] = 34, + [2960] = 41, + [2961] = 49, + [2962] = 48, + [2963] = 37, + [2964] = 2916, + [2965] = 2923, + [2966] = 51, + [2967] = 33, + [2968] = 44, + [2969] = 47, + [2970] = 29, + [2971] = 32, + [2972] = 40, + [2973] = 31, + [2974] = 257, + [2975] = 2933, + [2976] = 2933, + [2977] = 2933, + [2978] = 51, + [2979] = 2933, + [2980] = 2951, + [2981] = 42, + [2982] = 28, + [2983] = 2951, + [2984] = 47, + [2985] = 30, + [2986] = 45, + [2987] = 39, + [2988] = 38, + [2989] = 39, [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] = 307, - [3015] = 3015, - [3016] = 3016, - [3017] = 3011, - [3018] = 3018, + [2991] = 36, + [2992] = 48, + [2993] = 49, + [2994] = 2926, + [2995] = 46, + [2996] = 2923, + [2997] = 35, + [2998] = 2951, + [2999] = 34, + [3000] = 332, + [3001] = 51, + [3002] = 41, + [3003] = 33, + [3004] = 32, + [3005] = 38, + [3006] = 45, + [3007] = 257, + [3008] = 2916, + [3009] = 31, + [3010] = 332, + [3011] = 257, + [3012] = 2951, + [3013] = 2923, + [3014] = 47, + [3015] = 2916, + [3016] = 28, + [3017] = 30, + [3018] = 2926, [3019] = 3019, [3020] = 3020, - [3021] = 3009, + [3021] = 3021, [3022] = 3022, - [3023] = 3023, - [3024] = 3009, + [3023] = 3020, + [3024] = 3024, [3025] = 3025, - [3026] = 3009, - [3027] = 3011, + [3026] = 3022, + [3027] = 3022, [3028] = 3028, - [3029] = 3009, - [3030] = 3011, + [3029] = 3029, + [3030] = 3020, [3031] = 3031, [3032] = 3032, - [3033] = 3033, - [3034] = 3034, - [3035] = 3031, - [3036] = 3036, + [3033] = 3022, + [3034] = 332, + [3035] = 332, + [3036] = 332, [3037] = 3037, - [3038] = 3038, - [3039] = 3031, - [3040] = 3038, + [3038] = 3020, + [3039] = 3039, + [3040] = 3022, [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, + [3042] = 3020, + [3043] = 3043, + [3044] = 3044, + [3045] = 3045, + [3046] = 3045, + [3047] = 1887, + [3048] = 3048, + [3049] = 3049, + [3050] = 3045, + [3051] = 3049, + [3052] = 3045, + [3053] = 3045, + [3054] = 3043, + [3055] = 3049, + [3056] = 3043, + [3057] = 3048, + [3058] = 3048, [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, + [3060] = 3043, + [3061] = 3048, + [3062] = 3043, [3063] = 3063, - [3064] = 3064, - [3065] = 3065, + [3064] = 3049, + [3065] = 3049, [3066] = 3066, - [3067] = 3067, + [3067] = 3044, [3068] = 3068, - [3069] = 3069, + [3069] = 3048, [3070] = 3070, [3071] = 3071, - [3072] = 3068, + [3072] = 3072, [3073] = 3073, [3074] = 3074, [3075] = 3075, [3076] = 3076, - [3077] = 3068, - [3078] = 3070, - [3079] = 3071, + [3077] = 3077, + [3078] = 3078, + [3079] = 3079, [3080] = 3080, [3081] = 3081, - [3082] = 3082, - [3083] = 3075, - [3084] = 3082, - [3085] = 3081, - [3086] = 3076, + [3082] = 3080, + [3083] = 3083, + [3084] = 3084, + [3085] = 3085, + [3086] = 3086, [3087] = 3087, - [3088] = 3080, - [3089] = 3073, - [3090] = 3081, + [3088] = 3088, + [3089] = 3085, + [3090] = 3090, [3091] = 3091, - [3092] = 3092, + [3092] = 3091, [3093] = 3093, [3094] = 3094, [3095] = 3095, - [3096] = 3071, - [3097] = 3075, - [3098] = 3073, - [3099] = 3069, + [3096] = 3096, + [3097] = 3097, + [3098] = 3094, + [3099] = 3093, [3100] = 3095, - [3101] = 3070, - [3102] = 3092, - [3103] = 3087, - [3104] = 3082, - [3105] = 3095, + [3101] = 3101, + [3102] = 3102, + [3103] = 3079, + [3104] = 3083, + [3105] = 3093, [3106] = 3106, - [3107] = 3107, - [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] = 3107, - [3127] = 3076, - [3128] = 3075, - [3129] = 3106, + [3107] = 3087, + [3108] = 3084, + [3109] = 3102, + [3110] = 3088, + [3111] = 3111, + [3112] = 3097, + [3113] = 3087, + [3114] = 3093, + [3115] = 3080, + [3116] = 3080, + [3117] = 3102, + [3118] = 3085, + [3119] = 3085, + [3120] = 3084, + [3121] = 3097, + [3122] = 3090, + [3123] = 3086, + [3124] = 3088, + [3125] = 3091, + [3126] = 3094, + [3127] = 3095, + [3128] = 3091, + [3129] = 3081, [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, + [3131] = 3131, + [3132] = 3090, + [3133] = 3106, + [3134] = 3080, + [3135] = 3101, + [3136] = 3085, + [3137] = 3083, + [3138] = 3079, + [3139] = 3086, + [3140] = 3083, + [3141] = 3086, + [3142] = 3106, + [3143] = 3081, + [3144] = 3102, + [3145] = 3097, + [3146] = 3101, + [3147] = 3106, + [3148] = 3081, + [3149] = 3093, + [3150] = 3090, + [3151] = 3102, + [3152] = 3087, + [3153] = 3079, + [3154] = 3101, + [3155] = 3088, + [3156] = 3094, + [3157] = 3095, + [3158] = 3095, + [3159] = 3094, + [3160] = 3101, + [3161] = 3079, + [3162] = 3083, + [3163] = 3091, + [3164] = 3084, + [3165] = 3088, + [3166] = 3087, + [3167] = 3097, [3168] = 3168, - [3169] = 3169, - [3170] = 3166, - [3171] = 3171, - [3172] = 3172, - [3173] = 3166, + [3169] = 3081, + [3170] = 3084, + [3171] = 3086, + [3172] = 3106, + [3173] = 3090, [3174] = 3174, - [3175] = 3175, - [3176] = 3176, - [3177] = 3166, - [3178] = 3167, - [3179] = 3167, + [3175] = 1886, + [3176] = 1887, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, [3180] = 3180, - [3181] = 3176, - [3182] = 3176, - [3183] = 3166, - [3184] = 3184, + [3181] = 3181, + [3182] = 3182, + [3183] = 3183, + [3184] = 3181, [3185] = 3185, [3186] = 3186, - [3187] = 3167, - [3188] = 3188, - [3189] = 3176, - [3190] = 3190, - [3191] = 9, - [3192] = 3167, - [3193] = 3193, - [3194] = 3176, + [3187] = 17, + [3188] = 3181, + [3189] = 3185, + [3190] = 3180, + [3191] = 3191, + [3192] = 3180, + [3193] = 3181, + [3194] = 3185, [3195] = 3195, - [3196] = 3196, - [3197] = 3197, + [3196] = 3181, + [3197] = 14, [3198] = 3198, [3199] = 3199, - [3200] = 3200, + [3200] = 3185, [3201] = 3201, - [3202] = 3202, + [3202] = 3185, [3203] = 3203, [3204] = 3204, [3205] = 3205, - [3206] = 3206, - [3207] = 3207, - [3208] = 27, + [3206] = 3180, + [3207] = 3180, + [3208] = 3208, [3209] = 3209, [3210] = 3210, [3211] = 3211, @@ -7301,1056 +7396,1056 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3214] = 3214, [3215] = 3215, [3216] = 3216, - [3217] = 3217, - [3218] = 3200, - [3219] = 3213, + [3217] = 24, + [3218] = 3218, + [3219] = 3219, [3220] = 3220, - [3221] = 3216, + [3221] = 3221, [3222] = 3222, - [3223] = 3217, + [3223] = 3223, [3224] = 3224, - [3225] = 3215, + [3225] = 3225, [3226] = 3226, - [3227] = 3216, - [3228] = 3214, + [3227] = 3223, + [3228] = 3228, [3229] = 3229, - [3230] = 3207, - [3231] = 3215, - [3232] = 3213, - [3233] = 3213, - [3234] = 3216, - [3235] = 3213, - [3236] = 3214, - [3237] = 3215, - [3238] = 3238, - [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] = 3252, + [3230] = 3228, + [3231] = 3224, + [3232] = 3223, + [3233] = 3233, + [3234] = 3234, + [3235] = 3234, + [3236] = 3225, + [3237] = 3224, + [3238] = 3225, + [3239] = 3234, + [3240] = 3223, + [3241] = 3224, + [3242] = 3242, + [3243] = 3228, + [3244] = 3244, + [3245] = 3221, + [3246] = 3246, + [3247] = 3247, + [3248] = 3234, + [3249] = 3225, + [3250] = 3213, + [3251] = 3228, + [3252] = 3228, [3253] = 3253, [3254] = 3254, - [3255] = 3255, + [3255] = 3224, [3256] = 3256, - [3257] = 3257, - [3258] = 3163, - [3259] = 3259, - [3260] = 3260, + [3257] = 3234, + [3258] = 3220, + [3259] = 3223, + [3260] = 3225, [3261] = 3261, [3262] = 3262, [3263] = 3263, - [3264] = 3263, + [3264] = 3264, [3265] = 3265, [3266] = 3266, [3267] = 3267, - [3268] = 3266, - [3269] = 3267, - [3270] = 3265, + [3268] = 3268, + [3269] = 3269, + [3270] = 3174, [3271] = 3271, - [3272] = 3265, - [3273] = 3266, + [3272] = 3272, + [3273] = 3273, [3274] = 3274, [3275] = 3275, - [3276] = 3274, - [3277] = 3263, - [3278] = 3274, - [3279] = 3274, + [3276] = 3276, + [3277] = 3277, + [3278] = 3278, + [3279] = 3279, [3280] = 3280, - [3281] = 3267, - [3282] = 3265, + [3281] = 3279, + [3282] = 3282, [3283] = 3283, - [3284] = 3284, - [3285] = 3265, - [3286] = 3263, - [3287] = 3267, - [3288] = 3266, - [3289] = 3266, + [3284] = 3280, + [3285] = 3280, + [3286] = 3278, + [3287] = 3287, + [3288] = 3287, + [3289] = 3278, [3290] = 3290, - [3291] = 3291, - [3292] = 3263, - [3293] = 3293, - [3294] = 3267, - [3295] = 3274, + [3291] = 3290, + [3292] = 3279, + [3293] = 3290, + [3294] = 3290, + [3295] = 3287, [3296] = 3296, - [3297] = 3296, + [3297] = 3297, [3298] = 3298, - [3299] = 3296, - [3300] = 3300, - [3301] = 3301, - [3302] = 3302, - [3303] = 3298, - [3304] = 3296, - [3305] = 3296, - [3306] = 3306, - [3307] = 3298, + [3299] = 3278, + [3300] = 3287, + [3301] = 3279, + [3302] = 3290, + [3303] = 3279, + [3304] = 3280, + [3305] = 3280, + [3306] = 3278, + [3307] = 3287, [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] = 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] = 3360, - [3361] = 3361, - [3362] = 3362, - [3363] = 3363, - [3364] = 3364, - [3365] = 3364, - [3366] = 3366, - [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] = 3360, - [3384] = 3360, - [3385] = 3370, - [3386] = 3361, - [3387] = 3362, - [3388] = 3361, - [3389] = 3364, - [3390] = 3390, + [3309] = 3309, + [3310] = 3310, + [3311] = 3311, + [3312] = 3312, + [3313] = 3313, + [3314] = 3308, + [3315] = 3315, + [3316] = 3316, + [3317] = 3312, + [3318] = 3309, + [3319] = 3308, + [3320] = 3316, + [3321] = 3308, + [3322] = 3316, + [3323] = 3312, + [3324] = 3316, + [3325] = 3309, + [3326] = 3308, + [3327] = 3308, + [3328] = 3308, + [3329] = 3309, + [3330] = 3312, + [3331] = 3316, + [3332] = 3316, + [3333] = 3312, + [3334] = 3308, + [3335] = 3312, + [3336] = 3336, + [3337] = 3309, + [3338] = 3309, + [3339] = 3309, + [3340] = 3309, + [3341] = 3316, + [3342] = 3312, + [3343] = 3316, + [3344] = 3312, + [3345] = 3309, + [3346] = 3316, + [3347] = 3308, + [3348] = 3312, + [3349] = 3312, + [3350] = 3309, + [3351] = 3308, + [3352] = 3316, + [3353] = 3308, + [3354] = 3309, + [3355] = 3312, + [3356] = 3356, + [3357] = 3357, + [3358] = 3308, + [3359] = 3309, + [3360] = 3312, + [3361] = 3357, + [3362] = 3357, + [3363] = 3316, + [3364] = 3357, + [3365] = 3316, + [3366] = 3357, + [3367] = 3308, + [3368] = 3309, + [3369] = 3312, + [3370] = 3316, + [3371] = 14, + [3372] = 3372, + [3373] = 3373, + [3374] = 3374, + [3375] = 3374, + [3376] = 3372, + [3377] = 3372, + [3378] = 3378, + [3379] = 3379, + [3380] = 3379, + [3381] = 3372, + [3382] = 17, + [3383] = 3383, + [3384] = 3378, + [3385] = 3374, + [3386] = 3386, + [3387] = 3379, + [3388] = 3388, + [3389] = 3378, + [3390] = 3374, [3391] = 3391, - [3392] = 3392, + [3392] = 3378, [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3396, - [3397] = 3394, - [3398] = 3393, - [3399] = 3396, - [3400] = 3334, - [3401] = 3401, - [3402] = 3402, - [3403] = 3395, - [3404] = 3391, + [3394] = 3372, + [3395] = 3393, + [3396] = 3374, + [3397] = 3393, + [3398] = 3379, + [3399] = 3378, + [3400] = 3379, + [3401] = 3393, + [3402] = 3393, + [3403] = 3403, + [3404] = 3404, [3405] = 3405, - [3406] = 3395, + [3406] = 3406, [3407] = 3407, [3408] = 3408, - [3409] = 3401, - [3410] = 3394, - [3411] = 3408, + [3409] = 3405, + [3410] = 3410, + [3411] = 3410, [3412] = 3412, - [3413] = 3395, - [3414] = 3391, - [3415] = 3408, + [3413] = 3413, + [3414] = 3414, + [3415] = 3415, [3416] = 3416, - [3417] = 3395, - [3418] = 27, - [3419] = 3395, - [3420] = 3420, - [3421] = 3393, - [3422] = 3422, - [3423] = 3420, - [3424] = 3424, - [3425] = 3425, - [3426] = 3394, - [3427] = 3395, - [3428] = 3428, - [3429] = 3405, - [3430] = 3430, - [3431] = 3405, - [3432] = 3432, - [3433] = 3393, - [3434] = 3428, - [3435] = 3401, - [3436] = 3395, - [3437] = 3391, - [3438] = 3391, - [3439] = 3439, - [3440] = 3408, + [3417] = 3417, + [3418] = 3407, + [3419] = 3410, + [3420] = 3410, + [3421] = 3421, + [3422] = 3414, + [3423] = 3414, + [3424] = 3407, + [3425] = 3404, + [3426] = 3415, + [3427] = 3408, + [3428] = 3403, + [3429] = 3415, + [3430] = 3410, + [3431] = 3431, + [3432] = 3414, + [3433] = 3405, + [3434] = 3406, + [3435] = 3421, + [3436] = 3436, + [3437] = 3407, + [3438] = 3405, + [3439] = 3405, + [3440] = 3313, [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, + [3442] = 3442, + [3443] = 3406, + [3444] = 3421, + [3445] = 3445, + [3446] = 3417, + [3447] = 3447, + [3448] = 3431, + [3449] = 3449, + [3450] = 3405, + [3451] = 3405, + [3452] = 3403, + [3453] = 3405, [3454] = 3454, - [3455] = 3401, - [3456] = 3396, - [3457] = 3432, - [3458] = 3405, - [3459] = 3428, + [3455] = 3431, + [3456] = 3405, + [3457] = 3431, + [3458] = 3458, + [3459] = 3408, [3460] = 3460, - [3461] = 3405, - [3462] = 3432, - [3463] = 3395, - [3464] = 3422, - [3465] = 3430, - [3466] = 3422, - [3467] = 3467, - [3468] = 3468, - [3469] = 3420, + [3461] = 3403, + [3462] = 3462, + [3463] = 3404, + [3464] = 3405, + [3465] = 3404, + [3466] = 24, + [3467] = 3460, + [3468] = 3460, + [3469] = 3404, [3470] = 3470, - [3471] = 3395, - [3472] = 3472, - [3473] = 3420, + [3471] = 3421, + [3472] = 3405, + [3473] = 3408, [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, + [3475] = 3460, + [3476] = 3476, + [3477] = 3460, + [3478] = 3478, + [3479] = 3403, + [3480] = 3417, + [3481] = 3431, + [3482] = 3405, + [3483] = 3417, + [3484] = 3421, + [3485] = 3405, + [3486] = 3406, + [3487] = 3407, + [3488] = 3408, [3489] = 3489, - [3490] = 3490, + [3490] = 3415, [3491] = 3491, [3492] = 3492, - [3493] = 3493, - [3494] = 3494, - [3495] = 3494, - [3496] = 3487, - [3497] = 3491, - [3498] = 3498, - [3499] = 3493, - [3500] = 3493, - [3501] = 3490, + [3493] = 3417, + [3494] = 3406, + [3495] = 3495, + [3496] = 3496, + [3497] = 3415, + [3498] = 3414, + [3499] = 3499, + [3500] = 3500, + [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 3498, + [3504] = 3500, [3505] = 3505, - [3506] = 19, + [3506] = 3506, [3507] = 3507, - [3508] = 3508, - [3509] = 3502, - [3510] = 3502, - [3511] = 3508, - [3512] = 5, - [3513] = 3508, - [3514] = 3508, - [3515] = 3498, - [3516] = 3490, + [3508] = 3501, + [3509] = 3509, + [3510] = 3509, + [3511] = 3505, + [3512] = 3507, + [3513] = 3513, + [3514] = 3514, + [3515] = 3503, + [3516] = 3516, [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] = 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, + [3518] = 3513, + [3519] = 3499, + [3520] = 3499, + [3521] = 3513, + [3522] = 3505, + [3523] = 3506, + [3524] = 3509, + [3525] = 3500, + [3526] = 3499, + [3527] = 3507, + [3528] = 3528, + [3529] = 3505, + [3530] = 3530, + [3531] = 3516, + [3532] = 3516, + [3533] = 3509, + [3534] = 3530, + [3535] = 3500, + [3536] = 3530, + [3537] = 5, + [3538] = 3538, + [3539] = 3506, + [3540] = 3540, + [3541] = 3505, + [3542] = 3516, + [3543] = 4, + [3544] = 6, + [3545] = 3506, + [3546] = 3528, + [3547] = 3538, + [3548] = 3513, + [3549] = 3528, [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, + [3551] = 3503, + [3552] = 3501, + [3553] = 3514, + [3554] = 3514, + [3555] = 3530, + [3556] = 3556, + [3557] = 3557, + [3558] = 3503, + [3559] = 3528, + [3560] = 3501, + [3561] = 26, + [3562] = 3528, + [3563] = 3506, + [3564] = 10, + [3565] = 15, + [3566] = 3538, + [3567] = 3503, + [3568] = 3509, + [3569] = 3514, + [3570] = 3514, + [3571] = 3501, + [3572] = 3513, + [3573] = 3516, [3574] = 3574, - [3575] = 3575, - [3576] = 3028, - [3577] = 3577, - [3578] = 3578, - [3579] = 3579, - [3580] = 3580, - [3581] = 3581, + [3575] = 3499, + [3576] = 3538, + [3577] = 19, + [3578] = 3530, + [3579] = 3500, + [3580] = 3538, + [3581] = 22, [3582] = 3582, [3583] = 3583, [3584] = 3584, [3585] = 3585, [3586] = 3586, - [3587] = 3580, + [3587] = 3587, [3588] = 3588, [3589] = 3589, - [3590] = 3579, - [3591] = 3584, + [3590] = 3590, + [3591] = 3591, [3592] = 3592, [3593] = 3593, [3594] = 3594, [3595] = 3595, [3596] = 3596, - [3597] = 3573, + [3597] = 3597, [3598] = 3598, - [3599] = 3573, - [3600] = 3579, - [3601] = 3573, + [3599] = 3599, + [3600] = 3597, + [3601] = 3601, [3602] = 3602, - [3603] = 3602, + [3603] = 3603, [3604] = 3604, [3605] = 3605, - [3606] = 3579, + [3606] = 3606, [3607] = 3607, [3608] = 3608, - [3609] = 3579, + [3609] = 3609, [3610] = 3610, - [3611] = 3595, - [3612] = 3579, + [3611] = 3611, + [3612] = 3589, [3613] = 3613, - [3614] = 3578, - [3615] = 3602, - [3616] = 3616, + [3614] = 3614, + [3615] = 3583, + [3616] = 3613, [3617] = 3617, [3618] = 3618, - [3619] = 3579, - [3620] = 3620, - [3621] = 3621, - [3622] = 3596, - [3623] = 3607, + [3619] = 3614, + [3620] = 3602, + [3621] = 3613, + [3622] = 3606, + [3623] = 3623, [3624] = 3624, - [3625] = 3607, - [3626] = 3022, - [3627] = 3627, - [3628] = 3025, - [3629] = 3579, + [3625] = 3625, + [3626] = 3587, + [3627] = 3589, + [3628] = 3628, + [3629] = 3628, [3630] = 3630, - [3631] = 3631, - [3632] = 3617, - [3633] = 3608, - [3634] = 3620, - [3635] = 3598, - [3636] = 3604, - [3637] = 3637, - [3638] = 3575, - [3639] = 3578, - [3640] = 3640, - [3641] = 3641, + [3631] = 3630, + [3632] = 3606, + [3633] = 3633, + [3634] = 3589, + [3635] = 3603, + [3636] = 3636, + [3637] = 3589, + [3638] = 3590, + [3639] = 3589, + [3640] = 3589, + [3641] = 3037, [3642] = 3642, [3643] = 3643, [3644] = 3644, [3645] = 3645, - [3646] = 3579, - [3647] = 3589, - [3648] = 3574, - [3649] = 3649, + [3646] = 3604, + [3647] = 3614, + [3648] = 3589, + [3649] = 3645, [3650] = 3650, - [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] = 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, + [3651] = 3606, + [3652] = 3590, + [3653] = 3604, + [3654] = 3609, + [3655] = 3630, + [3656] = 9, + [3657] = 3025, + [3658] = 3603, + [3659] = 3589, + [3660] = 3660, + [3661] = 3589, + [3662] = 3643, + [3663] = 3642, + [3664] = 3613, + [3665] = 3583, + [3666] = 3589, + [3667] = 3607, + [3668] = 3596, + [3669] = 3587, + [3670] = 3625, + [3671] = 3623, + [3672] = 3618, + [3673] = 3606, + [3674] = 3674, + [3675] = 3589, + [3676] = 3604, + [3677] = 3589, + [3678] = 3589, + [3679] = 3630, + [3680] = 3603, [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, + [3682] = 3628, + [3683] = 3683, + [3684] = 3605, + [3685] = 3685, + [3686] = 3644, + [3687] = 3589, + [3688] = 3597, + [3689] = 3589, + [3690] = 3690, + [3691] = 3024, + [3692] = 3630, + [3693] = 3601, + [3694] = 3602, + [3695] = 3642, + [3696] = 3605, + [3697] = 3643, + [3698] = 3645, + [3699] = 3699, + [3700] = 3609, + [3701] = 3589, [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] = 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] = 3624, - [3736] = 3602, - [3737] = 3595, - [3738] = 3681, - [3739] = 3652, - [3740] = 3594, - [3741] = 3652, + [3703] = 3601, + [3704] = 3704, + [3705] = 3705, + [3706] = 3599, + [3707] = 3596, + [3708] = 3598, + [3709] = 3590, + [3710] = 3613, + [3711] = 3595, + [3712] = 3599, + [3713] = 3608, + [3714] = 3714, + [3715] = 3605, + [3716] = 3595, + [3717] = 3589, + [3718] = 3685, + [3719] = 3633, + [3720] = 3589, + [3721] = 3589, + [3722] = 3722, + [3723] = 3585, + [3724] = 3690, + [3725] = 3628, + [3726] = 3704, + [3727] = 3591, + [3728] = 3592, + [3729] = 3589, + [3730] = 3590, + [3731] = 3586, + [3732] = 3586, + [3733] = 3642, + [3734] = 3643, + [3735] = 3645, + [3736] = 3633, + [3737] = 3593, + [3738] = 3587, + [3739] = 3722, + [3740] = 3705, + [3741] = 3585, [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, + [3743] = 3604, + [3744] = 3591, + [3745] = 3592, + [3746] = 3593, + [3747] = 3594, + [3748] = 3609, + [3749] = 3607, + [3750] = 3589, + [3751] = 3596, + [3752] = 3589, + [3753] = 3594, + [3754] = 3593, + [3755] = 3614, + [3756] = 3608, + [3757] = 3589, + [3758] = 3597, + [3759] = 3722, + [3760] = 3625, + [3761] = 3623, + [3762] = 3592, + [3763] = 3618, + [3764] = 3591, + [3765] = 3585, + [3766] = 3683, + [3767] = 3603, + [3768] = 3722, + [3769] = 3633, + [3770] = 3685, + [3771] = 3644, + [3772] = 3605, + [3773] = 3714, + [3774] = 3602, + [3775] = 3699, + [3776] = 3589, + [3777] = 3714, + [3778] = 3601, + [3779] = 3598, + [3780] = 3705, + [3781] = 3583, + [3782] = 36, + [3783] = 3597, + [3784] = 3602, + [3785] = 3699, + [3786] = 3704, + [3787] = 3644, + [3788] = 3685, + [3789] = 3705, + [3790] = 3598, + [3791] = 3589, + [3792] = 3792, + [3793] = 3683, + [3794] = 3589, + [3795] = 3589, + [3796] = 3704, + [3797] = 3598, + [3798] = 3714, + [3799] = 3618, + [3800] = 3800, + [3801] = 3601, + [3802] = 3589, + [3803] = 3705, + [3804] = 3589, + [3805] = 3623, + [3806] = 3587, + [3807] = 3599, [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] = 3847, - [3848] = 3848, - [3849] = 3849, - [3850] = 3850, - [3851] = 3851, - [3852] = 3849, - [3853] = 3845, - [3854] = 3851, + [3809] = 3625, + [3810] = 3690, + [3811] = 3589, + [3812] = 3683, + [3813] = 3699, + [3814] = 3814, + [3815] = 3815, + [3816] = 3625, + [3817] = 3599, + [3818] = 3589, + [3819] = 3690, + [3820] = 3608, + [3821] = 3628, + [3822] = 3608, + [3823] = 3699, + [3824] = 3594, + [3825] = 3593, + [3826] = 3592, + [3827] = 3591, + [3828] = 3596, + [3829] = 3586, + [3830] = 3585, + [3831] = 3722, + [3832] = 3633, + [3833] = 3607, + [3834] = 3609, + [3835] = 3644, + [3836] = 3685, + [3837] = 3623, + [3838] = 3595, + [3839] = 3714, + [3840] = 3683, + [3841] = 3645, + [3842] = 3618, + [3843] = 3586, + [3844] = 3589, + [3845] = 3583, + [3846] = 3704, + [3847] = 3614, + [3848] = 3643, + [3849] = 3642, + [3850] = 3595, + [3851] = 3690, + [3852] = 3852, + [3853] = 3852, + [3854] = 3854, [3855] = 3855, - [3856] = 3851, + [3856] = 3856, [3857] = 3857, - [3858] = 3848, + [3858] = 3858, [3859] = 3859, - [3860] = 3851, - [3861] = 3861, - [3862] = 3862, + [3860] = 3860, + [3861] = 3852, + [3862] = 3859, [3863] = 3863, [3864] = 3864, - [3865] = 3849, - [3866] = 3847, - [3867] = 3857, + [3865] = 3855, + [3866] = 3863, + [3867] = 3867, [3868] = 3868, - [3869] = 3868, + [3869] = 3863, [3870] = 3870, - [3871] = 3862, + [3871] = 3871, [3872] = 3872, - [3873] = 3872, - [3874] = 3864, - [3875] = 3870, - [3876] = 3862, + [3873] = 3873, + [3874] = 3856, + [3875] = 3875, + [3876] = 3859, [3877] = 3857, - [3878] = 3855, - [3879] = 3849, - [3880] = 3872, - [3881] = 3872, - [3882] = 3851, - [3883] = 3847, - [3884] = 3845, - [3885] = 3843, - [3886] = 3845, - [3887] = 3887, - [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, + [3878] = 3857, + [3879] = 3879, + [3880] = 3856, + [3881] = 3857, + [3882] = 3882, + [3883] = 3854, + [3884] = 3884, + [3885] = 3856, + [3886] = 3854, + [3887] = 3852, + [3888] = 3855, + [3889] = 3863, + [3890] = 3855, + [3891] = 3891, + [3892] = 3892, + [3893] = 3854, + [3894] = 3894, + [3895] = 3895, + [3896] = 3870, + [3897] = 3871, + [3898] = 3864, + [3899] = 3899, + [3900] = 3859, + [3901] = 3875, + [3902] = 3852, [3903] = 3903, - [3904] = 3904, - [3905] = 3848, - [3906] = 3862, - [3907] = 3843, - [3908] = 3843, - [3909] = 3862, - [3910] = 3910, - [3911] = 3911, + [3904] = 3870, + [3905] = 3864, + [3906] = 3871, + [3907] = 3907, + [3908] = 3908, + [3909] = 3859, + [3910] = 1886, + [3911] = 3873, [3912] = 3912, - [3913] = 3868, - [3914] = 3914, - [3915] = 3857, - [3916] = 3916, - [3917] = 3917, - [3918] = 3918, - [3919] = 3864, - [3920] = 3920, - [3921] = 3921, - [3922] = 3922, - [3923] = 1644, + [3913] = 3871, + [3914] = 3863, + [3915] = 1887, + [3916] = 3540, + [3917] = 3870, + [3918] = 3856, + [3919] = 3854, + [3920] = 3884, + [3921] = 3855, + [3922] = 3864, + [3923] = 3873, [3924] = 3924, - [3925] = 3925, + [3925] = 3873, [3926] = 3926, - [3927] = 3927, - [3928] = 3928, - [3929] = 2779, - [3930] = 3926, - [3931] = 3931, + [3927] = 3857, + [3928] = 3871, + [3929] = 3870, + [3930] = 3864, + [3931] = 3873, [3932] = 3932, - [3933] = 2739, - [3934] = 3934, - [3935] = 1615, - [3936] = 1616, - [3937] = 1558, - [3938] = 1534, + [3933] = 3933, + [3934] = 1621, + [3935] = 3935, + [3936] = 3936, + [3937] = 3933, + [3938] = 3938, [3939] = 3939, - [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] = 3924, - [3986] = 3986, - [3987] = 3924, - [3988] = 1563, - [3989] = 1685, - [3990] = 1562, - [3991] = 3991, - [3992] = 3992, + [3940] = 3940, + [3941] = 3941, + [3942] = 3942, + [3943] = 3941, + [3944] = 3944, + [3945] = 1595, + [3946] = 1570, + [3947] = 1569, + [3948] = 1538, + [3949] = 1537, + [3950] = 3938, + [3951] = 3951, + [3952] = 1535, + [3953] = 3936, + [3954] = 1534, + [3955] = 1533, + [3956] = 1530, + [3957] = 3936, + [3958] = 3941, + [3959] = 3939, + [3960] = 3941, + [3961] = 3939, + [3962] = 3936, + [3963] = 1614, + [3964] = 1506, + [3965] = 3933, + [3966] = 1629, + [3967] = 1505, + [3968] = 3968, + [3969] = 1620, + [3970] = 3938, + [3971] = 2777, + [3972] = 3972, + [3973] = 1619, + [3974] = 1618, + [3975] = 2704, + [3976] = 1617, + [3977] = 1616, + [3978] = 3938, + [3979] = 1503, + [3980] = 1502, + [3981] = 1613, + [3982] = 1500, + [3983] = 3939, + [3984] = 3938, + [3985] = 1499, + [3986] = 1612, + [3987] = 1702, + [3988] = 1610, + [3989] = 3933, + [3990] = 1608, + [3991] = 1597, + [3992] = 3933, [3993] = 3993, [3994] = 3994, - [3995] = 3993, - [3996] = 3996, - [3997] = 3997, - [3998] = 3993, - [3999] = 3999, - [4000] = 3991, + [3995] = 3936, + [3996] = 1575, + [3997] = 1624, + [3998] = 3998, + [3999] = 3939, + [4000] = 3941, [4001] = 4001, [4002] = 4002, [4003] = 4003, [4004] = 4004, - [4005] = 4001, - [4006] = 3996, + [4005] = 4005, + [4006] = 4006, [4007] = 4007, - [4008] = 4007, + [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, - [4012] = 3996, + [4012] = 4012, [4013] = 4013, - [4014] = 3993, - [4015] = 4001, - [4016] = 4007, + [4014] = 4014, + [4015] = 4009, + [4016] = 4005, [4017] = 4017, [4018] = 4018, - [4019] = 4010, + [4019] = 4019, [4020] = 4020, - [4021] = 3993, + [4021] = 4021, [4022] = 4022, - [4023] = 4023, - [4024] = 4024, - [4025] = 3991, - [4026] = 3996, - [4027] = 4010, + [4023] = 4010, + [4024] = 4011, + [4025] = 4009, + [4026] = 4003, + [4027] = 4011, [4028] = 4028, - [4029] = 4029, - [4030] = 3991, - [4031] = 3991, + [4029] = 4010, + [4030] = 4030, + [4031] = 4031, [4032] = 4010, - [4033] = 4010, - [4034] = 4034, + [4033] = 4011, + [4034] = 4006, [4035] = 4035, - [4036] = 4007, - [4037] = 3996, - [4038] = 4038, - [4039] = 4039, - [4040] = 4040, - [4041] = 4007, - [4042] = 4001, - [4043] = 4001, - [4044] = 4044, - [4045] = 4045, - [4046] = 4046, + [4036] = 4036, + [4037] = 4037, + [4038] = 4011, + [4039] = 4005, + [4040] = 4006, + [4041] = 4003, + [4042] = 4042, + [4043] = 4003, + [4044] = 4006, + [4045] = 4009, + [4046] = 4010, [4047] = 4047, [4048] = 4048, - [4049] = 4049, - [4050] = 4050, - [4051] = 4047, - [4052] = 4052, + [4049] = 4005, + [4050] = 4006, + [4051] = 4003, + [4052] = 4009, [4053] = 4053, [4054] = 4054, - [4055] = 4055, + [4055] = 4005, [4056] = 4056, [4057] = 4057, - [4058] = 4057, + [4058] = 4058, [4059] = 4059, [4060] = 4060, [4061] = 4061, - [4062] = 4044, + [4062] = 4062, [4063] = 4063, - [4064] = 4063, + [4064] = 4064, [4065] = 4065, [4066] = 4066, [4067] = 4067, [4068] = 4068, [4069] = 4069, [4070] = 4070, - [4071] = 4060, + [4071] = 4071, [4072] = 4072, [4073] = 4073, [4074] = 4074, [4075] = 4075, [4076] = 4076, - [4077] = 4077, - [4078] = 4057, - [4079] = 4079, - [4080] = 4066, - [4081] = 4081, - [4082] = 4082, - [4083] = 4048, - [4084] = 4074, - [4085] = 4085, - [4086] = 4074, - [4087] = 4069, - [4088] = 4088, - [4089] = 4082, - [4090] = 4090, - [4091] = 4091, + [4077] = 4075, + [4078] = 4078, + [4079] = 4074, + [4080] = 4056, + [4081] = 4056, + [4082] = 4068, + [4083] = 4083, + [4084] = 4057, + [4085] = 4083, + [4086] = 4086, + [4087] = 4086, + [4088] = 4068, + [4089] = 4074, + [4090] = 4075, + [4091] = 4072, [4092] = 4092, [4093] = 4067, - [4094] = 4068, - [4095] = 4049, - [4096] = 4096, - [4097] = 4097, + [4094] = 4059, + [4095] = 4095, + [4096] = 4092, + [4097] = 4070, [4098] = 4098, [4099] = 4099, - [4100] = 4045, - [4101] = 4047, - [4102] = 4068, - [4103] = 4068, - [4104] = 4067, - [4105] = 4105, - [4106] = 4067, + [4100] = 4065, + [4101] = 4101, + [4102] = 4064, + [4103] = 4098, + [4104] = 4104, + [4105] = 25, + [4106] = 4106, [4107] = 4107, - [4108] = 4046, - [4109] = 4044, - [4110] = 4081, - [4111] = 4060, - [4112] = 4088, + [4108] = 4057, + [4109] = 4109, + [4110] = 4110, + [4111] = 4107, + [4112] = 4066, [4113] = 4113, - [4114] = 4114, - [4115] = 4098, + [4114] = 4058, + [4115] = 4115, [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] = 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, + [4117] = 4069, + [4118] = 4069, + [4119] = 4119, + [4120] = 4071, + [4121] = 4121, + [4122] = 4060, + [4123] = 4121, + [4124] = 4066, + [4125] = 4086, + [4126] = 4064, + [4127] = 4127, + [4128] = 4101, + [4129] = 4116, + [4130] = 4073, + [4131] = 4110, + [4132] = 4109, + [4133] = 4116, + [4134] = 4115, + [4135] = 4121, + [4136] = 4099, + [4137] = 4095, + [4138] = 4060, + [4139] = 4086, + [4140] = 4095, + [4141] = 4099, + [4142] = 4127, + [4143] = 4056, + [4144] = 4109, + [4145] = 4110, + [4146] = 1682, + [4147] = 4147, + [4148] = 4119, + [4149] = 4119, + [4150] = 4104, + [4151] = 4058, + [4152] = 4147, + [4153] = 4121, + [4154] = 4154, + [4155] = 4058, + [4156] = 4110, + [4157] = 4109, + [4158] = 4115, + [4159] = 4104, + [4160] = 4066, + [4161] = 4059, + [4162] = 4099, + [4163] = 4101, + [4164] = 4095, + [4165] = 4119, + [4166] = 4071, + [4167] = 4056, + [4168] = 4059, + [4169] = 4069, + [4170] = 4098, + [4171] = 4116, + [4172] = 4092, + [4173] = 4115, + [4174] = 4113, + [4175] = 4057, + [4176] = 4106, + [4177] = 4098, + [4178] = 4092, + [4179] = 4058, + [4180] = 4106, + [4181] = 4181, + [4182] = 4064, + [4183] = 4065, + [4184] = 4104, + [4185] = 4067, + [4186] = 4104, + [4187] = 4072, + [4188] = 4113, + [4189] = 4073, + [4190] = 4070, + [4191] = 4075, + [4192] = 4127, + [4193] = 4193, + [4194] = 4063, + [4195] = 4095, + [4196] = 4061, + [4197] = 4074, + [4198] = 4113, + [4199] = 4066, + [4200] = 4068, + [4201] = 4083, + [4202] = 4062, + [4203] = 4057, + [4204] = 4204, + [4205] = 4071, + [4206] = 4060, + [4207] = 4062, + [4208] = 4099, + [4209] = 4107, + [4210] = 4127, + [4211] = 4071, + [4212] = 4069, + [4213] = 4061, + [4214] = 4116, + [4215] = 4115, + [4216] = 4073, + [4217] = 4061, + [4218] = 4070, + [4219] = 4062, + [4220] = 4063, + [4221] = 4113, + [4222] = 4147, + [4223] = 4086, + [4224] = 4224, + [4225] = 4109, + [4226] = 4121, + [4227] = 4110, + [4228] = 4073, + [4229] = 4065, + [4230] = 4067, + [4231] = 4059, + [4232] = 4070, + [4233] = 4106, + [4234] = 4147, [4235] = 4235, - [4236] = 4052, - [4237] = 4057, - [4238] = 4066, - [4239] = 4049, + [4236] = 4106, + [4237] = 1811, + [4238] = 4238, + [4239] = 4060, [4240] = 4240, [4241] = 4241, - [4242] = 4046, - [4243] = 4059, - [4244] = 4060, - [4245] = 4079, - [4246] = 4052, - [4247] = 4247, - [4248] = 4065, + [4242] = 4092, + [4243] = 4101, + [4244] = 4064, + [4245] = 4065, + [4246] = 4067, + [4247] = 4083, + [4248] = 4098, [4249] = 4107, - [4250] = 4096, - [4251] = 4077, - [4252] = 4063, - [4253] = 4113, - [4254] = 4097, - [4255] = 4255, - [4256] = 4255, - [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 4262, - [4263] = 2739, - [4264] = 4257, - [4265] = 4265, - [4266] = 4266, + [4250] = 4250, + [4251] = 4251, + [4252] = 4127, + [4253] = 4063, + [4254] = 4072, + [4255] = 4063, + [4256] = 4101, + [4257] = 4075, + [4258] = 4062, + [4259] = 4061, + [4260] = 4107, + [4261] = 4119, + [4262] = 4074, + [4263] = 4068, + [4264] = 4072, + [4265] = 4147, + [4266] = 4083, [4267] = 4267, [4268] = 4268, [4269] = 4269, @@ -8358,2550 +8453,2635 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4271] = 4271, [4272] = 4272, [4273] = 4273, - [4274] = 4261, + [4274] = 4274, [4275] = 4275, - [4276] = 4276, + [4276] = 2777, [4277] = 4277, [4278] = 4278, - [4279] = 1478, - [4280] = 1479, + [4279] = 4279, + [4280] = 4280, [4281] = 4281, - [4282] = 1483, + [4282] = 4282, [4283] = 4283, - [4284] = 4266, + [4284] = 4284, [4285] = 4285, [4286] = 4286, - [4287] = 4273, + [4287] = 4285, [4288] = 4288, [4289] = 4289, [4290] = 4290, - [4291] = 4269, - [4292] = 4292, - [4293] = 4270, - [4294] = 39, - [4295] = 4277, - [4296] = 4296, - [4297] = 4262, - [4298] = 1477, - [4299] = 1482, - [4300] = 4300, + [4291] = 4279, + [4292] = 14, + [4293] = 1465, + [4294] = 4294, + [4295] = 4295, + [4296] = 4278, + [4297] = 4297, + [4298] = 4280, + [4299] = 2704, + [4300] = 4280, [4301] = 4301, - [4302] = 4302, + [4302] = 4295, [4303] = 4303, - [4304] = 4261, + [4304] = 4297, [4305] = 4305, [4306] = 4306, - [4307] = 4255, - [4308] = 4308, + [4307] = 4307, + [4308] = 1479, [4309] = 4309, - [4310] = 4272, - [4311] = 4311, + [4310] = 4310, + [4311] = 1463, [4312] = 4312, - [4313] = 4289, - [4314] = 4314, - [4315] = 4315, - [4316] = 2739, - [4317] = 4317, - [4318] = 4318, + [4313] = 4294, + [4314] = 4312, + [4315] = 4309, + [4316] = 4316, + [4317] = 1466, + [4318] = 4271, [4319] = 4319, - [4320] = 4273, - [4321] = 4321, + [4320] = 4320, + [4321] = 4273, [4322] = 4322, [4323] = 4323, [4324] = 4324, [4325] = 4325, [4326] = 4326, - [4327] = 4327, - [4328] = 43, + [4327] = 4309, + [4328] = 4297, [4329] = 4329, [4330] = 4330, - [4331] = 4331, + [4331] = 4326, [4332] = 4332, - [4333] = 4333, + [4333] = 4310, [4334] = 4334, - [4335] = 4335, - [4336] = 2779, - [4337] = 4331, - [4338] = 4331, - [4339] = 4322, - [4340] = 4340, - [4341] = 4273, - [4342] = 4255, + [4335] = 4290, + [4336] = 4336, + [4337] = 4297, + [4338] = 4338, + [4339] = 4290, + [4340] = 4279, + [4341] = 4338, + [4342] = 4286, [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, + [4344] = 4301, + [4345] = 4269, + [4346] = 4272, + [4347] = 4278, + [4348] = 4283, + [4349] = 4275, + [4350] = 4274, + [4351] = 2777, + [4352] = 4288, + [4353] = 4286, + [4354] = 4354, + [4355] = 4355, + [4356] = 4323, + [4357] = 4269, [4358] = 4358, [4359] = 4359, - [4360] = 4289, - [4361] = 4324, - [4362] = 4262, - [4363] = 1530, + [4360] = 4297, + [4361] = 4361, + [4362] = 4362, + [4363] = 4329, [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, + [4365] = 4279, + [4366] = 4366, + [4367] = 4316, + [4368] = 1465, + [4369] = 4305, + [4370] = 4284, + [4371] = 1466, + [4372] = 4288, + [4373] = 4310, + [4374] = 4277, + [4375] = 4375, + [4376] = 4361, [4377] = 4377, - [4378] = 4330, + [4378] = 4336, [4379] = 4379, - [4380] = 4269, - [4381] = 4262, - [4382] = 4321, - [4383] = 4383, + [4380] = 4277, + [4381] = 4338, + [4382] = 4285, + [4383] = 4277, [4384] = 4384, - [4385] = 4275, - [4386] = 4276, - [4387] = 4387, - [4388] = 4261, - [4389] = 4283, - [4390] = 4272, + [4385] = 4385, + [4386] = 4284, + [4387] = 1886, + [4388] = 4305, + [4389] = 4389, + [4390] = 4390, [4391] = 4391, - [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, + [4392] = 4338, + [4393] = 4316, + [4394] = 4295, + [4395] = 4395, + [4396] = 4277, + [4397] = 4366, + [4398] = 4283, + [4399] = 4355, + [4400] = 4375, + [4401] = 4309, + [4402] = 4312, + [4403] = 4375, + [4404] = 4336, + [4405] = 4358, + [4406] = 4271, + [4407] = 4407, + [4408] = 4408, + [4409] = 4336, + [4410] = 4410, + [4411] = 1462, [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, + [4413] = 4271, + [4414] = 4268, + [4415] = 4288, + [4416] = 4285, + [4417] = 4294, + [4418] = 4418, + [4419] = 4419, + [4420] = 17, + [4421] = 4312, + [4422] = 4361, + [4423] = 4423, + [4424] = 4278, + [4425] = 4377, + [4426] = 4426, [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, + [4428] = 4306, + [4429] = 4326, + [4430] = 4430, + [4431] = 4431, + [4432] = 4432, + [4433] = 4326, + [4434] = 4286, + [4435] = 4301, + [4436] = 4275, + [4437] = 4268, + [4438] = 4354, + [4439] = 4323, + [4440] = 4295, + [4441] = 4441, + [4442] = 4274, + [4443] = 4432, + [4444] = 4336, + [4445] = 4375, + [4446] = 1461, + [4447] = 4280, + [4448] = 4448, + [4449] = 4329, + [4450] = 4450, + [4451] = 2704, + [4452] = 4366, + [4453] = 4294, + [4454] = 4269, + [4455] = 4377, + [4456] = 4343, + [4457] = 4457, + [4458] = 4358, + [4459] = 4271, + [4460] = 4354, [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] = 4345, - [4502] = 4314, + [4462] = 4358, + [4463] = 4355, + [4464] = 4268, + [4465] = 4305, + [4466] = 4466, + [4467] = 4467, + [4468] = 4468, + [4469] = 4273, + [4470] = 4355, + [4471] = 4355, + [4472] = 4354, + [4473] = 4280, + [4474] = 4474, + [4475] = 1461, + [4476] = 4290, + [4477] = 4477, + [4478] = 4358, + [4479] = 4366, + [4480] = 4283, + [4481] = 4432, + [4482] = 4361, + [4483] = 4279, + [4484] = 4484, + [4485] = 4268, + [4486] = 4316, + [4487] = 4284, + [4488] = 4290, + [4489] = 4272, + [4490] = 4323, + [4491] = 4273, + [4492] = 4310, + [4493] = 4493, + [4494] = 4301, + [4495] = 4354, + [4496] = 4457, + [4497] = 4306, + [4498] = 4377, + [4499] = 4343, + [4500] = 4285, + [4501] = 4361, + [4502] = 4306, [4503] = 4503, - [4504] = 4266, - [4505] = 4505, - [4506] = 4506, - [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] = 1484, - [4529] = 4335, - [4530] = 4345, - [4531] = 4288, - [4532] = 4285, - [4533] = 4533, - [4534] = 4534, - [4535] = 4534, - [4536] = 4536, - [4537] = 4537, - [4538] = 4537, - [4539] = 4539, - [4540] = 4540, - [4541] = 4541, - [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4545, - [4546] = 4546, - [4547] = 4544, - [4548] = 4546, - [4549] = 4539, - [4550] = 4544, - [4551] = 4537, - [4552] = 4534, + [4504] = 4432, + [4505] = 4269, + [4506] = 4343, + [4507] = 4301, + [4508] = 4316, + [4509] = 4377, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, + [4513] = 4513, + [4514] = 4457, + [4515] = 4366, + [4516] = 4516, + [4517] = 4329, + [4518] = 4273, + [4519] = 4323, + [4520] = 4295, + [4521] = 4375, + [4522] = 4457, + [4523] = 41, + [4524] = 4457, + [4525] = 4343, + [4526] = 4305, + [4527] = 4278, + [4528] = 4274, + [4529] = 4306, + [4530] = 4309, + [4531] = 4275, + [4532] = 4272, + [4533] = 4284, + [4534] = 4329, + [4535] = 4326, + [4536] = 4294, + [4537] = 4310, + [4538] = 4338, + [4539] = 4312, + [4540] = 4275, + [4541] = 4274, + [4542] = 4432, + [4543] = 4272, + [4544] = 4288, + [4545] = 4286, + [4546] = 33, + [4547] = 4547, + [4548] = 4548, + [4549] = 4549, + [4550] = 4547, + [4551] = 4551, + [4552] = 4552, [4553] = 4553, - [4554] = 4544, + [4554] = 4554, [4555] = 4555, [4556] = 4556, - [4557] = 4557, - [4558] = 4558, + [4557] = 4553, + [4558] = 4552, [4559] = 4559, [4560] = 4560, - [4561] = 4543, + [4561] = 4561, [4562] = 4562, - [4563] = 5, + [4563] = 4563, [4564] = 4564, - [4565] = 4542, - [4566] = 4566, - [4567] = 4553, - [4568] = 4553, - [4569] = 4539, - [4570] = 4539, - [4571] = 4571, - [4572] = 4572, - [4573] = 10, + [4565] = 4565, + [4566] = 4562, + [4567] = 4567, + [4568] = 4568, + [4569] = 4553, + [4570] = 4570, + [4571] = 4547, + [4572] = 6, + [4573] = 4573, [4574] = 4574, [4575] = 4575, - [4576] = 4543, - [4577] = 4577, + [4576] = 4576, + [4577] = 4564, [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4534, - [4582] = 4, + [4579] = 4555, + [4580] = 4560, + [4581] = 4576, + [4582] = 4582, [4583] = 4583, - [4584] = 6, - [4585] = 27, - [4586] = 4586, - [4587] = 4537, - [4588] = 4588, - [4589] = 4543, - [4590] = 4553, + [4584] = 4553, + [4585] = 4564, + [4586] = 4562, + [4587] = 4587, + [4588] = 4560, + [4589] = 4552, + [4590] = 4590, [4591] = 4591, - [4592] = 4546, + [4592] = 4592, [4593] = 4593, [4594] = 4594, - [4595] = 4595, + [4595] = 4, [4596] = 4596, - [4597] = 4597, - [4598] = 4598, - [4599] = 4543, - [4600] = 4600, - [4601] = 4542, - [4602] = 4534, + [4597] = 4548, + [4598] = 7, + [4599] = 4599, + [4600] = 4562, + [4601] = 4601, + [4602] = 4583, [4603] = 4603, - [4604] = 4542, - [4605] = 4537, + [4604] = 4604, + [4605] = 4605, [4606] = 4606, - [4607] = 4541, - [4608] = 4544, + [4607] = 4607, + [4608] = 4608, [4609] = 4609, [4610] = 4610, - [4611] = 4542, + [4611] = 4555, [4612] = 4612, - [4613] = 4613, - [4614] = 4614, + [4613] = 4555, + [4614] = 4548, [4615] = 4615, - [4616] = 4616, - [4617] = 4553, - [4618] = 4618, - [4619] = 4619, - [4620] = 4620, + [4616] = 4562, + [4617] = 4560, + [4618] = 4552, + [4619] = 24, + [4620] = 4587, [4621] = 4621, - [4622] = 4622, + [4622] = 4576, [4623] = 4623, - [4624] = 4624, + [4624] = 4560, [4625] = 4625, - [4626] = 4539, + [4626] = 4626, [4627] = 4627, - [4628] = 4541, + [4628] = 4547, [4629] = 4629, [4630] = 4630, - [4631] = 4631, - [4632] = 1598, - [4633] = 4633, + [4631] = 4547, + [4632] = 4632, + [4633] = 4564, [4634] = 4634, - [4635] = 4635, + [4635] = 4553, [4636] = 4636, - [4637] = 4637, - [4638] = 4638, - [4639] = 1587, - [4640] = 1609, - [4641] = 1612, - [4642] = 4642, + [4637] = 4548, + [4638] = 5, + [4639] = 4576, + [4640] = 4640, + [4641] = 4552, + [4642] = 4555, [4643] = 4643, - [4644] = 4644, - [4645] = 4645, + [4644] = 4564, + [4645] = 4583, [4646] = 4646, [4647] = 4647, - [4648] = 4648, - [4649] = 4649, + [4648] = 4548, + [4649] = 4576, [4650] = 4650, - [4651] = 1608, + [4651] = 4651, [4652] = 4652, [4653] = 4653, - [4654] = 1597, + [4654] = 4587, [4655] = 4655, [4656] = 4656, - [4657] = 4657, + [4657] = 1590, [4658] = 4658, - [4659] = 4645, - [4660] = 9, - [4661] = 1613, - [4662] = 1614, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4662, [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] = 4645, - [4680] = 4680, - [4681] = 4637, - [4682] = 1592, - [4683] = 4683, - [4684] = 1743, + [4664] = 4661, + [4665] = 4659, + [4666] = 4661, + [4667] = 4659, + [4668] = 4668, + [4669] = 4661, + [4670] = 4670, + [4671] = 4659, + [4672] = 1678, + [4673] = 4643, + [4674] = 4661, + [4675] = 4675, + [4676] = 4659, + [4677] = 1668, + [4678] = 1667, + [4679] = 4590, + [4680] = 4606, + [4681] = 4647, + [4682] = 4549, + [4683] = 4662, + [4684] = 36, [4685] = 4685, - [4686] = 4686, + [4686] = 51, [4687] = 4687, - [4688] = 4645, + [4688] = 4688, [4689] = 4689, - [4690] = 4637, - [4691] = 1742, - [4692] = 1710, - [4693] = 4693, - [4694] = 4533, - [4695] = 1741, + [4690] = 4690, + [4691] = 4691, + [4692] = 4692, + [4693] = 4687, + [4694] = 4688, + [4695] = 47, [4696] = 4696, - [4697] = 4697, + [4697] = 4690, [4698] = 4698, - [4699] = 1740, - [4700] = 1752, - [4701] = 1776, - [4702] = 1591, - [4703] = 1777, - [4704] = 4704, - [4705] = 4616, - [4706] = 4620, + [4699] = 4699, + [4700] = 4700, + [4701] = 4701, + [4702] = 4702, + [4703] = 4687, + [4704] = 4688, + [4705] = 4690, + [4706] = 4706, [4707] = 4707, - [4708] = 1754, + [4708] = 4708, [4709] = 4709, [4710] = 4710, - [4711] = 1760, - [4712] = 4693, - [4713] = 4635, - [4714] = 4714, - [4715] = 4643, - [4716] = 4649, - [4717] = 4633, - [4718] = 1719, - [4719] = 4652, - [4720] = 4648, - [4721] = 1590, - [4722] = 1621, - [4723] = 1629, - [4724] = 4683, - [4725] = 1630, - [4726] = 4686, + [4711] = 4711, + [4712] = 4687, + [4713] = 4688, + [4714] = 17, + [4715] = 4690, + [4716] = 4716, + [4717] = 4717, + [4718] = 4718, + [4719] = 20, + [4720] = 4720, + [4721] = 4670, + [4722] = 4722, + [4723] = 4723, + [4724] = 4724, + [4725] = 4725, + [4726] = 4726, [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] = 4655, - [4743] = 4600, - [4744] = 4744, - [4745] = 1611, - [4746] = 4615, - [4747] = 1718, - [4748] = 4748, + [4728] = 4728, + [4729] = 4727, + [4730] = 4727, + [4731] = 4727, + [4732] = 4727, + [4733] = 4727, + [4734] = 4727, + [4735] = 4727, + [4736] = 4689, + [4737] = 4696, + [4738] = 4699, + [4739] = 4700, + [4740] = 4706, + [4741] = 4685, + [4742] = 4708, + [4743] = 4709, + [4744] = 4716, + [4745] = 4717, + [4746] = 4722, + [4747] = 4656, + [4748] = 4724, [4749] = 4749, [4750] = 4750, - [4751] = 12, - [4752] = 4709, - [4753] = 4710, - [4754] = 4714, - [4755] = 4755, - [4756] = 1717, + [4751] = 4751, + [4752] = 4752, + [4753] = 1683, + [4754] = 1681, + [4755] = 1679, + [4756] = 4756, [4757] = 4757, - [4758] = 4758, - [4759] = 4687, + [4758] = 4749, + [4759] = 4750, [4760] = 4760, [4761] = 4761, [4762] = 4762, - [4763] = 4763, - [4764] = 4693, - [4765] = 4693, - [4766] = 4709, - [4767] = 4693, - [4768] = 4768, - [4769] = 4769, - [4770] = 4710, + [4763] = 1658, + [4764] = 1497, + [4765] = 1656, + [4766] = 4766, + [4767] = 4767, + [4768] = 1655, + [4769] = 1642, + [4770] = 4770, [4771] = 4771, - [4772] = 4714, - [4773] = 4714, - [4774] = 4774, - [4775] = 4775, + [4772] = 4772, + [4773] = 4773, + [4774] = 4751, + [4775] = 4752, [4776] = 4776, [4777] = 4777, - [4778] = 1716, - [4779] = 1575, - [4780] = 1715, - [4781] = 4653, - [4782] = 4782, - [4783] = 4768, - [4784] = 4784, + [4778] = 1630, + [4779] = 4779, + [4780] = 4780, + [4781] = 4781, + [4782] = 1622, + [4783] = 4783, + [4784] = 1615, [4785] = 4785, - [4786] = 4633, - [4787] = 1586, - [4788] = 4788, - [4789] = 4789, - [4790] = 4683, - [4791] = 4686, + [4786] = 1611, + [4787] = 4787, + [4788] = 1609, + [4789] = 1607, + [4790] = 4790, + [4791] = 4791, [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, + [4793] = 1606, + [4794] = 1605, + [4795] = 1604, + [4796] = 1603, + [4797] = 1602, + [4798] = 4798, + [4799] = 1601, + [4800] = 4688, + [4801] = 1600, + [4802] = 1599, + [4803] = 1598, + [4804] = 4804, + [4805] = 4805, + [4806] = 4806, + [4807] = 4807, + [4808] = 1596, + [4809] = 4668, + [4810] = 1594, + [4811] = 1593, + [4812] = 1592, + [4813] = 4813, + [4814] = 1591, + [4815] = 1589, + [4816] = 4816, + [4817] = 1588, + [4818] = 4787, + [4819] = 4785, + [4820] = 4781, + [4821] = 4780, + [4822] = 1587, + [4823] = 1586, [4824] = 4824, - [4825] = 4825, - [4826] = 4687, - [4827] = 4789, - [4828] = 4655, - [4829] = 4829, - [4830] = 4830, - [4831] = 4831, - [4832] = 4832, - [4833] = 4833, - [4834] = 4834, - [4835] = 4835, + [4825] = 1585, + [4826] = 1584, + [4827] = 1583, + [4828] = 1582, + [4829] = 1581, + [4830] = 1580, + [4831] = 4776, + [4832] = 4727, + [4833] = 4675, + [4834] = 1579, + [4835] = 1578, [4836] = 4836, - [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] = 4744, - [4850] = 4850, - [4851] = 4784, - [4852] = 4839, - [4853] = 4853, - [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] = 4763, - [5096] = 1654, - [5097] = 4665, + [4837] = 1577, + [4838] = 1576, + [4839] = 4773, + [4840] = 4772, + [4841] = 1574, + [4842] = 1573, + [4843] = 1572, + [4844] = 1571, + [4845] = 1568, + [4846] = 1567, + [4847] = 4660, + [4848] = 4658, + [4849] = 4689, + [4850] = 4696, + [4851] = 4699, + [4852] = 4700, + [4853] = 4706, + [4854] = 4685, + [4855] = 4708, + [4856] = 4709, + [4857] = 1565, + [4858] = 1564, + [4859] = 4716, + [4860] = 4717, + [4861] = 1563, + [4862] = 4722, + [4863] = 4724, + [4864] = 4725, + [4865] = 1562, + [4866] = 4723, + [4867] = 1561, + [4868] = 1560, + [4869] = 4749, + [4870] = 4750, + [4871] = 1559, + [4872] = 1558, + [4873] = 4751, + [4874] = 4656, + [4875] = 4752, + [4876] = 1557, + [4877] = 1556, + [4878] = 1555, + [4879] = 4756, + [4880] = 4757, + [4881] = 1554, + [4882] = 1553, + [4883] = 1552, + [4884] = 4760, + [4885] = 4761, + [4886] = 1551, + [4887] = 1550, + [4888] = 1549, + [4889] = 1548, + [4890] = 1547, + [4891] = 4766, + [4892] = 4767, + [4893] = 1546, + [4894] = 1545, + [4895] = 1544, + [4896] = 1543, + [4897] = 4770, + [4898] = 4771, + [4899] = 1542, + [4900] = 1541, + [4901] = 4779, + [4902] = 1540, + [4903] = 4783, + [4904] = 1539, + [4905] = 1536, + [4906] = 4790, + [4907] = 4791, + [4908] = 1532, + [4909] = 4792, + [4910] = 1531, + [4911] = 1529, + [4912] = 1528, + [4913] = 1527, + [4914] = 1526, + [4915] = 1525, + [4916] = 4798, + [4917] = 1524, + [4918] = 1523, + [4919] = 4919, + [4920] = 1522, + [4921] = 1521, + [4922] = 4675, + [4923] = 1520, + [4924] = 1519, + [4925] = 1518, + [4926] = 4805, + [4927] = 4670, + [4928] = 1517, + [4929] = 4806, + [4930] = 1516, + [4931] = 1515, + [4932] = 1514, + [4933] = 4668, + [4934] = 1513, + [4935] = 1512, + [4936] = 1511, + [4937] = 4813, + [4938] = 1510, + [4939] = 1509, + [4940] = 4940, + [4941] = 1508, + [4942] = 1507, + [4943] = 4816, + [4944] = 1566, + [4945] = 1504, + [4946] = 4824, + [4947] = 1501, + [4948] = 1625, + [4949] = 1626, + [4950] = 4670, + [4951] = 1627, + [4952] = 4952, + [4953] = 1628, + [4954] = 1631, + [4955] = 4727, + [4956] = 1632, + [4957] = 1634, + [4958] = 4836, + [4959] = 1635, + [4960] = 1636, + [4961] = 1637, + [4962] = 1638, + [4963] = 1639, + [4964] = 1641, + [4965] = 1643, + [4966] = 1644, + [4967] = 1645, + [4968] = 4663, + [4969] = 4660, + [4970] = 4658, + [4971] = 4322, + [4972] = 4689, + [4973] = 4696, + [4974] = 4699, + [4975] = 4700, + [4976] = 1653, + [4977] = 4706, + [4978] = 4685, + [4979] = 4708, + [4980] = 4709, + [4981] = 4981, + [4982] = 1654, + [4983] = 1657, + [4984] = 4716, + [4985] = 4717, + [4986] = 1659, + [4987] = 4722, + [4988] = 4724, + [4989] = 4989, + [4990] = 1660, + [4991] = 1661, + [4992] = 1662, + [4993] = 4749, + [4994] = 4750, + [4995] = 1663, + [4996] = 1664, + [4997] = 4751, + [4998] = 4752, + [4999] = 1665, + [5000] = 1672, + [5001] = 1674, + [5002] = 4756, + [5003] = 4757, + [5004] = 4656, + [5005] = 1675, + [5006] = 4670, + [5007] = 1676, + [5008] = 1677, + [5009] = 4760, + [5010] = 4761, + [5011] = 5011, + [5012] = 1698, + [5013] = 1696, + [5014] = 1695, + [5015] = 1694, + [5016] = 4766, + [5017] = 4767, + [5018] = 1693, + [5019] = 1692, + [5020] = 1691, + [5021] = 1690, + [5022] = 4770, + [5023] = 4771, + [5024] = 1689, + [5025] = 1650, + [5026] = 1633, + [5027] = 1686, + [5028] = 1685, + [5029] = 1684, + [5030] = 4779, + [5031] = 4756, + [5032] = 4783, + [5033] = 4813, + [5034] = 5034, + [5035] = 4757, + [5036] = 4772, + [5037] = 4773, + [5038] = 5038, + [5039] = 4790, + [5040] = 4776, + [5041] = 4791, + [5042] = 4792, + [5043] = 5043, + [5044] = 5044, + [5045] = 4760, + [5046] = 4761, + [5047] = 5047, + [5048] = 4798, + [5049] = 5049, + [5050] = 1687, + [5051] = 4805, + [5052] = 4806, + [5053] = 4668, + [5054] = 4813, + [5055] = 5055, + [5056] = 4816, + [5057] = 4824, + [5058] = 4816, + [5059] = 4766, + [5060] = 4767, + [5061] = 4670, + [5062] = 5062, + [5063] = 4727, + [5064] = 4836, + [5065] = 4836, + [5066] = 5066, + [5067] = 4663, + [5068] = 5068, + [5069] = 4660, + [5070] = 4658, + [5071] = 4689, + [5072] = 4696, + [5073] = 4699, + [5074] = 5074, + [5075] = 5075, + [5076] = 4700, + [5077] = 4787, + [5078] = 5078, + [5079] = 4706, + [5080] = 4785, + [5081] = 4685, + [5082] = 4781, + [5083] = 4780, + [5084] = 4708, + [5085] = 4709, + [5086] = 5086, + [5087] = 5087, + [5088] = 4716, + [5089] = 4717, + [5090] = 4722, + [5091] = 4724, + [5092] = 5092, + [5093] = 4749, + [5094] = 4750, + [5095] = 4770, + [5096] = 4751, + [5097] = 4752, [5098] = 5098, - [5099] = 4831, - [5100] = 4665, - [5101] = 5101, - [5102] = 4788, - [5103] = 4655, - [5104] = 4693, - [5105] = 4784, - [5106] = 4835, - [5107] = 4693, - [5108] = 4741, - [5109] = 4663, - [5110] = 4685, - [5111] = 4704, - [5112] = 4757, - [5113] = 1681, + [5099] = 4756, + [5100] = 4757, + [5101] = 4760, + [5102] = 4761, + [5103] = 4771, + [5104] = 4766, + [5105] = 4767, + [5106] = 5106, + [5107] = 4770, + [5108] = 4771, + [5109] = 4779, + [5110] = 4783, + [5111] = 4790, + [5112] = 4791, + [5113] = 4792, [5114] = 5114, - [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] = 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, + [5115] = 4779, + [5116] = 4670, + [5117] = 25, + [5118] = 5011, + [5119] = 4798, + [5120] = 4783, + [5121] = 4725, + [5122] = 5122, + [5123] = 5123, + [5124] = 4805, + [5125] = 4806, + [5126] = 4668, + [5127] = 4813, + [5128] = 4816, + [5129] = 4725, + [5130] = 4723, + [5131] = 4824, + [5132] = 5034, + [5133] = 4723, + [5134] = 5134, + [5135] = 4727, + [5136] = 3024, + [5137] = 4836, + [5138] = 5138, + [5139] = 5139, + [5140] = 4790, + [5141] = 4791, + [5142] = 5142, + [5143] = 4772, + [5144] = 3025, + [5145] = 4773, + [5146] = 4663, + [5147] = 4660, + [5148] = 4658, + [5149] = 4776, + [5150] = 5150, + [5151] = 5151, + [5152] = 4792, + [5153] = 4798, [5154] = 5154, - [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] = 5184, - [5185] = 5185, - [5186] = 5182, - [5187] = 5187, + [5155] = 5155, + [5156] = 5156, + [5157] = 5157, + [5158] = 5158, + [5159] = 5159, + [5160] = 4687, + [5161] = 9, + [5162] = 5162, + [5163] = 4727, + [5164] = 14, + [5165] = 11, + [5166] = 5074, + [5167] = 4670, + [5168] = 5168, + [5169] = 4675, + [5170] = 5170, + [5171] = 4670, + [5172] = 4675, + [5173] = 5173, + [5174] = 4670, + [5175] = 4670, + [5176] = 4723, + [5177] = 4725, + [5178] = 4690, + [5179] = 5011, + [5180] = 4670, + [5181] = 4805, + [5182] = 4806, + [5183] = 4670, + [5184] = 4670, + [5185] = 4781, + [5186] = 4785, + [5187] = 4787, [5188] = 5188, - [5189] = 5177, - [5190] = 5190, - [5191] = 5191, - [5192] = 5192, - [5193] = 5193, - [5194] = 5179, + [5189] = 5173, + [5190] = 5074, + [5191] = 3037, + [5192] = 4670, + [5193] = 4776, + [5194] = 4824, [5195] = 5195, [5196] = 5196, - [5197] = 5182, - [5198] = 5198, - [5199] = 5199, - [5200] = 5177, + [5197] = 4773, + [5198] = 4772, + [5199] = 4780, + [5200] = 4781, [5201] = 5201, - [5202] = 5182, - [5203] = 5203, + [5202] = 5138, + [5203] = 5034, [5204] = 5204, - [5205] = 5205, - [5206] = 5185, - [5207] = 5207, + [5205] = 4780, + [5206] = 4670, + [5207] = 4785, [5208] = 5208, - [5209] = 5179, - [5210] = 5210, - [5211] = 5211, - [5212] = 5212, + [5209] = 5209, + [5210] = 4656, + [5211] = 4787, + [5212] = 4670, [5213] = 5213, - [5214] = 5177, + [5214] = 5214, [5215] = 5215, - [5216] = 5188, - [5217] = 5217, + [5216] = 5216, + [5217] = 5087, [5218] = 5218, - [5219] = 5219, - [5220] = 5179, - [5221] = 5177, + [5219] = 4647, + [5220] = 2704, + [5221] = 5221, [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] = 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] = 5205, - [5253] = 5190, - [5254] = 10, - [5255] = 5177, - [5256] = 5177, - [5257] = 5179, - [5258] = 5179, - [5259] = 5182, + [5225] = 5225, + [5226] = 5226, + [5227] = 5216, + [5228] = 5228, + [5229] = 5223, + [5230] = 5230, + [5231] = 5224, + [5232] = 5216, + [5233] = 5218, + [5234] = 5223, + [5235] = 5235, + [5236] = 5224, + [5237] = 5134, + [5238] = 4590, + [5239] = 5239, + [5240] = 5216, + [5241] = 5223, + [5242] = 5224, + [5243] = 5230, + [5244] = 5244, + [5245] = 5216, + [5246] = 5225, + [5247] = 5247, + [5248] = 2777, + [5249] = 5221, + [5250] = 5226, + [5251] = 5222, + [5252] = 5247, + [5253] = 5253, + [5254] = 7, + [5255] = 5215, + [5256] = 5256, + [5257] = 5222, + [5258] = 5226, + [5259] = 5215, [5260] = 5260, - [5261] = 5182, - [5262] = 5177, - [5263] = 5176, + [5261] = 5261, + [5262] = 5262, + [5263] = 5263, [5264] = 5264, - [5265] = 5175, - [5266] = 5187, - [5267] = 5176, - [5268] = 5177, - [5269] = 5179, - [5270] = 5182, + [5265] = 5265, + [5266] = 5218, + [5267] = 5267, + [5268] = 5247, + [5269] = 5269, + [5270] = 5270, [5271] = 5271, - [5272] = 5190, - [5273] = 5273, - [5274] = 5196, - [5275] = 5204, + [5272] = 5272, + [5273] = 5225, + [5274] = 5274, + [5275] = 5218, [5276] = 5276, - [5277] = 5185, - [5278] = 5188, - [5279] = 5217, + [5277] = 5277, + [5278] = 5230, + [5279] = 5230, [5280] = 5280, [5281] = 5281, - [5282] = 5176, - [5283] = 5187, - [5284] = 5208, - [5285] = 5224, - [5286] = 5286, - [5287] = 5187, - [5288] = 5218, - [5289] = 5177, + [5282] = 5282, + [5283] = 5272, + [5284] = 5284, + [5285] = 5285, + [5286] = 5239, + [5287] = 5239, + [5288] = 5239, + [5289] = 5289, [5290] = 5290, - [5291] = 5179, - [5292] = 5208, - [5293] = 5293, - [5294] = 5182, - [5295] = 5273, - [5296] = 5296, - [5297] = 5223, - [5298] = 5298, - [5299] = 5224, - [5300] = 5300, + [5291] = 5239, + [5292] = 5292, + [5293] = 5239, + [5294] = 5239, + [5295] = 5239, + [5296] = 5272, + [5297] = 5239, + [5298] = 5239, + [5299] = 5299, + [5300] = 5239, [5301] = 5301, - [5302] = 5179, + [5302] = 5302, [5303] = 5303, [5304] = 5304, - [5305] = 5177, - [5306] = 5306, - [5307] = 5307, - [5308] = 5211, + [5305] = 5305, + [5306] = 5221, + [5307] = 5265, + [5308] = 5308, [5309] = 5309, - [5310] = 5310, - [5311] = 5190, + [5310] = 5303, + [5311] = 5304, [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, + [5313] = 5312, + [5314] = 5218, + [5315] = 5315, + [5316] = 5289, + [5317] = 5317, + [5318] = 5215, + [5319] = 5309, + [5320] = 5320, + [5321] = 5225, + [5322] = 5222, + [5323] = 5226, + [5324] = 5324, + [5325] = 5325, + [5326] = 5230, + [5327] = 5327, [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] = 5234, + [5329] = 5304, + [5330] = 5312, + [5331] = 5331, + [5332] = 5303, + [5333] = 5333, + [5334] = 5328, + [5335] = 5239, + [5336] = 5336, + [5337] = 5265, + [5338] = 5223, + [5339] = 5230, + [5340] = 5247, + [5341] = 5263, [5342] = 5342, - [5343] = 5219, - [5344] = 4762, - [5345] = 5345, - [5346] = 5211, - [5347] = 5347, - [5348] = 5224, - [5349] = 5328, - [5350] = 5350, + [5343] = 5343, + [5344] = 5225, + [5345] = 5228, + [5346] = 5315, + [5347] = 5218, + [5348] = 5289, + [5349] = 5309, + [5350] = 5221, [5351] = 5351, - [5352] = 9, + [5352] = 5352, [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] = 5204, + [5354] = 5263, + [5355] = 5355, + [5356] = 5324, + [5357] = 5325, + [5358] = 5327, + [5359] = 5218, + [5360] = 5331, + [5361] = 5225, + [5362] = 5230, + [5363] = 5328, + [5364] = 5239, + [5365] = 5365, + [5366] = 5225, + [5367] = 5226, + [5368] = 5222, + [5369] = 5230, [5370] = 5370, - [5371] = 5371, - [5372] = 5372, - [5373] = 5205, + [5371] = 5304, + [5372] = 5218, + [5373] = 5225, [5374] = 5374, - [5375] = 5375, - [5376] = 5273, - [5377] = 5196, + [5375] = 5265, + [5376] = 5230, + [5377] = 5230, [5378] = 5378, - [5379] = 5379, - [5380] = 5179, - [5381] = 5190, - [5382] = 5178, + [5379] = 5303, + [5380] = 5312, + [5381] = 5315, + [5382] = 5382, [5383] = 5383, - [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] = 5179, - [5398] = 5177, - [5399] = 5179, - [5400] = 5400, - [5401] = 5177, - [5402] = 5179, - [5403] = 5403, - [5404] = 5182, - [5405] = 5223, - [5406] = 2779, - [5407] = 5179, - [5408] = 5408, - [5409] = 5177, - [5410] = 5179, + [5384] = 5289, + [5385] = 5385, + [5386] = 5309, + [5387] = 5387, + [5388] = 5324, + [5389] = 5325, + [5390] = 5327, + [5391] = 5391, + [5392] = 5392, + [5393] = 5218, + [5394] = 5331, + [5395] = 5395, + [5396] = 5328, + [5397] = 5397, + [5398] = 5225, + [5399] = 5239, + [5400] = 5225, + [5401] = 5230, + [5402] = 5230, + [5403] = 5324, + [5404] = 5304, + [5405] = 17, + [5406] = 5406, + [5407] = 14, + [5408] = 5265, + [5409] = 5409, + [5410] = 5410, [5411] = 5411, - [5412] = 5179, + [5412] = 5412, [5413] = 5413, - [5414] = 5176, - [5415] = 5179, - [5416] = 5177, - [5417] = 5177, - [5418] = 5379, - [5419] = 5286, - [5420] = 5420, - [5421] = 5421, - [5422] = 5177, - [5423] = 5411, - [5424] = 5379, - [5425] = 5286, - [5426] = 5411, - [5427] = 5427, - [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] = 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, + [5414] = 5414, + [5415] = 5415, + [5416] = 5225, + [5417] = 5218, + [5418] = 41, + [5419] = 5215, + [5420] = 5315, + [5421] = 5225, + [5422] = 5422, + [5423] = 5289, + [5424] = 5424, + [5425] = 5309, + [5426] = 5230, + [5427] = 33, + [5428] = 5225, + [5429] = 5429, + [5430] = 5230, + [5431] = 5230, + [5432] = 5432, + [5433] = 5433, + [5434] = 5434, + [5435] = 5324, + [5436] = 5325, + [5437] = 5327, + [5438] = 5228, + [5439] = 5235, + [5440] = 5440, + [5441] = 5263, + [5442] = 5331, + [5443] = 5280, + [5444] = 36, + [5445] = 5230, + [5446] = 5325, + [5447] = 5328, + [5448] = 5327, + [5449] = 5239, + [5450] = 5303, + [5451] = 5451, + [5452] = 5263, + [5453] = 5453, + [5454] = 5312, + [5455] = 5225, [5456] = 5456, - [5457] = 5179, + [5457] = 5230, [5458] = 5458, - [5459] = 5459, - [5460] = 5460, - [5461] = 5461, - [5462] = 5462, - [5463] = 5463, - [5464] = 5464, - [5465] = 5465, - [5466] = 5466, - [5467] = 5467, - [5468] = 5468, - [5469] = 5469, + [5459] = 5230, + [5460] = 5225, + [5461] = 5225, + [5462] = 5230, + [5463] = 5225, + [5464] = 5230, + [5465] = 5225, + [5466] = 5230, + [5467] = 5225, + [5468] = 5230, + [5469] = 5225, [5470] = 5470, - [5471] = 5471, - [5472] = 5472, - [5473] = 5473, - [5474] = 5474, - [5475] = 5475, - [5476] = 5476, - [5477] = 5477, - [5478] = 5478, - [5479] = 5479, - [5480] = 5480, - [5481] = 5465, - [5482] = 59, - [5483] = 5483, - [5484] = 5484, - [5485] = 5485, - [5486] = 5486, - [5487] = 5487, - [5488] = 5488, - [5489] = 5489, - [5490] = 5490, - [5491] = 5466, - [5492] = 11, + [5471] = 5228, + [5472] = 5230, + [5473] = 5225, + [5474] = 5225, + [5475] = 5230, + [5476] = 5225, + [5477] = 5224, + [5478] = 5228, + [5479] = 5315, + [5480] = 5225, + [5481] = 5481, + [5482] = 5230, + [5483] = 5230, + [5484] = 5225, + [5485] = 24, + [5486] = 5331, + [5487] = 5247, + [5488] = 5218, + [5489] = 5218, + [5490] = 5225, + [5491] = 5230, + [5492] = 5221, [5493] = 5493, [5494] = 5494, - [5495] = 5465, - [5496] = 5496, - [5497] = 5485, + [5495] = 5342, + [5496] = 5225, + [5497] = 5230, [5498] = 5498, - [5499] = 5499, - [5500] = 5487, + [5499] = 5225, + [5500] = 21, [5501] = 5501, [5502] = 5502, - [5503] = 5503, + [5503] = 15, [5504] = 5504, - [5505] = 5465, + [5505] = 65, [5506] = 5506, [5507] = 5507, [5508] = 5508, - [5509] = 5485, + [5509] = 5509, [5510] = 5510, - [5511] = 11, - [5512] = 5503, + [5511] = 5511, + [5512] = 5511, [5513] = 5513, - [5514] = 5514, - [5515] = 5487, + [5514] = 5513, + [5515] = 5515, [5516] = 5516, - [5517] = 5507, - [5518] = 5498, - [5519] = 5504, + [5517] = 5397, + [5518] = 5518, + [5519] = 5519, [5520] = 5520, - [5521] = 5521, - [5522] = 5485, - [5523] = 5499, - [5524] = 5487, - [5525] = 5486, + [5521] = 4549, + [5522] = 5513, + [5523] = 5523, + [5524] = 5524, + [5525] = 5525, [5526] = 5526, - [5527] = 5527, + [5527] = 5511, [5528] = 5528, - [5529] = 19, + [5529] = 5529, [5530] = 5530, - [5531] = 5496, - [5532] = 5494, - [5533] = 5533, - [5534] = 5534, - [5535] = 5490, - [5536] = 19, + [5531] = 5531, + [5532] = 19, + [5533] = 5523, + [5534] = 5513, + [5535] = 5535, + [5536] = 5536, [5537] = 5537, - [5538] = 5490, - [5539] = 5533, - [5540] = 5350, - [5541] = 4615, - [5542] = 5484, - [5543] = 20, + [5538] = 5538, + [5539] = 5539, + [5540] = 5540, + [5541] = 5541, + [5542] = 5501, + [5543] = 5535, [5544] = 5544, [5545] = 5545, - [5546] = 20, - [5547] = 5479, - [5548] = 5548, - [5549] = 5549, - [5550] = 5465, - [5551] = 5551, - [5552] = 5480, - [5553] = 5553, + [5546] = 5546, + [5547] = 5547, + [5548] = 10, + [5549] = 5456, + [5550] = 5540, + [5551] = 5504, + [5552] = 5523, + [5553] = 4606, [5554] = 5554, - [5555] = 5469, - [5556] = 5556, + [5555] = 5555, + [5556] = 5535, [5557] = 5557, - [5558] = 5558, - [5559] = 5527, + [5558] = 5546, + [5559] = 5559, [5560] = 5560, [5561] = 5561, - [5562] = 5463, - [5563] = 5563, - [5564] = 5533, - [5565] = 5549, - [5566] = 5566, + [5562] = 5562, + [5563] = 5540, + [5564] = 5564, + [5565] = 5565, + [5566] = 5523, [5567] = 5567, - [5568] = 5568, - [5569] = 5464, + [5568] = 5554, + [5569] = 5535, [5570] = 5570, - [5571] = 5465, - [5572] = 5467, + [5571] = 5540, + [5572] = 5572, [5573] = 5573, - [5574] = 5574, - [5575] = 5470, - [5576] = 5474, + [5574] = 5504, + [5575] = 5575, + [5576] = 5576, [5577] = 5577, - [5578] = 5475, - [5579] = 5476, - [5580] = 5580, - [5581] = 5471, - [5582] = 5477, - [5583] = 5583, - [5584] = 5584, - [5585] = 5548, - [5586] = 5551, - [5587] = 5558, - [5588] = 5553, - [5589] = 5589, + [5578] = 5511, + [5579] = 5559, + [5580] = 5511, + [5581] = 5581, + [5582] = 5494, + [5583] = 4643, + [5584] = 5513, + [5585] = 5585, + [5586] = 5541, + [5587] = 5587, + [5588] = 4662, + [5589] = 5538, [5590] = 5590, - [5591] = 5589, - [5592] = 5592, - [5593] = 11, + [5591] = 5506, + [5592] = 3029, + [5593] = 5593, [5594] = 5594, - [5595] = 5483, - [5596] = 5566, + [5595] = 5595, + [5596] = 5506, [5597] = 5597, - [5598] = 5598, + [5598] = 5554, [5599] = 5599, - [5600] = 5493, - [5601] = 59, - [5602] = 5602, + [5600] = 5600, + [5601] = 5557, + [5602] = 5531, [5603] = 5603, [5604] = 5604, [5605] = 5605, - [5606] = 5474, + [5606] = 5606, [5607] = 5607, [5608] = 5608, - [5609] = 5520, - [5610] = 5506, - [5611] = 5471, - [5612] = 5502, - [5613] = 5501, - [5614] = 5458, + [5609] = 5538, + [5610] = 5608, + [5611] = 5594, + [5612] = 5612, + [5613] = 5613, + [5614] = 5614, [5615] = 5615, - [5616] = 5548, - [5617] = 5551, - [5618] = 5607, - [5619] = 5510, - [5620] = 5620, - [5621] = 5460, - [5622] = 5622, - [5623] = 5545, - [5624] = 5584, - [5625] = 5553, + [5616] = 5541, + [5617] = 5617, + [5618] = 5513, + [5619] = 5511, + [5620] = 5526, + [5621] = 5520, + [5622] = 5557, + [5623] = 5623, + [5624] = 5603, + [5625] = 5625, [5626] = 5626, - [5627] = 5627, - [5628] = 5526, + [5627] = 5604, + [5628] = 5597, [5629] = 5629, [5630] = 5630, [5631] = 5631, - [5632] = 5508, - [5633] = 5633, + [5632] = 5599, + [5633] = 5623, [5634] = 5634, - [5635] = 5566, - [5636] = 5636, - [5637] = 5637, - [5638] = 5527, - [5639] = 5626, - [5640] = 5640, - [5641] = 5641, - [5642] = 5642, - [5643] = 5643, - [5644] = 5527, + [5635] = 5635, + [5636] = 5625, + [5637] = 5507, + [5638] = 5523, + [5639] = 5564, + [5640] = 5519, + [5641] = 5597, + [5642] = 5599, + [5643] = 5528, + [5644] = 5529, [5645] = 5645, - [5646] = 5646, - [5647] = 5465, - [5648] = 5648, - [5649] = 5480, + [5646] = 5508, + [5647] = 5530, + [5648] = 5608, + [5649] = 5511, [5650] = 5650, - [5651] = 5474, - [5652] = 5652, - [5653] = 5471, + [5651] = 5651, + [5652] = 5615, + [5653] = 5653, [5654] = 5654, [5655] = 5655, - [5656] = 5629, - [5657] = 5548, + [5656] = 5554, + [5657] = 5657, [5658] = 5658, - [5659] = 5659, + [5659] = 5523, [5660] = 5660, - [5661] = 5661, - [5662] = 5622, + [5661] = 5526, + [5662] = 5662, [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] = 5674, - [5680] = 5527, - [5681] = 5459, - [5682] = 5362, - [5683] = 5683, - [5684] = 5684, + [5664] = 5623, + [5665] = 5520, + [5666] = 5666, + [5667] = 5557, + [5668] = 5668, + [5669] = 5625, + [5670] = 5670, + [5671] = 5650, + [5672] = 5672, + [5673] = 5603, + [5674] = 5561, + [5675] = 5594, + [5676] = 5604, + [5677] = 5510, + [5678] = 5509, + [5679] = 5679, + [5680] = 5511, + [5681] = 5564, + [5682] = 5516, + [5683] = 5508, + [5684] = 5666, [5685] = 5685, - [5686] = 5642, - [5687] = 5566, + [5686] = 5626, + [5687] = 5657, [5688] = 5688, - [5689] = 4620, - [5690] = 5690, + [5689] = 5689, + [5690] = 5516, [5691] = 5691, [5692] = 5692, - [5693] = 5646, - [5694] = 5527, + [5693] = 5693, + [5694] = 5694, [5695] = 5695, - [5696] = 5474, - [5697] = 5464, - [5698] = 5602, - [5699] = 5465, - [5700] = 5700, - [5701] = 5480, + [5696] = 5696, + [5697] = 5615, + [5698] = 5688, + [5699] = 5599, + [5700] = 5524, + [5701] = 5701, [5702] = 5702, - [5703] = 5471, - [5704] = 5487, - [5705] = 5599, - [5706] = 5706, - [5707] = 5627, - [5708] = 5708, - [5709] = 5709, - [5710] = 5710, + [5703] = 5703, + [5704] = 5524, + [5705] = 5705, + [5706] = 5570, + [5707] = 5707, + [5708] = 5526, + [5709] = 5655, + [5710] = 5650, [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] = 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, + [5712] = 5520, + [5713] = 5666, + [5714] = 5714, + [5715] = 5715, + [5716] = 5716, + [5717] = 5689, + [5718] = 5718, + [5719] = 5557, + [5720] = 5604, + [5721] = 5721, + [5722] = 5603, + [5723] = 5539, + [5724] = 5724, + [5725] = 5725, + [5726] = 5726, + [5727] = 5604, + [5728] = 5728, + [5729] = 5729, + [5730] = 5730, + [5731] = 5731, + [5732] = 5732, + [5733] = 5501, + [5734] = 5506, + [5735] = 5732, + [5736] = 5736, + [5737] = 5737, + [5738] = 5738, + [5739] = 5615, + [5740] = 5523, + [5741] = 5741, + [5742] = 5742, + [5743] = 5743, + [5744] = 5526, + [5745] = 5539, + [5746] = 5520, + [5747] = 5685, + [5748] = 5748, + [5749] = 5749, + [5750] = 5714, + [5751] = 5547, + [5752] = 5718, + [5753] = 5555, + [5754] = 5502, + [5755] = 5523, + [5756] = 5540, + [5757] = 5511, + [5758] = 5537, + [5759] = 5560, + [5760] = 5501, + [5761] = 5513, + [5762] = 5567, + [5763] = 5507, + [5764] = 5507, + [5765] = 5561, + [5766] = 5523, + [5767] = 5685, + [5768] = 5768, + [5769] = 5769, + [5770] = 5770, + [5771] = 10, + [5772] = 5507, + [5773] = 5561, + [5774] = 5507, + [5775] = 5629, + [5776] = 5630, + [5777] = 5707, + [5778] = 5570, + [5779] = 5779, + [5780] = 5562, + [5781] = 5715, + [5782] = 5782, + [5783] = 5565, [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, + [5785] = 5716, + [5786] = 5561, + [5787] = 5511, + [5788] = 19, + [5789] = 5513, + [5790] = 5790, + [5791] = 5791, + [5792] = 5792, + [5793] = 5742, + [5794] = 5507, + [5795] = 5795, + [5796] = 5796, + [5797] = 5797, + [5798] = 5798, + [5799] = 5799, + [5800] = 5800, + [5801] = 5801, + [5802] = 5570, + [5803] = 15, + [5804] = 5531, + [5805] = 5805, + [5806] = 5806, + [5807] = 5561, + [5808] = 5666, + [5809] = 5721, + [5810] = 5691, + [5811] = 5507, + [5812] = 5812, + [5813] = 5813, + [5814] = 5570, + [5815] = 5715, + [5816] = 5796, + [5817] = 5797, [5818] = 5818, [5819] = 5819, - [5820] = 5520, - [5821] = 5465, - [5822] = 5480, - [5823] = 5502, - [5824] = 5501, - [5825] = 5640, + [5820] = 5561, + [5821] = 5507, + [5822] = 5822, + [5823] = 5570, + [5824] = 5590, + [5825] = 5825, [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, + [5827] = 5827, + [5828] = 5561, + [5829] = 5829, + [5830] = 5634, + [5831] = 5728, + [5832] = 24, + [5833] = 5833, + [5834] = 5507, + [5835] = 5605, + [5836] = 5631, + [5837] = 5837, + [5838] = 5838, + [5839] = 5570, + [5840] = 5827, + [5841] = 5694, + [5842] = 5561, + [5843] = 5623, + [5844] = 5662, + [5845] = 5507, + [5846] = 5570, + [5847] = 5847, + [5848] = 5848, + [5849] = 5695, + [5850] = 5518, + [5851] = 5511, + [5852] = 5507, + [5853] = 5572, + [5854] = 5531, + [5855] = 5519, + [5856] = 5856, + [5857] = 5561, + [5858] = 5528, + [5859] = 5529, + [5860] = 5585, + [5861] = 5507, + [5862] = 5530, + [5863] = 5838, + [5864] = 5570, + [5865] = 5838, + [5866] = 5866, + [5867] = 5561, + [5868] = 5615, + [5869] = 5507, + [5870] = 5570, + [5871] = 5871, + [5872] = 5605, + [5873] = 5573, + [5874] = 5874, + [5875] = 5561, + [5876] = 5663, + [5877] = 5715, + [5878] = 5576, + [5879] = 5741, + [5880] = 5507, + [5881] = 5668, + [5882] = 5576, + [5883] = 5670, + [5884] = 5585, + [5885] = 5573, + [5886] = 5812, + [5887] = 5561, + [5888] = 5806, + [5889] = 5590, + [5890] = 5510, + [5891] = 5509, + [5892] = 5819, + [5893] = 5513, [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] = 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, + [5895] = 5826, + [5896] = 5896, + [5897] = 5523, + [5898] = 5572, + [5899] = 5626, + [5900] = 5657, + [5901] = 5688, + [5902] = 5513, + [5903] = 5691, + [5904] = 5904, + [5905] = 5523, + [5906] = 5694, + [5907] = 5695, + [5908] = 5696, + [5909] = 5525, + [5910] = 5511, + [5911] = 5718, + [5912] = 5825, + [5913] = 5701, + [5914] = 5547, + [5915] = 5634, + [5916] = 5806, + [5917] = 5917, + [5918] = 5570, + [5919] = 5670, + [5920] = 5728, + [5921] = 5655, + [5922] = 5721, + [5923] = 5511, + [5924] = 5555, + [5925] = 5513, + [5926] = 5605, + [5927] = 5631, + [5928] = 5928, + [5929] = 5511, + [5930] = 5813, + [5931] = 5812, + [5932] = 5732, + [5933] = 5714, + [5934] = 5513, + [5935] = 5935, + [5936] = 5724, + [5937] = 5726, + [5938] = 5693, + [5939] = 5603, + [5940] = 5729, + [5941] = 5730, + [5942] = 5731, + [5943] = 15, + [5944] = 5827, + [5945] = 5819, + [5946] = 5662, + [5947] = 5797, + [5948] = 5796, + [5949] = 5949, + [5950] = 5502, + [5951] = 5951, + [5952] = 5741, + [5953] = 5742, + [5954] = 5954, + [5955] = 5693, + [5956] = 5716, + [5957] = 5826, + [5958] = 5536, + [5959] = 5813, + [5960] = 5960, + [5961] = 65, + [5962] = 5819, + [5963] = 5581, + [5964] = 5847, + [5965] = 5535, + [5966] = 5518, [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] = 5520, - [6028] = 5664, - [6029] = 6029, - [6030] = 5502, - [6031] = 5501, - [6032] = 5631, - [6033] = 5630, - [6034] = 5629, - [6035] = 6035, - [6036] = 5504, - [6037] = 5498, - [6038] = 6038, - [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] = 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] = 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] = 6140, - [6141] = 6141, - [6142] = 6142, - [6143] = 6143, - [6144] = 6144, - [6145] = 6145, - [6146] = 6146, - [6147] = 6147, - [6148] = 6148, - [6149] = 6149, - [6150] = 6150, + [5968] = 5537, + [5969] = 5577, + [5970] = 5707, + [5971] = 5634, + [5972] = 5567, + [5973] = 5630, + [5974] = 5974, + [5975] = 5629, + [5976] = 5506, + [5977] = 5565, + [5978] = 5577, + [5979] = 5581, + [5980] = 5525, + [5981] = 5536, + [5982] = 5728, + [5983] = 5562, + [5984] = 5629, + [5985] = 5630, + [5986] = 5707, + [5987] = 5567, + [5988] = 5523, + [5989] = 5537, + [5990] = 5536, + [5991] = 5991, + [5992] = 5560, + [5993] = 5662, + [5994] = 5716, + [5995] = 19, + [5996] = 5825, + [5997] = 5742, + [5998] = 5693, + [5999] = 5741, + [6000] = 5714, + [6001] = 5732, + [6002] = 5525, + [6003] = 5721, + [6004] = 5731, + [6005] = 5796, + [6006] = 5797, + [6007] = 5718, + [6008] = 5730, + [6009] = 5729, + [6010] = 5518, + [6011] = 5724, + [6012] = 5559, + [6013] = 5725, + [6014] = 5631, + [6015] = 5523, + [6016] = 5847, + [6017] = 5546, + [6018] = 5538, + [6019] = 5625, + [6020] = 5696, + [6021] = 5812, + [6022] = 5813, + [6023] = 5577, + [6024] = 5581, + [6025] = 5726, + [6026] = 5523, + [6027] = 5581, + [6028] = 5590, + [6029] = 5701, + [6030] = 5655, + [6031] = 5511, + [6032] = 5827, + [6033] = 5513, + [6034] = 5825, + [6035] = 5838, + [6036] = 5585, + [6037] = 5576, + [6038] = 5577, + [6039] = 5573, + [6040] = 5570, + [6041] = 5701, + [6042] = 5541, + [6043] = 5827, + [6044] = 5538, + [6045] = 5565, + [6046] = 5696, + [6047] = 5562, + [6048] = 5695, + [6049] = 5560, + [6050] = 5559, + [6051] = 5572, + [6052] = 5806, + [6053] = 5694, + [6054] = 5555, + [6055] = 5691, + [6056] = 5547, + [6057] = 5657, + [6058] = 5511, + [6059] = 5539, + [6060] = 5524, + [6061] = 5507, + [6062] = 5729, + [6063] = 5626, + [6064] = 5519, + [6065] = 5509, + [6066] = 6066, + [6067] = 5528, + [6068] = 5529, + [6069] = 5510, + [6070] = 6070, + [6071] = 5530, + [6072] = 5819, + [6073] = 5561, + [6074] = 5668, + [6075] = 5631, + [6076] = 5605, + [6077] = 5670, + [6078] = 5668, + [6079] = 5516, + [6080] = 5730, + [6081] = 5508, + [6082] = 10, + [6083] = 5536, + [6084] = 5663, + [6085] = 5663, + [6086] = 5662, + [6087] = 5564, + [6088] = 5728, + [6089] = 5594, + [6090] = 5668, + [6091] = 5608, + [6092] = 5670, + [6093] = 5650, + [6094] = 5693, + [6095] = 5546, + [6096] = 5561, + [6097] = 5523, + [6098] = 5597, + [6099] = 5510, + [6100] = 5509, + [6101] = 5634, + [6102] = 5511, + [6103] = 5529, + [6104] = 5528, + [6105] = 5519, + [6106] = 5826, + [6107] = 5507, + [6108] = 5626, + [6109] = 5657, + [6110] = 5714, + [6111] = 5691, + [6112] = 5826, + [6113] = 5523, + [6114] = 5694, + [6115] = 5695, + [6116] = 5696, + [6117] = 5806, + [6118] = 6118, + [6119] = 5731, + [6120] = 5732, + [6121] = 5701, + [6122] = 5721, + [6123] = 5838, + [6124] = 5718, + [6125] = 5715, + [6126] = 5570, + [6127] = 5663, + [6128] = 5685, + [6129] = 5655, + [6130] = 5525, + [6131] = 5590, + [6132] = 5825, + [6133] = 5511, + [6134] = 5511, + [6135] = 5513, + [6136] = 5585, + [6137] = 5666, + [6138] = 5513, + [6139] = 5502, + [6140] = 5650, + [6141] = 5541, + [6142] = 5576, + [6143] = 5504, + [6144] = 5729, + [6145] = 5730, + [6146] = 5731, + [6147] = 5513, + [6148] = 5511, + [6149] = 5741, + [6150] = 5742, [6151] = 6151, - [6152] = 6152, - [6153] = 6153, - [6154] = 6154, - [6155] = 6149, - [6156] = 6156, - [6157] = 6147, - [6158] = 6158, - [6159] = 6159, - [6160] = 6160, - [6161] = 6161, - [6162] = 6156, - [6163] = 6163, - [6164] = 6161, - [6165] = 6165, - [6166] = 6166, - [6167] = 6152, - [6168] = 6168, - [6169] = 6156, - [6170] = 6161, - [6171] = 6147, - [6172] = 6172, - [6173] = 6173, + [6152] = 5847, + [6153] = 5523, + [6154] = 5531, + [6155] = 5546, + [6156] = 5504, + [6157] = 5537, + [6158] = 5847, + [6159] = 5567, + [6160] = 5597, + [6161] = 5608, + [6162] = 5594, + [6163] = 5564, + [6164] = 5508, + [6165] = 5516, + [6166] = 5524, + [6167] = 5685, + [6168] = 5539, + [6169] = 5501, + [6170] = 5629, + [6171] = 5630, + [6172] = 5707, + [6173] = 5554, [6174] = 6174, [6175] = 6175, [6176] = 6176, - [6177] = 6161, - [6178] = 6178, - [6179] = 6179, - [6180] = 6180, + [6177] = 5547, + [6178] = 5555, + [6179] = 5716, + [6180] = 5502, [6181] = 6181, [6182] = 6182, - [6183] = 6158, - [6184] = 6149, - [6185] = 6139, - [6186] = 6146, - [6187] = 6187, - [6188] = 6147, - [6189] = 6152, - [6190] = 6149, - [6191] = 6191, - [6192] = 6152, - [6193] = 6193, - [6194] = 6179, - [6195] = 6195, - [6196] = 6196, - [6197] = 6197, - [6198] = 6172, + [6183] = 5559, + [6184] = 5796, + [6185] = 5797, + [6186] = 5560, + [6187] = 5518, + [6188] = 5562, + [6189] = 5565, + [6190] = 6190, + [6191] = 5599, + [6192] = 5623, + [6193] = 5625, + [6194] = 5572, + [6195] = 5812, + [6196] = 5813, + [6197] = 5573, + [6198] = 6198, [6199] = 6199, [6200] = 6200, [6201] = 6201, - [6202] = 6161, - [6203] = 6156, + [6202] = 6202, + [6203] = 6203, [6204] = 6204, [6205] = 6205, [6206] = 6206, [6207] = 6207, [6208] = 6208, [6209] = 6209, - [6210] = 6147, + [6210] = 6210, [6211] = 6211, - [6212] = 6146, + [6212] = 6212, [6213] = 6213, [6214] = 6214, - [6215] = 6146, + [6215] = 6215, [6216] = 6216, [6217] = 6217, - [6218] = 6166, + [6218] = 6207, [6219] = 6219, - [6220] = 6147, - [6221] = 6213, - [6222] = 6152, + [6220] = 6220, + [6221] = 6221, + [6222] = 6222, [6223] = 6223, [6224] = 6224, [6225] = 6225, - [6226] = 6149, - [6227] = 6224, + [6226] = 6226, + [6227] = 6227, [6228] = 6228, [6229] = 6229, [6230] = 6230, [6231] = 6231, [6232] = 6232, [6233] = 6233, - [6234] = 6234, + [6234] = 6198, [6235] = 6235, [6236] = 6236, - [6237] = 6174, + [6237] = 6237, [6238] = 6238, - [6239] = 6176, + [6239] = 6239, [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, + [6241] = 6214, + [6242] = 6242, + [6243] = 6243, + [6244] = 6244, + [6245] = 6245, + [6246] = 6246, + [6247] = 6222, + [6248] = 6214, + [6249] = 6249, + [6250] = 6250, + [6251] = 6251, + [6252] = 6198, + [6253] = 6253, + [6254] = 6254, + [6255] = 6207, [6256] = 6256, - [6257] = 6232, - [6258] = 6158, - [6259] = 6139, - [6260] = 6152, - [6261] = 6229, + [6257] = 6257, + [6258] = 23, + [6259] = 6259, + [6260] = 6204, + [6261] = 6239, [6262] = 6262, - [6263] = 6179, - [6264] = 6252, - [6265] = 6142, - [6266] = 6256, - [6267] = 6147, - [6268] = 6146, - [6269] = 6208, + [6263] = 6263, + [6264] = 6264, + [6265] = 6200, + [6266] = 6266, + [6267] = 6202, + [6268] = 6268, + [6269] = 6269, [6270] = 6270, [6271] = 6271, - [6272] = 6207, - [6273] = 6213, - [6274] = 6206, - [6275] = 6205, + [6272] = 6272, + [6273] = 6273, + [6274] = 6274, + [6275] = 6275, [6276] = 6276, [6277] = 6277, - [6278] = 6224, + [6278] = 6278, [6279] = 6279, - [6280] = 6195, - [6281] = 6200, + [6280] = 23, + [6281] = 6281, [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] = 6156, - [6297] = 6152, - [6298] = 6172, + [6283] = 6211, + [6284] = 6284, + [6285] = 6198, + [6286] = 6250, + [6287] = 6263, + [6288] = 6262, + [6289] = 6289, + [6290] = 6290, + [6291] = 6200, + [6292] = 6292, + [6293] = 6279, + [6294] = 6284, + [6295] = 6278, + [6296] = 6277, + [6297] = 6276, + [6298] = 6202, [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, + [6300] = 6211, + [6301] = 6301, + [6302] = 6281, + [6303] = 6303, + [6304] = 6273, + [6305] = 6271, + [6306] = 6270, + [6307] = 47, + [6308] = 6308, + [6309] = 6309, + [6310] = 6266, + [6311] = 6264, + [6312] = 6312, [6313] = 6313, - [6314] = 6161, - [6315] = 6156, - [6316] = 6146, - [6317] = 6317, - [6318] = 6318, - [6319] = 6156, - [6320] = 26, - [6321] = 6321, + [6314] = 6314, + [6315] = 6259, + [6316] = 6212, + [6317] = 6213, + [6318] = 6198, + [6319] = 6220, + [6320] = 6320, + [6321] = 6257, [6322] = 6322, - [6323] = 6232, - [6324] = 6175, + [6323] = 6323, + [6324] = 6253, [6325] = 6325, - [6326] = 6311, - [6327] = 6144, - [6328] = 6318, - [6329] = 6329, - [6330] = 6330, - [6331] = 6331, - [6332] = 6176, - [6333] = 6333, - [6334] = 6174, - [6335] = 6335, - [6336] = 6236, - [6337] = 6337, - [6338] = 6181, - [6339] = 6339, - [6340] = 6340, - [6341] = 6341, - [6342] = 6144, - [6343] = 6343, - [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] = 6357, - [6359] = 6236, - [6360] = 6181, - [6361] = 6154, - [6362] = 6147, - [6363] = 6153, + [6326] = 6322, + [6327] = 6314, + [6328] = 6256, + [6329] = 6222, + [6330] = 6228, + [6331] = 6257, + [6332] = 6214, + [6333] = 6238, + [6334] = 6207, + [6335] = 6314, + [6336] = 6200, + [6337] = 6198, + [6338] = 6202, + [6339] = 6323, + [6340] = 6325, + [6341] = 6211, + [6342] = 6313, + [6343] = 6240, + [6344] = 6320, + [6345] = 6212, + [6346] = 6245, + [6347] = 6243, + [6348] = 6207, + [6349] = 6246, + [6350] = 6303, + [6351] = 6211, + [6352] = 6320, + [6353] = 6201, + [6354] = 6235, + [6355] = 6210, + [6356] = 6202, + [6357] = 6249, + [6358] = 6200, + [6359] = 6254, + [6360] = 6268, + [6361] = 6214, + [6362] = 6229, + [6363] = 6226, [6364] = 6364, - [6365] = 6172, - [6366] = 6340, - [6367] = 6367, + [6365] = 6274, + [6366] = 6251, + [6367] = 6250, [6368] = 6368, - [6369] = 6364, - [6370] = 6146, - [6371] = 6371, - [6372] = 6372, - [6373] = 6191, - [6374] = 6374, - [6375] = 6200, - [6376] = 33, - [6377] = 6371, - [6378] = 6378, - [6379] = 6379, - [6380] = 6204, - [6381] = 6213, - [6382] = 6165, - [6383] = 6209, - [6384] = 6146, - [6385] = 6385, + [6369] = 6292, + [6370] = 6290, + [6371] = 6216, + [6372] = 6274, + [6373] = 6213, + [6374] = 6226, + [6375] = 6221, + [6376] = 6376, + [6377] = 6289, + [6378] = 6224, + [6379] = 6308, + [6380] = 6292, + [6381] = 6303, + [6382] = 6200, + [6383] = 6235, + [6384] = 6245, + [6385] = 6313, [6386] = 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] = 6413, + [6387] = 6323, + [6388] = 6325, + [6389] = 6323, + [6390] = 6313, + [6391] = 6224, + [6392] = 6221, + [6393] = 6303, + [6394] = 6216, + [6395] = 6199, + [6396] = 6396, + [6397] = 6220, + [6398] = 6292, + [6399] = 6269, + [6400] = 6368, + [6401] = 6320, + [6402] = 6274, + [6403] = 6308, + [6404] = 6322, + [6405] = 6229, + [6406] = 6308, + [6407] = 6263, + [6408] = 6207, + [6409] = 6290, + [6410] = 6262, + [6411] = 6210, + [6412] = 6226, + [6413] = 6201, [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] = 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, + [6416] = 6314, + [6417] = 6417, + [6418] = 6418, + [6419] = 6269, + [6420] = 6268, + [6421] = 6214, + [6422] = 6212, + [6423] = 6423, + [6424] = 6259, + [6425] = 6425, + [6426] = 6426, + [6427] = 6427, + [6428] = 6214, + [6429] = 6429, + [6430] = 6289, + [6431] = 6254, + [6432] = 6238, + [6433] = 6214, + [6434] = 6222, + [6435] = 6253, + [6436] = 6269, + [6437] = 6249, + [6438] = 6207, + [6439] = 6257, + [6440] = 6246, + [6441] = 6198, + [6442] = 6442, + [6443] = 6243, + [6444] = 6217, + [6445] = 6445, + [6446] = 6264, [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] = 6397, - [6462] = 6462, - [6463] = 6156, - [6464] = 6411, - [6465] = 6161, - [6466] = 6367, - [6467] = 6395, - [6468] = 6149, - [6469] = 6397, - [6470] = 6152, - [6471] = 6144, - [6472] = 6413, + [6448] = 6240, + [6449] = 6270, + [6450] = 6271, + [6451] = 6263, + [6452] = 6262, + [6453] = 6273, + [6454] = 6223, + [6455] = 6256, + [6456] = 6281, + [6457] = 6259, + [6458] = 6235, + [6459] = 6290, + [6460] = 6256, + [6461] = 6263, + [6462] = 6284, + [6463] = 6228, + [6464] = 6202, + [6465] = 6228, + [6466] = 6232, + [6467] = 6467, + [6468] = 6200, + [6469] = 6469, + [6470] = 6470, + [6471] = 6471, + [6472] = 6202, [6473] = 6473, - [6474] = 6208, - [6475] = 6207, - [6476] = 6206, - [6477] = 6477, - [6478] = 6146, + [6474] = 6322, + [6475] = 6279, + [6476] = 6278, + [6477] = 6277, + [6478] = 6276, [6479] = 6479, - [6480] = 6146, - [6481] = 6414, + [6480] = 6284, + [6481] = 6198, [6482] = 6482, [6483] = 6483, [6484] = 6484, - [6485] = 6205, - [6486] = 6486, - [6487] = 6487, + [6485] = 6211, + [6486] = 6266, + [6487] = 6245, [6488] = 6488, - [6489] = 6156, + [6489] = 6489, [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, + [6493] = 6209, + [6494] = 6251, + [6495] = 6495, + [6496] = 6322, + [6497] = 6314, + [6498] = 6289, + [6499] = 6208, + [6500] = 6269, + [6501] = 6208, + [6502] = 6250, + [6503] = 6503, + [6504] = 6211, + [6505] = 6505, + [6506] = 6506, + [6507] = 6507, + [6508] = 6202, [6509] = 6509, - [6510] = 6510, + [6510] = 6262, [6511] = 6511, [6512] = 6512, - [6513] = 6513, - [6514] = 6514, - [6515] = 6515, - [6516] = 6516, + [6513] = 6259, + [6514] = 6246, + [6515] = 6240, + [6516] = 6243, [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, + [6518] = 6220, + [6519] = 6251, + [6520] = 6256, + [6521] = 6246, + [6522] = 6522, + [6523] = 6523, + [6524] = 6524, + [6525] = 6368, + [6526] = 6264, + [6527] = 6527, + [6528] = 6214, + [6529] = 6207, + [6530] = 6268, + [6531] = 6531, + [6532] = 6213, + [6533] = 6533, + [6534] = 6534, + [6535] = 6209, + [6536] = 6279, + [6537] = 6200, + [6538] = 6278, + [6539] = 6244, + [6540] = 6277, + [6541] = 6541, + [6542] = 6542, + [6543] = 6543, + [6544] = 6224, + [6545] = 6221, + [6546] = 6325, + [6547] = 6271, + [6548] = 6548, + [6549] = 6276, + [6550] = 6216, + [6551] = 6368, [6552] = 6552, - [6553] = 6238, - [6554] = 6554, - [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] = 6147, - [6614] = 6216, - [6615] = 6199, - [6616] = 6180, - [6617] = 6228, - [6618] = 6207, - [6619] = 6206, - [6620] = 6181, - [6621] = 6205, - [6622] = 6236, - [6623] = 6623, - [6624] = 6486, - [6625] = 6209, - [6626] = 6147, - [6627] = 6166, - [6628] = 6490, - [6629] = 6491, - [6630] = 6492, - [6631] = 6631, - [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] = 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, + [6553] = 6553, + [6554] = 6204, + [6555] = 6555, + [6556] = 6556, + [6557] = 6396, + [6558] = 6249, + [6559] = 6211, + [6560] = 6560, + [6561] = 6251, + [6562] = 6242, + [6563] = 6198, + [6564] = 6564, + [6565] = 6556, + [6566] = 6555, + [6567] = 6244, + [6568] = 6242, + [6569] = 6543, + [6570] = 6253, + [6571] = 6571, + [6572] = 6229, + [6573] = 6211, + [6574] = 6507, + [6575] = 6503, + [6576] = 6254, + [6577] = 6577, + [6578] = 6210, + [6579] = 6579, + [6580] = 6275, + [6581] = 6581, + [6582] = 6250, + [6583] = 6254, + [6584] = 6584, + [6585] = 6585, + [6586] = 6586, + [6587] = 6587, + [6588] = 6588, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 6592, + [6593] = 6505, + [6594] = 6201, + [6595] = 6368, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, + [6599] = 6492, + [6600] = 6490, + [6601] = 6489, + [6602] = 6312, + [6603] = 6212, + [6604] = 6219, + [6605] = 6202, + [6606] = 6211, + [6607] = 6607, + [6608] = 6249, + [6609] = 6198, + [6610] = 6198, + [6611] = 6560, + [6612] = 6591, + [6613] = 6238, + [6614] = 6232, + [6615] = 6564, + [6616] = 6556, + [6617] = 6555, + [6618] = 6222, + [6619] = 6239, + [6620] = 6543, + [6621] = 6268, + [6622] = 6198, + [6623] = 6253, + [6624] = 6257, + [6625] = 6507, + [6626] = 6503, + [6627] = 6211, + [6628] = 6628, + [6629] = 6264, + [6630] = 6244, + [6631] = 6275, + [6632] = 6270, + [6633] = 6232, + [6634] = 6634, + [6635] = 6584, + [6636] = 6585, + [6637] = 6586, + [6638] = 6587, + [6639] = 6588, + [6640] = 6589, + [6641] = 6641, + [6642] = 6505, + [6643] = 6211, + [6644] = 6273, + [6645] = 6198, + [6646] = 6590, + [6647] = 6281, + [6648] = 6492, + [6649] = 6490, + [6650] = 6489, + [6651] = 6312, + [6652] = 6242, + [6653] = 6589, + [6654] = 6654, + [6655] = 6284, + [6656] = 6564, + [6657] = 6202, + [6658] = 6200, + [6659] = 6560, + [6660] = 6198, + [6661] = 6661, + [6662] = 6238, + [6663] = 6564, + [6664] = 6556, + [6665] = 6555, + [6666] = 6243, + [6667] = 6232, + [6668] = 6543, + [6669] = 6229, + [6670] = 6479, + [6671] = 6279, + [6672] = 6278, + [6673] = 6507, + [6674] = 6503, + [6675] = 6239, + [6676] = 6277, + [6677] = 6276, + [6678] = 6275, + [6679] = 6239, + [6680] = 6290, + [6681] = 6200, + [6682] = 6584, + [6683] = 6585, + [6684] = 6586, + [6685] = 6587, + [6686] = 6588, + [6687] = 6266, + [6688] = 6505, + [6689] = 6210, + [6690] = 6211, + [6691] = 6211, + [6692] = 6692, + [6693] = 6211, + [6694] = 6492, + [6695] = 6490, + [6696] = 6489, + [6697] = 6312, + [6698] = 6215, + [6699] = 6211, + [6700] = 6308, + [6701] = 6211, [6702] = 6702, - [6703] = 6151, - [6704] = 6150, - [6705] = 6705, + [6703] = 6207, + [6704] = 6560, + [6705] = 6211, [6706] = 6706, - [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, + [6707] = 6320, + [6708] = 6564, + [6709] = 6556, + [6710] = 6555, + [6711] = 6214, + [6712] = 6712, + [6713] = 6543, + [6714] = 6211, + [6715] = 6396, + [6716] = 6215, + [6717] = 6211, + [6718] = 6507, + [6719] = 6503, + [6720] = 6211, + [6721] = 6202, + [6722] = 6722, + [6723] = 6275, + [6724] = 6724, + [6725] = 6202, + [6726] = 6240, + [6727] = 6584, + [6728] = 6585, + [6729] = 6586, + [6730] = 6587, + [6731] = 6588, + [6732] = 6211, + [6733] = 6505, + [6734] = 6734, + [6735] = 6207, + [6736] = 6200, + [6737] = 6737, [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, + [6739] = 6492, + [6740] = 6490, + [6741] = 6489, + [6742] = 6312, + [6743] = 6289, + [6744] = 6270, + [6745] = 6745, + [6746] = 6211, + [6747] = 6214, + [6748] = 6564, + [6749] = 6749, + [6750] = 6564, + [6751] = 6751, + [6752] = 6564, + [6753] = 6753, + [6754] = 6564, + [6755] = 6755, + [6756] = 6564, + [6757] = 6757, + [6758] = 6564, + [6759] = 6759, + [6760] = 6564, + [6761] = 6201, + [6762] = 6564, + [6763] = 6299, + [6764] = 6214, [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, + [6766] = 6766, + [6767] = 6214, + [6768] = 6768, + [6769] = 6223, + [6770] = 51, + [6771] = 6211, + [6772] = 6552, + [6773] = 6588, + [6774] = 6774, + [6775] = 6271, + [6776] = 6211, + [6777] = 6273, + [6778] = 6211, + [6779] = 6215, + [6780] = 6219, + [6781] = 6217, + [6782] = 6211, + [6783] = 6211, + [6784] = 6228, + [6785] = 6323, + [6786] = 6202, + [6787] = 6202, + [6788] = 6788, + [6789] = 6789, + [6790] = 6200, + [6791] = 6548, + [6792] = 6313, + [6793] = 6542, + [6794] = 6541, + [6795] = 6200, + [6796] = 6214, + [6797] = 6220, + [6798] = 6798, + [6799] = 6768, + [6800] = 6765, + [6801] = 6224, + [6802] = 6802, + [6803] = 6299, + [6804] = 6299, + [6805] = 6805, + [6806] = 6204, + [6807] = 6807, + [6808] = 6789, + [6809] = 6215, + [6810] = 6548, + [6811] = 6219, + [6812] = 6542, + [6813] = 6541, + [6814] = 6217, + [6815] = 6213, + [6816] = 6211, + [6817] = 6798, + [6818] = 6768, + [6819] = 6765, + [6820] = 6200, + [6821] = 6303, + [6822] = 6822, + [6823] = 6587, + [6824] = 6211, + [6825] = 6586, + [6826] = 6789, + [6827] = 6827, + [6828] = 6548, + [6829] = 6798, + [6830] = 6542, + [6831] = 6541, + [6832] = 6204, + [6833] = 6221, + [6834] = 6202, + [6835] = 6798, + [6836] = 6768, + [6837] = 6765, + [6838] = 6242, + [6839] = 6199, + [6840] = 6207, + [6841] = 6198, + [6842] = 6207, + [6843] = 6473, + [6844] = 6789, + [6845] = 6292, + [6846] = 6548, + [6847] = 6211, + [6848] = 6542, + [6849] = 6541, + [6850] = 6850, + [6851] = 6851, + [6852] = 6211, + [6853] = 6798, + [6854] = 6768, + [6855] = 6765, + [6856] = 6244, + [6857] = 6857, + [6858] = 6202, + [6859] = 6219, + [6860] = 6274, + [6861] = 6226, + [6862] = 6200, + [6863] = 6802, + [6864] = 6223, + [6865] = 6211, + [6866] = 6866, + [6867] = 6789, + [6868] = 3037, + [6869] = 6584, + [6870] = 6216, + [6871] = 6871, + [6872] = 6299, + [6873] = 6873, + [6874] = 6235, + [6875] = 6325, + [6876] = 6208, + [6877] = 6877, + [6878] = 6281, + [6879] = 6217, + [6880] = 6560, + [6881] = 6266, + [6882] = 6245, + [6883] = 6209, + [6884] = 6209, + [6885] = 6223, + [6886] = 6214, + [6887] = 6208, + [6888] = 6585, + [6889] = 6473, + [6890] = 6211, + [6891] = 6207, + [6892] = 6473, + [6893] = 6207, + [6894] = 3025, + [6895] = 6473, + [6896] = 6896, + [6897] = 3024, + [6898] = 6898, + [6899] = 6899, + [6900] = 6900, + [6901] = 6901, + [6902] = 6902, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -10909,76 +11089,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - 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 (eof) ADVANCE(1345); + if (lookahead == '"') ADVANCE(2489); + if (lookahead == '&') ADVANCE(1368); + if (lookahead == '\'') ADVANCE(2494); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(1347); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2744); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == 'B') ADVANCE(1445); + if (lookahead == 'N') ADVANCE(1429); + if (lookahead == 'S') ADVANCE(1420); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == 'b') ADVANCE(1641); + if (lookahead == 'n') ADVANCE(1646); + if (lookahead == 's') ADVANCE(1651); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1532); + lookahead == 'a') ADVANCE(1545); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1434); + lookahead == 'c') ADVANCE(1447); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1443); + lookahead == 'd') ADVANCE(1457); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1441); + lookahead == 'e') ADVANCE(1455); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1822); + lookahead == 'f') ADVANCE(1837); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1638); + lookahead == 'g') ADVANCE(1652); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1640); + lookahead == 'h') ADVANCE(1654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1978); + lookahead == 'i') ADVANCE(1993); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1708); + lookahead == 'k') ADVANCE(1722); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1435); + lookahead == 'l') ADVANCE(1448); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1436); + lookahead == 'm') ADVANCE(1449); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1791); + lookahead == 'o') ADVANCE(1805); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1437); + lookahead == 'p') ADVANCE(1450); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2383); + lookahead == 'q') ADVANCE(2401); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1557); + lookahead == 'r') ADVANCE(1570); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1454); + lookahead == 't') ADVANCE(1468); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2010); + lookahead == 'u') ADVANCE(2025); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1456); + lookahead == 'v') ADVANCE(1470); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1829); + lookahead == 'w') ADVANCE(1844); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2691); + lookahead == 'x') ADVANCE(2710); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2692); + lookahead == 'y') ADVANCE(2711); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -10989,8 +11169,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(27); if (('J' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('j' <= lookahead && lookahead <= '|')) ADVANCE(2458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + ('j' <= lookahead && lookahead <= '|')) ADVANCE(2477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); END_STATE(); case 1: if (lookahead == '\n') SKIP(35) @@ -11021,10 +11201,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(40) + if (lookahead == '\n') SKIP(39) END_STATE(); case 10: - if (lookahead == '\n') SKIP(40) + if (lookahead == '\n') SKIP(39) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: @@ -11035,10 +11215,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(73) + if (lookahead == '\n') SKIP(76) END_STATE(); case 14: - if (lookahead == '\n') SKIP(73) + if (lookahead == '\n') SKIP(76) if (lookahead == '\r') SKIP(13) END_STATE(); case 15: @@ -11049,52 +11229,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') SKIP(39) + if (lookahead == '\n') SKIP(40) END_STATE(); case 18: - if (lookahead == '\n') SKIP(39) + if (lookahead == '\n') SKIP(40) if (lookahead == '\r') SKIP(17) END_STATE(); case 19: if (lookahead == '\n') SKIP(33) - if (lookahead == '\r') ADVANCE(2474); - if (lookahead != 0) ADVANCE(2474); + if (lookahead == '\r') ADVANCE(2493); + if (lookahead != 0) ADVANCE(2493); END_STATE(); case 20: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(216) END_STATE(); case 21: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(216) if (lookahead == '\r') SKIP(20) + if (lookahead == '.') ADVANCE(251); + if (('-' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(193); END_STATE(); case 22: - if (lookahead == '\n') SKIP(216) + if (lookahead == '\n') SKIP(26) END_STATE(); case 23: - if (lookahead == '\n') SKIP(216) + if (lookahead == '\n') SKIP(26) if (lookahead == '\r') SKIP(22) - if (lookahead == '.') ADVANCE(251); - if (('-' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(193); END_STATE(); case 24: if (lookahead == '\n') ADVANCE(134); if (lookahead == '\r') ADVANCE(25); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0) ADVANCE(135); END_STATE(); case 25: if (lookahead == '\n') ADVANCE(134); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0) ADVANCE(135); END_STATE(); case 26: - if (lookahead == ' ') ADVANCE(2659); - if (lookahead == ')') ADVANCE(2477); + if (lookahead == ' ') ADVANCE(2678); + if (lookahead == ')') ADVANCE(2496); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') SKIP(21) - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') SKIP(23) + if (lookahead == '{') ADVANCE(1364); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11104,75 +11284,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(26) END_STATE(); case 27: - 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 == '"') ADVANCE(2489); + if (lookahead == '&') ADVANCE(1368); + if (lookahead == '\'') ADVANCE(2494); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(1347); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2744); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == 'B') ADVANCE(1445); + if (lookahead == 'N') ADVANCE(1429); + if (lookahead == 'S') ADVANCE(1420); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == 'b') ADVANCE(1641); + if (lookahead == 'n') ADVANCE(1646); + if (lookahead == 's') ADVANCE(1651); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1532); + lookahead == 'a') ADVANCE(1545); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1434); + lookahead == 'c') ADVANCE(1447); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1443); + lookahead == 'd') ADVANCE(1457); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1441); + lookahead == 'e') ADVANCE(1455); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1822); + lookahead == 'f') ADVANCE(1837); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1638); + lookahead == 'g') ADVANCE(1652); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1640); + lookahead == 'h') ADVANCE(1654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1978); + lookahead == 'i') ADVANCE(1993); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1708); + lookahead == 'k') ADVANCE(1722); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1435); + lookahead == 'l') ADVANCE(1448); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1436); + lookahead == 'm') ADVANCE(1449); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1791); + lookahead == 'o') ADVANCE(1805); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1437); + lookahead == 'p') ADVANCE(1450); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2383); + lookahead == 'q') ADVANCE(2401); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1557); + lookahead == 'r') ADVANCE(1570); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1454); + lookahead == 't') ADVANCE(1468); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2010); + lookahead == 'u') ADVANCE(2025); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1456); + lookahead == 'v') ADVANCE(1470); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1829); + lookahead == 'w') ADVANCE(1844); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2691); + lookahead == 'x') ADVANCE(2710); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2692); + lookahead == 'y') ADVANCE(2711); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11183,42 +11363,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(27); if (('J' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('j' <= lookahead && lookahead <= '|')) ADVANCE(2458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + ('j' <= lookahead && lookahead <= '|')) ADVANCE(2477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); END_STATE(); case 28: - 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 == '"') ADVANCE(2489); + if (lookahead == '&') ADVANCE(2528); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11229,42 +11409,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 29: - 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 == '"') ADVANCE(2489); + if (lookahead == '&') ADVANCE(2528); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11275,21 +11455,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 30: - 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(2489); + if (lookahead == '&') ADVANCE(2528); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); - if (lookahead == ':') ADVANCE(1333); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); - if (lookahead == '}') ADVANCE(1356); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '=') ADVANCE(2744); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11298,39 +11479,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 31: - 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 == '"') ADVANCE(2489); + if (lookahead == '&') ADVANCE(2528); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1435); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1705); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11341,35 +11522,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(31) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 32: - 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 == '"') ADVANCE(2489); + if (lookahead == '&') ADVANCE(2528); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1689); + lookahead == 'n') ADVANCE(1703); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11380,13 +11561,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(32) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 33: - if (lookahead == '"') ADVANCE(2470); - if (lookahead == '/') ADVANCE(2471); + if (lookahead == '"') ADVANCE(2489); + if (lookahead == '/') ADVANCE(2490); if (lookahead == '\\') ADVANCE(19); - if (lookahead == '{') ADVANCE(1353); + if (lookahead == '{') ADVANCE(1366); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11394,14 +11575,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(2472); - if (lookahead != 0) ADVANCE(2473); + lookahead == 65279) ADVANCE(2491); + if (lookahead != 0) ADVANCE(2492); END_STATE(); case 34: - if (lookahead == '&') ADVANCE(1355); + if (lookahead == '&') ADVANCE(1368); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11410,38 +11591,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(34) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 35: - 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 == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); if (lookahead == 'B') ADVANCE(250); if (lookahead == 'N') ADVANCE(233); if (lookahead == 'S') ADVANCE(220); - if (lookahead == '[') ADVANCE(2467); + if (lookahead == '[') ADVANCE(2486); if (lookahead == '\\') SKIP(2) - 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 == ']') ADVANCE(2488); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'n') ADVANCE(510); + if (lookahead == 's') ADVANCE(516); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(348); + lookahead == 'a') ADVANCE(351); if (lookahead == 'C' || lookahead == 'c') ADVANCE(252); if (lookahead == 'D' || @@ -11449,37 +11630,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(254); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(692); + lookahead == 'f') ADVANCE(698); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(511); + lookahead == 'g') ADVANCE(517); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(830); + lookahead == 'i') ADVANCE(838); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(534); + lookahead == 'k') ADVANCE(536); if (lookahead == 'L' || lookahead == 'l') ADVANCE(255); if (lookahead == 'M' || lookahead == 'm') ADVANCE(256); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(633); + lookahead == 'o') ADVANCE(639); if (lookahead == 'P' || lookahead == 'p') ADVANCE(258); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(373); + lookahead == 'r') ADVANCE(377); if (lookahead == 'T' || lookahead == 't') ADVANCE(269); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(879); + lookahead == 'u') ADVANCE(884); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(938); + lookahead == 'v') ADVANCE(947); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(672); + lookahead == 'w') ADVANCE(678); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); + lookahead == 'x') ADVANCE(843); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2692); + lookahead == 'y') ADVANCE(2711); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11488,64 +11669,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); END_STATE(); case 36: - 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 == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); if (lookahead == 'B') ADVANCE(250); if (lookahead == 'N') ADVANCE(237); if (lookahead == '\\') SKIP(4) - if (lookahead == ']') ADVANCE(2469); - if (lookahead == 'b') ADVANCE(502); - if (lookahead == 'n') ADVANCE(505); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'n') ADVANCE(511); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(875); + lookahead == 'a') ADVANCE(883); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(937); + lookahead == 'c') ADVANCE(946); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(551); + lookahead == 'd') ADVANCE(552); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(370); + lookahead == 'e') ADVANCE(374); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(695); + lookahead == 'f') ADVANCE(701); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(511); + lookahead == 'g') ADVANCE(517); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(881); + lookahead == 'i') ADVANCE(886); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(534); + lookahead == 'k') ADVANCE(536); if (lookahead == 'L' || lookahead == 'l') ADVANCE(259); if (lookahead == 'M' || lookahead == 'm') ADVANCE(257); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(632); + lookahead == 'o') ADVANCE(638); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(323); + lookahead == 'p') ADVANCE(325); if (lookahead == 'S' || - lookahead == 's') ADVANCE(580); + lookahead == 's') ADVANCE(583); if (lookahead == 'T' || - lookahead == 't') ADVANCE(675); + lookahead == 't') ADVANCE(681); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(885); + lookahead == 'u') ADVANCE(890); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(674); + lookahead == 'w') ADVANCE(680); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); + lookahead == 'x') ADVANCE(843); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11556,61 +11737,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(36); END_STATE(); case 37: - 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 == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); if (lookahead == 'N') ADVANCE(238); - if (lookahead == '[') ADVANCE(2467); + if (lookahead == '[') ADVANCE(2486); if (lookahead == '\\') SKIP(6) - if (lookahead == 'n') ADVANCE(506); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(512); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(350); + lookahead == 'a') ADVANCE(353); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(500); + lookahead == 'b') ADVANCE(506); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(933); + lookahead == 'c') ADVANCE(942); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(402); + lookahead == 'd') ADVANCE(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(876); + lookahead == 'e') ADVANCE(907); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(666); + lookahead == 'f') ADVANCE(672); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(511); + lookahead == 'g') ADVANCE(517); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(854); + lookahead == 'i') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(337); + lookahead == 'l') ADVANCE(339); if (lookahead == 'M' || lookahead == 'm') ADVANCE(260); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(632); + lookahead == 'o') ADVANCE(638); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(646); + lookahead == 'p') ADVANCE(651); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1273); + lookahead == 'q') ADVANCE(1285); if (lookahead == 'S' || - lookahead == 's') ADVANCE(623); + lookahead == 's') ADVANCE(627); if (lookahead == 'T' || - lookahead == 't') ADVANCE(934); + lookahead == 't') ADVANCE(943); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1129); + lookahead == 'u') ADVANCE(1138); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(690); + lookahead == 'w') ADVANCE(697); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); + lookahead == 'x') ADVANCE(843); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11621,56 +11802,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(37); END_STATE(); case 38: - 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 == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); if (lookahead == 'N') ADVANCE(240); if (lookahead == 'S') ADVANCE(222); if (lookahead == '\\') SKIP(12) - if (lookahead == 'n') ADVANCE(509); - if (lookahead == 's') ADVANCE(732); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(515); + if (lookahead == 's') ADVANCE(738); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1004); + lookahead == 'a') ADVANCE(1013); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(499); + lookahead == 'b') ADVANCE(505); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(322); + lookahead == 'c') ADVANCE(324); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(403); + lookahead == 'd') ADVANCE(407); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); + lookahead == 'e') ADVANCE(782); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(667); + lookahead == 'f') ADVANCE(673); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(511); + lookahead == 'g') ADVANCE(517); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(855); + lookahead == 'i') ADVANCE(863); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(337); + lookahead == 'l') ADVANCE(339); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(305); + lookahead == 'm') ADVANCE(306); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1181); + lookahead == 'o') ADVANCE(1192); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(646); + lookahead == 'p') ADVANCE(651); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(374); + lookahead == 'r') ADVANCE(378); if (lookahead == 'T' || - lookahead == 't') ADVANCE(987); + lookahead == 't') ADVANCE(998); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(680); + lookahead == 'w') ADVANCE(687); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2690); + lookahead == 'x') ADVANCE(2709); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11679,126 +11860,126 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); END_STATE(); case 39: - 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(1351); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1003); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(742); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(331); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(878); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1261); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(693); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1057); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(39) - END_STATE(); - case 40: - 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 == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); if (lookahead == '\\') SKIP(10) - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(349); + lookahead == 'a') ADVANCE(352); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1091); + lookahead == 'b') ADVANCE(509); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(940); + lookahead == 'c') ADVANCE(950); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(314); + lookahead == 'd') ADVANCE(345); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); + lookahead == 'e') ADVANCE(438); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(752); + lookahead == 'f') ADVANCE(759); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(588); + lookahead == 'g') ADVANCE(467); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(838); + lookahead == 'i') ADVANCE(847); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(339); + lookahead == 'l') ADVANCE(340); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(530); + lookahead == 'm') ADVANCE(305); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(517); + lookahead == 'n') ADVANCE(514); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(634); + lookahead == 'o') ADVANCE(638); if (lookahead == 'P' || lookahead == 'p') ADVANCE(290); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1276); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(518); + lookahead == 'r') ADVANCE(634); if (lookahead == 'S' || - lookahead == 's') ADVANCE(627); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(564); + lookahead == 's') ADVANCE(631); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1129); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(304); + lookahead == 'u') ADVANCE(1138); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(691); + lookahead == 'w') ADVANCE(696); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); + lookahead == 'x') ADVANCE(843); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(40) + lookahead == 65279) SKIP(39) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(39); + END_STATE(); + case 40: + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '.') ADVANCE(1347); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '\\') SKIP(18) + if (lookahead == '{') ADVANCE(1364); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1012); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(749); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(333); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(909); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1272); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(699); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1066); if (lookahead == '\t' || lookahead == '\n' || + lookahead == '\f' || lookahead == '\r' || - lookahead == ' ') ADVANCE(40); + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(40) END_STATE(); case 41: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == ')') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2468); - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); if (lookahead == '\\') SKIP(16) - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1005); + lookahead == 'a') ADVANCE(1014); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(742); + lookahead == 'b') ADVANCE(749); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1286); + lookahead == 'e') ADVANCE(1299); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(858); + lookahead == 'i') ADVANCE(866); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(977); + lookahead == 'n') ADVANCE(987); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(859); + lookahead == 'o') ADVANCE(867); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(590); + lookahead == 'p') ADVANCE(594); if (lookahead == 'S' || - lookahead == 's') ADVANCE(592); + lookahead == 's') ADVANCE(597); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11809,32 +11990,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(41); END_STATE(); case 42: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == ')') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2480); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '-') ADVANCE(2499); if (lookahead == '/') ADVANCE(133); - if (lookahead == '?') ADVANCE(2462); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2415); + lookahead == 'a') ADVANCE(2434); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2131); + lookahead == 'c') ADVANCE(2149); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1504); + lookahead == 'd') ADVANCE(1517); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2074); + lookahead == 'i') ADVANCE(2092); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1530); + lookahead == 'm') ADVANCE(1543); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2385); + lookahead == 'o') ADVANCE(2404); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2382); + lookahead == 's') ADVANCE(2400); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1695); + lookahead == 't') ADVANCE(1709); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11843,30 +12024,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(42) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('b' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 43: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == ')') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2480); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '-') ADVANCE(2499); if (lookahead == '/') ADVANCE(133); - if (lookahead == '?') ADVANCE(2462); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1504); + lookahead == 'd') ADVANCE(1517); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2074); + lookahead == 'i') ADVANCE(2092); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2385); + lookahead == 'o') ADVANCE(2404); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11875,38 +12056,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 44: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == ')') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2480); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '-') ADVANCE(2499); if (lookahead == '/') ADVANCE(133); - if (lookahead == '?') ADVANCE(2462); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2434); + lookahead == 'e') ADVANCE(2453); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1712); + lookahead == 'n') ADVANCE(1726); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1792); + lookahead == 'o') ADVANCE(1806); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); + lookahead == 's') ADVANCE(1860); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 'u') ADVANCE(2304); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1843); + lookahead == 'w') ADVANCE(1858); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11915,47 +12096,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 45: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == 'N') ADVANCE(1433); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == 'n') ADVANCE(1649); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11964,49 +12145,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 46: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12015,47 +12196,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 47: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12064,47 +12245,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 48: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1633); + lookahead == 'n') ADVANCE(1647); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12113,48 +12294,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 49: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == 'N') ADVANCE(1433); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1649); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1630); + lookahead == 'b') ADVANCE(1644); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12163,50 +12344,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 50: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1630); + lookahead == 'b') ADVANCE(1644); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12215,48 +12396,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(50) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 51: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1630); + lookahead == 'b') ADVANCE(1644); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12265,48 +12446,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(51) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 52: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1630); + lookahead == 'b') ADVANCE(1644); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1633); + lookahead == 'n') ADVANCE(1647); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12315,41 +12496,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(52) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 53: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1434); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1650); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12360,36 +12541,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(53); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 54: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1434); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1650); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12400,38 +12581,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(54); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 55: - 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); + lookahead == 'n') ADVANCE(1650); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12442,36 +12623,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(55); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); + lookahead == 'n') ADVANCE(1650); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12482,41 +12663,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(56); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2007); + lookahead == 'i') ADVANCE(2022); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12527,44 +12708,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(57) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == 'N') ADVANCE(1433); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1649); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1902); + lookahead == 'f') ADVANCE(1917); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); + lookahead == 'i') ADVANCE(2045); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12573,47 +12754,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1901); + lookahead == 'f') ADVANCE(1916); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); + lookahead == 'i') ADVANCE(2045); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12622,47 +12803,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1902); + lookahead == 'f') ADVANCE(1917); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); + lookahead == 'i') ADVANCE(2045); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12671,47 +12852,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1902); + lookahead == 'f') ADVANCE(1917); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); + lookahead == 'i') ADVANCE(2045); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1633); + lookahead == 'n') ADVANCE(1647); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12720,44 +12901,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == 'N') ADVANCE(1433); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1649); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1708); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12766,46 +12947,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(62) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1708); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12814,44 +12995,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(63) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + lookahead == 'n') ADVANCE(1649); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1708); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12860,44 +13041,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(64) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1633); + lookahead == 'n') ADVANCE(1647); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1708); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12906,66 +13087,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(65) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '(') ADVANCE(2495); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(239); if (lookahead == 'S') ADVANCE(221); - if (lookahead == '[') ADVANCE(2467); + if (lookahead == '[') ADVANCE(2486); if (lookahead == '\\') SKIP(8) - if (lookahead == ']') ADVANCE(2469); - if (lookahead == 's') ADVANCE(529); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == 'n') ADVANCE(513); + if (lookahead == 's') ADVANCE(533); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1262); + lookahead == 'a') ADVANCE(1273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(501); + lookahead == 'b') ADVANCE(507); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(321); + lookahead == 'c') ADVANCE(323); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(402); + lookahead == 'd') ADVANCE(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(877); + lookahead == 'e') ADVANCE(908); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(665); + lookahead == 'f') ADVANCE(671); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(461); + lookahead == 'g') ADVANCE(467); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(856); + lookahead == 'i') ADVANCE(864); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(337); + lookahead == 'l') ADVANCE(339); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(305); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(507); + lookahead == 'm') ADVANCE(306); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(859); + lookahead == 'o') ADVANCE(867); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(288); + lookahead == 'p') ADVANCE(289); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(372); + lookahead == 'r') ADVANCE(376); if (lookahead == 'T' || - lookahead == 't') ADVANCE(988); + lookahead == 't') ADVANCE(999); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(678); + lookahead == 'w') ADVANCE(684); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); + lookahead == 'x') ADVANCE(843); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2692); + lookahead == 'y') ADVANCE(2711); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12976,27 +13157,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(66); END_STATE(); case 67: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == ',') ADVANCE(2468); - if (lookahead == '-') ADVANCE(2480); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2499); 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 == ':') ADVANCE(1346); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2203); + lookahead == 'b') ADVANCE(2221); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13005,22 +13186,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(67) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 68: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == ',') ADVANCE(2468); - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); - if (lookahead == '=') ADVANCE(2495); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13029,32 +13210,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 69: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == '-') ADVANCE(2480); - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); 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 == ':') ADVANCE(1346); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == ']') ADVANCE(2488); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13063,32 +13244,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 70: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == '-') ADVANCE(2480); - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); - if (lookahead == '?') ADVANCE(2462); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2254); + lookahead == 'a') ADVANCE(2272); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1902); + lookahead == 'f') ADVANCE(1917); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); + lookahead == 'i') ADVANCE(2045); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13097,30 +13278,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('b' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 71: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == '-') ADVANCE(2480); - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == '-') ADVANCE(2499); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); - if (lookahead == '?') ADVANCE(2462); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1902); + lookahead == 'f') ADVANCE(1917); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); + lookahead == 'i') ADVANCE(2045); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13129,27 +13310,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 72: - if (lookahead == '(') ADVANCE(2476); - if (lookahead == '-') ADVANCE(2480); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == '-') ADVANCE(2499); if (lookahead == '/') ADVANCE(133); - if (lookahead == '?') ADVANCE(2462); - if (lookahead == '[') ADVANCE(2467); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '?') ADVANCE(2481); + if (lookahead == '[') ADVANCE(2486); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1713); + lookahead == 'n') ADVANCE(1727); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1708); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13158,93 +13339,88 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(72) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2483); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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(508); - if (lookahead == '{') ADVANCE(1351); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1002); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(503); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(945); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(551); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1032); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(749); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(461); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(881); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(338); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(306); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(289); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(528); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(73) + lookahead == 'm') ADVANCE(1497); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1650); if (lookahead == '\t' || lookahead == '\n' || + lookahead == '\f' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(73) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2195); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); + lookahead == 'n') ADVANCE(1702); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1806); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1860); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2304); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1858); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13255,43 +13431,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(74) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'e') ADVANCE(2195); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); + lookahead == 'n') ADVANCE(1702); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1792); + lookahead == 'o') ADVANCE(1806); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); + lookahead == 's') ADVANCE(1860); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 'u') ADVANCE(2304); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1843); + lookahead == 'w') ADVANCE(1858); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13302,64 +13476,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(75) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == ')') ADVANCE(2496); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') SKIP(14) + if (lookahead == '{') ADVANCE(1364); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(354); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(748); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(982); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(315); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); + lookahead == 'e') ADVANCE(1295); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(756); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(592); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(518); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(888); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'l') ADVANCE(341); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); + lookahead == 'n') ADVANCE(526); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1792); + lookahead == 'o') ADVANCE(1274); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(291); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1288); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(595); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 's') ADVANCE(632); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(570); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(304); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1843); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || + lookahead == 'w') ADVANCE(992); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(843); + if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(76) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(76); END_STATE(); case 77: - if (lookahead == ')') ADVANCE(2477); + if (lookahead == ')') ADVANCE(2496); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2076); + lookahead == 'i') ADVANCE(2094); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2385); + lookahead == 'o') ADVANCE(2404); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13371,38 +13556,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); + lookahead == 'n') ADVANCE(1650); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13413,36 +13598,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(78); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); + lookahead == 'n') ADVANCE(1650); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13453,36 +13638,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(79); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1634); + lookahead == 'n') ADVANCE(1648); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13493,34 +13678,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(80); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1634); + lookahead == 'n') ADVANCE(1648); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13531,42 +13716,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(81); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1630); + lookahead == 'b') ADVANCE(1644); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); + lookahead == 'e') ADVANCE(2195); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); + lookahead == 'n') ADVANCE(1702); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); + lookahead == 's') ADVANCE(1860); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 'u') ADVANCE(2304); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13577,40 +13762,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(82) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1630); + lookahead == 'b') ADVANCE(1644); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); + lookahead == 'e') ADVANCE(2195); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); + lookahead == 'n') ADVANCE(1702); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); + lookahead == 's') ADVANCE(1860); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 'u') ADVANCE(2304); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13621,39 +13806,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(83) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1435); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1705); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2007); + lookahead == 'i') ADVANCE(2022); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13664,39 +13849,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(84) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2045); + lookahead == 'a') ADVANCE(2060); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1792); + lookahead == 'o') ADVANCE(1806); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13707,37 +13892,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(85) if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2045); + lookahead == 'a') ADVANCE(2060); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1792); + lookahead == 'o') ADVANCE(1806); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13748,39 +13933,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(86) if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2007); + lookahead == 'i') ADVANCE(2022); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1689); + lookahead == 'n') ADVANCE(1703); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13791,37 +13976,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(87) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1434); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1650); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13832,35 +14017,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(88); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1434); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1650); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13871,35 +14056,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(89); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1437); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1648); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13910,33 +14095,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(90); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'N') ADVANCE(1437); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1648); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13947,45 +14132,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2149); + lookahead == 'a') ADVANCE(2167); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2088); + lookahead == 'c') ADVANCE(2106); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1708); + lookahead == 'k') ADVANCE(1722); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1483); + lookahead == 'l') ADVANCE(1495); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); + lookahead == 'n') ADVANCE(1699); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1515); + lookahead == 'p') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2089); + lookahead == 's') ADVANCE(2107); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -13996,43 +14181,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(92); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2149); + lookahead == 'a') ADVANCE(2167); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2088); + lookahead == 'c') ADVANCE(2106); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1708); + lookahead == 'k') ADVANCE(1722); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1483); + lookahead == 'l') ADVANCE(1495); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); + lookahead == 'n') ADVANCE(1699); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1515); + lookahead == 'p') ADVANCE(1528); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14043,43 +14228,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(93); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2149); + lookahead == 'a') ADVANCE(2167); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2088); + lookahead == 'c') ADVANCE(2106); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1708); + lookahead == 'k') ADVANCE(1722); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1483); + lookahead == 'l') ADVANCE(1495); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); + lookahead == 'n') ADVANCE(1699); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1515); + lookahead == 'p') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2089); + lookahead == 's') ADVANCE(2107); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14090,41 +14275,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(94); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2149); + lookahead == 'a') ADVANCE(2167); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2088); + lookahead == 'c') ADVANCE(2106); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1708); + lookahead == 'k') ADVANCE(1722); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1483); + lookahead == 'l') ADVANCE(1495); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); + lookahead == 'n') ADVANCE(1699); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1515); + lookahead == 'p') ADVANCE(1528); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14135,47 +14320,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(95); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2412); + lookahead == 'a') ADVANCE(2431); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1628); + lookahead == 'b') ADVANCE(1642); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2140); + lookahead == 'c') ADVANCE(2160); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1549); + lookahead == 'd') ADVANCE(1562); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1823); + lookahead == 'f') ADVANCE(1838); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2003); + lookahead == 'i') ADVANCE(2019); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1519); + lookahead == 'l') ADVANCE(1532); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1484); + lookahead == 'm') ADVANCE(1496); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1684); + lookahead == 'n') ADVANCE(1698); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1805); + lookahead == 'p') ADVANCE(1819); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1889); + lookahead == 's') ADVANCE(1903); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2132); + lookahead == 't') ADVANCE(2152); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14186,47 +14371,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(96); if (('H' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('h' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2412); + lookahead == 'a') ADVANCE(2431); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1628); + lookahead == 'b') ADVANCE(1642); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2140); + lookahead == 'c') ADVANCE(2160); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1549); + lookahead == 'd') ADVANCE(1562); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1824); + lookahead == 'f') ADVANCE(1839); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2003); + lookahead == 'i') ADVANCE(2019); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1519); + lookahead == 'l') ADVANCE(1532); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1484); + lookahead == 'm') ADVANCE(1496); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1684); + lookahead == 'n') ADVANCE(1698); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1805); + lookahead == 'p') ADVANCE(1819); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1889); + lookahead == 's') ADVANCE(1903); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2132); + lookahead == 't') ADVANCE(2152); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14237,39 +14422,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(97); if (('H' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('h' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2129); + lookahead == 'c') ADVANCE(2147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1641); + lookahead == 'l') ADVANCE(1655); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1686); + lookahead == 'n') ADVANCE(1700); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2089); + lookahead == 's') ADVANCE(2107); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14280,37 +14465,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(98); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2129); + lookahead == 'c') ADVANCE(2147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1641); + lookahead == 'l') ADVANCE(1655); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1686); + lookahead == 'n') ADVANCE(1700); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14321,37 +14506,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2129); + lookahead == 'c') ADVANCE(2147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1641); + lookahead == 'l') ADVANCE(1655); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1686); + lookahead == 'n') ADVANCE(1700); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2089); + lookahead == 's') ADVANCE(2107); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14362,35 +14547,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(100); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1629); + lookahead == 'b') ADVANCE(1643); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2129); + lookahead == 'c') ADVANCE(2147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1550); + lookahead == 'e') ADVANCE(1563); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1641); + lookahead == 'l') ADVANCE(1655); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1453); + lookahead == 'm') ADVANCE(1465); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1686); + lookahead == 'n') ADVANCE(1700); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2038); + lookahead == 'u') ADVANCE(2053); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14401,45 +14586,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(101); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); + lookahead == 'c') ADVANCE(2110); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1899); + lookahead == 'f') ADVANCE(1914); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1640); + lookahead == 'h') ADVANCE(1654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2031); + lookahead == 'i') ADVANCE(2047); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1520); + lookahead == 'l') ADVANCE(1533); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1690); + lookahead == 'n') ADVANCE(1704); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1761); + lookahead == 's') ADVANCE(1773); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1987); + lookahead == 'x') ADVANCE(2003); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14450,45 +14635,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(102); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); + lookahead == 'c') ADVANCE(2110); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1899); + lookahead == 'f') ADVANCE(1914); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1640); + lookahead == 'h') ADVANCE(1654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2086); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1520); + lookahead == 'l') ADVANCE(1533); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1690); + lookahead == 'n') ADVANCE(1704); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1761); + lookahead == 's') ADVANCE(1773); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1987); + lookahead == 'x') ADVANCE(2003); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14499,39 +14684,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(103); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); + lookahead == 'c') ADVANCE(2110); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2143); + lookahead == 'f') ADVANCE(2150); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2086); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1520); + lookahead == 'l') ADVANCE(1533); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1687); + lookahead == 'n') ADVANCE(1701); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14542,45 +14727,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(104); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); + lookahead == 'c') ADVANCE(2110); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1900); + lookahead == 'f') ADVANCE(1915); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1640); + lookahead == 'h') ADVANCE(1654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2031); + lookahead == 'i') ADVANCE(2047); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1520); + lookahead == 'l') ADVANCE(1533); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1690); + lookahead == 'n') ADVANCE(1704); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1761); + lookahead == 's') ADVANCE(1773); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1987); + lookahead == 'x') ADVANCE(2003); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14591,45 +14776,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(105); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); + lookahead == 'c') ADVANCE(2110); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1900); + lookahead == 'f') ADVANCE(1915); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1640); + lookahead == 'h') ADVANCE(1654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2086); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1520); + lookahead == 'l') ADVANCE(1533); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1690); + lookahead == 'n') ADVANCE(1704); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1761); + lookahead == 's') ADVANCE(1773); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1987); + lookahead == 'x') ADVANCE(2003); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14640,39 +14825,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(106); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); + lookahead == 'c') ADVANCE(2110); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2144); + lookahead == 'f') ADVANCE(2151); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2086); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1520); + lookahead == 'l') ADVANCE(1533); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1687); + lookahead == 'n') ADVANCE(1701); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14683,43 +14868,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(107); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1639); + lookahead == 'g') ADVANCE(1653); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2086); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1687); + lookahead == 'n') ADVANCE(1701); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1471); + lookahead == 'p') ADVANCE(1484); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1763); + lookahead == 's') ADVANCE(1775); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14730,41 +14915,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(108); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1737); + lookahead == 'd') ADVANCE(1750); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2178); + lookahead == 'e') ADVANCE(2196); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1639); + lookahead == 'g') ADVANCE(1653); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2086); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1687); + lookahead == 'n') ADVANCE(1701); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1471); + lookahead == 'p') ADVANCE(1484); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1763); + lookahead == 's') ADVANCE(1775); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14775,37 +14960,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(109); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14816,35 +15001,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(110); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14855,39 +15040,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(111); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); + lookahead == 'e') ADVANCE(2195); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); + lookahead == 'n') ADVANCE(1702); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); + lookahead == 's') ADVANCE(1860); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 'u') ADVANCE(2304); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14898,37 +15083,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(112); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); + lookahead == 'e') ADVANCE(2195); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); + lookahead == 'n') ADVANCE(1702); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1845); + lookahead == 's') ADVANCE(1860); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2285); + lookahead == 'u') ADVANCE(2304); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -14939,39 +15124,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(113); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'B') ADVANCE(1446); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'b') ADVANCE(1645); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2005); + lookahead == 'e') ADVANCE(2073); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1846); + lookahead == 'w') ADVANCE(1861); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14982,37 +15167,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(114) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'B') ADVANCE(1446); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'b') ADVANCE(1645); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2005); + lookahead == 'e') ADVANCE(2073); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1846); + lookahead == 'w') ADVANCE(1861); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15023,43 +15208,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(115) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'B') ADVANCE(1446); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'b') ADVANCE(1645); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2369); + lookahead == 's') ADVANCE(2387); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); + lookahead == 't') ADVANCE(2222); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1847); + lookahead == 'w') ADVANCE(1862); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15070,41 +15255,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(116) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == 'B') ADVANCE(1446); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'b') ADVANCE(1645); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2369); + lookahead == 's') ADVANCE(2387); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); + lookahead == 't') ADVANCE(2222); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1847); + lookahead == 'w') ADVANCE(1862); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15115,39 +15300,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(117) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2005); + lookahead == 'e') ADVANCE(2073); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1856); + lookahead == 'w') ADVANCE(1871); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15158,37 +15343,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(118) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2005); + lookahead == 'e') ADVANCE(2073); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1856); + lookahead == 'w') ADVANCE(1871); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15199,41 +15384,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(119) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2369); + lookahead == 's') ADVANCE(2387); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); + lookahead == 't') ADVANCE(2222); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15244,37 +15429,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(120) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15285,39 +15470,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(121) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2369); + lookahead == 's') ADVANCE(2387); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); + lookahead == 't') ADVANCE(2222); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15328,35 +15513,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(122) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15367,34 +15552,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(123) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1931); + lookahead == 'e') ADVANCE(1947); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15405,32 +15590,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(124) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1931); + lookahead == 'e') ADVANCE(1947); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15441,38 +15626,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(125) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2081); + lookahead == 't') ADVANCE(2099); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15483,36 +15668,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(126) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2081); + lookahead == 't') ADVANCE(2099); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15523,36 +15708,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(127) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1840); + lookahead == 't') ADVANCE(1855); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15563,36 +15748,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(128) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2081); + lookahead == 't') ADVANCE(2099); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1841); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15603,34 +15788,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(129) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2081); + lookahead == 't') ADVANCE(2099); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15641,34 +15826,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(130) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); 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 == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == '-') ADVANCE(2509); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1631); + lookahead == 'b') ADVANCE(1645); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2127); + lookahead == 'c') ADVANCE(2145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2179); + lookahead == 'e') ADVANCE(2197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1692); + lookahead == 'g') ADVANCE(1706); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1642); + lookahead == 'l') ADVANCE(1656); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1485); + lookahead == 'm') ADVANCE(1497); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1705); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1840); + lookahead == 't') ADVANCE(1855); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15679,25 +15864,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(131) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 132: - if (lookahead == '*') ADVANCE(1345); + if (lookahead == '*') ADVANCE(1358); if (lookahead == '.') ADVANCE(251); - if (lookahead == '/') ADVANCE(1338); + if (lookahead == '/') ADVANCE(1351); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(193); END_STATE(); case 133: - if (lookahead == '*') ADVANCE(1345); - if (lookahead == '/') ADVANCE(1336); + if (lookahead == '*') ADVANCE(1358); + if (lookahead == '/') ADVANCE(1349); END_STATE(); case 134: - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead == '/') ADVANCE(136); if (lookahead == '\\') ADVANCE(24); - if (lookahead == '{') ADVANCE(1352); + if (lookahead == '{') ADVANCE(1365); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15709,22 +15894,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(135); END_STATE(); case 135: - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0) ADVANCE(135); END_STATE(); case 136: - if (lookahead == '*') ADVANCE(1346); - if (lookahead == '/') ADVANCE(1337); + if (lookahead == '*') ADVANCE(1359); + if (lookahead == '/') ADVANCE(1350); if (lookahead != 0) ADVANCE(135); END_STATE(); case 137: - if (lookahead == ',') ADVANCE(2468); + if (lookahead == ',') ADVANCE(2487); if (lookahead == '/') ADVANCE(133); - if (lookahead == ':') ADVANCE(1333); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15736,19 +15921,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 138: - if (lookahead == ',') ADVANCE(2468); + if (lookahead == ',') ADVANCE(2487); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2007); + lookahead == 'i') ADVANCE(2022); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15760,203 +15945,201 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 139: if (lookahead == '-') ADVANCE(223); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 140: if (lookahead == '-') ADVANCE(268); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 141: - if (lookahead == '-') ADVANCE(707); + if (lookahead == '-') ADVANCE(711); END_STATE(); case 142: - if (lookahead == '-') ADVANCE(443); + if (lookahead == '-') ADVANCE(449); END_STATE(); case 143: - if (lookahead == '-') ADVANCE(1092); + if (lookahead == '-') ADVANCE(1100); END_STATE(); case 144: - if (lookahead == '-') ADVANCE(1092); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(591); + if (lookahead == '-') ADVANCE(912); END_STATE(); case 145: - if (lookahead == '-') ADVANCE(902); + if (lookahead == '-') ADVANCE(690); END_STATE(); case 146: - if (lookahead == '-') ADVANCE(684); + if (lookahead == '-') ADVANCE(224); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); END_STATE(); case 147: - if (lookahead == '-') ADVANCE(224); + if (lookahead == '-') ADVANCE(384); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 148: - if (lookahead == '-') ADVANCE(380); + if (lookahead == '-') ADVANCE(227); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 149: - if (lookahead == '-') ADVANCE(227); + if (lookahead == '-') ADVANCE(422); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 150: - if (lookahead == '-') ADVANCE(418); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + if (lookahead == '-') ADVANCE(318); END_STATE(); case 151: - if (lookahead == '-') ADVANCE(317); + if (lookahead == '-') ADVANCE(617); END_STATE(); case 152: - if (lookahead == '-') ADVANCE(611); + if (lookahead == '-') ADVANCE(219); END_STATE(); case 153: - if (lookahead == '-') ADVANCE(219); + if (lookahead == '-') ADVANCE(226); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); END_STATE(); case 154: - if (lookahead == '-') ADVANCE(419); + if (lookahead == '-') ADVANCE(424); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 155: - if (lookahead == '-') ADVANCE(582); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(187); + if (lookahead == '-') ADVANCE(587); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + lookahead == 't') ADVANCE(2500); END_STATE(); case 156: if (lookahead == '-') ADVANCE(225); END_STATE(); case 157: - if (lookahead == '-') ADVANCE(1086); + if (lookahead == '-') ADVANCE(1093); END_STATE(); case 158: - if (lookahead == '-') ADVANCE(226); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + if (lookahead == '-') ADVANCE(386); END_STATE(); case 159: - if (lookahead == '-') ADVANCE(382); + if (lookahead == '-') ADVANCE(423); END_STATE(); case 160: - if (lookahead == '-') ADVANCE(420); + if (lookahead == '-') ADVANCE(358); END_STATE(); case 161: - if (lookahead == '-') ADVANCE(354); + if (lookahead == '-') ADVANCE(642); END_STATE(); case 162: - if (lookahead == '-') ADVANCE(654); + if (lookahead == '-') ADVANCE(660); END_STATE(); case 163: - if (lookahead == '-') ADVANCE(636); + if (lookahead == '-') ADVANCE(442); END_STATE(); case 164: - if (lookahead == '-') ADVANCE(436); + if (lookahead == '-') ADVANCE(761); END_STATE(); case 165: - if (lookahead == '-') ADVANCE(688); + if (lookahead == '-') ADVANCE(694); END_STATE(); case 166: - if (lookahead == '-') ADVANCE(1017); + if (lookahead == '-') ADVANCE(1026); END_STATE(); case 167: - if (lookahead == '-') ADVANCE(270); + if (lookahead == '-') ADVANCE(803); END_STATE(); case 168: - if (lookahead == '-') ADVANCE(793); + if (lookahead == '-') ADVANCE(1255); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(187); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); END_STATE(); case 169: - if (lookahead == '-') ADVANCE(1244); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + if (lookahead == '-') ADVANCE(1034); END_STATE(); case 170: - if (lookahead == '-') ADVANCE(1025); + if (lookahead == '-') ADVANCE(270); END_STATE(); case 171: - if (lookahead == '-') ADVANCE(1021); + if (lookahead == '-') ADVANCE(1030); END_STATE(); case 172: - if (lookahead == '-') ADVANCE(1028); + if (lookahead == '-') ADVANCE(1037); END_STATE(); case 173: - if (lookahead == '-') ADVANCE(1186); + if (lookahead == '-') ADVANCE(1197); END_STATE(); case 174: - if (lookahead == '-') ADVANCE(1223); + if (lookahead == '-') ADVANCE(1145); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(596); END_STATE(); case 175: - if (lookahead == '-') ADVANCE(1065); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(980); + if (lookahead == '-') ADVANCE(1234); END_STATE(); case 176: - if (lookahead == '-') ADVANCE(755); + if (lookahead == '-') ADVANCE(1099); END_STATE(); case 177: - if (lookahead == '-') ADVANCE(791); + if (lookahead == '-') ADVANCE(1072); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(989); END_STATE(); case 178: - if (lookahead == '-') ADVANCE(791); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2524); + if (lookahead == '-') ADVANCE(799); END_STATE(); case 179: - if (lookahead == '-') ADVANCE(1136); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2613); + if (lookahead == '-') ADVANCE(714); END_STATE(); case 180: - if (lookahead == '-') ADVANCE(1141); + if (lookahead == '-') ADVANCE(1146); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2632); END_STATE(); case 181: - if (lookahead == '-') ADVANCE(842); + if (lookahead == '-') ADVANCE(1151); END_STATE(); case 182: - if (lookahead == '-') ADVANCE(709); + if (lookahead == '-') ADVANCE(851); END_STATE(); case 183: - if (lookahead == '-') ADVANCE(792); + if (lookahead == '-') ADVANCE(800); END_STATE(); case 184: - if (lookahead == '-') ADVANCE(1240); + if (lookahead == '-') ADVANCE(1251); END_STATE(); case 185: - if (lookahead == '-') ADVANCE(716); + if (lookahead == '-') ADVANCE(722); END_STATE(); case 186: - if (lookahead == '-') ADVANCE(958); + if (lookahead == '-') ADVANCE(966); END_STATE(); case 187: - if (lookahead == '-') ADVANCE(1148); + if (lookahead == '-') ADVANCE(1158); END_STATE(); case 188: - if (lookahead == '-') ADVANCE(581); + if (lookahead == '-') ADVANCE(586); END_STATE(); case 189: - if (lookahead == '-') ADVANCE(416); + if (lookahead == '-') ADVANCE(420); END_STATE(); case 190: - if (lookahead == '-') ADVANCE(1242); + if (lookahead == '-') ADVANCE(1253); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(747); + lookahead == 'f') ADVANCE(753); END_STATE(); case 191: - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); - if (lookahead == 'N') ADVANCE(1423); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == 'n') ADVANCE(1715); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'N') ADVANCE(1436); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == 'n') ADVANCE(1729); + if (lookahead == '{') ADVANCE(1364); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -15968,15 +16151,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 192: - if (lookahead == '.') ADVANCE(2460); + if (lookahead == '.') ADVANCE(2479); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2411); + lookahead == 'q') ADVANCE(2430); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -15988,7 +16171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 193: if (lookahead == '.') ADVANCE(251); @@ -15998,17 +16181,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 194: if (lookahead == '/') ADVANCE(133); - if (lookahead == ':') ADVANCE(1333); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2006); + lookahead == 'e') ADVANCE(2074); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1846); + lookahead == 'w') ADVANCE(1861); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16020,19 +16203,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 195: if (lookahead == '/') ADVANCE(133); - if (lookahead == ':') ADVANCE(1333); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2006); + lookahead == 'e') ADVANCE(2074); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1856); + lookahead == 'w') ADVANCE(1871); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16044,17 +16227,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 196: if (lookahead == '/') ADVANCE(133); - if (lookahead == ':') ADVANCE(1333); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2006); + lookahead == 'e') ADVANCE(2074); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1856); + lookahead == 'w') ADVANCE(1871); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16066,23 +16249,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 197: if (lookahead == '/') ADVANCE(133); - if (lookahead == ':') ADVANCE(1333); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2009); + lookahead == 'o') ADVANCE(2024); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2369); + lookahead == 's') ADVANCE(2387); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); + lookahead == 't') ADVANCE(2222); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1847); + lookahead == 'w') ADVANCE(1862); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16094,30 +16277,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 198: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1533); + lookahead == 'a') ADVANCE(1546); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1945); + lookahead == 'c') ADVANCE(1962); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1886); + lookahead == 'f') ADVANCE(1904); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1933); + lookahead == 'g') ADVANCE(1948); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2418); + lookahead == 'o') ADVANCE(2437); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1471); + lookahead == 'p') ADVANCE(1484); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1848); + lookahead == 's') ADVANCE(1863); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2090); + lookahead == 'v') ADVANCE(2108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16129,34 +16312,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('b' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 199: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1440); + lookahead == 'c') ADVANCE(1454); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1716); + lookahead == 'd') ADVANCE(1730); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1930); + lookahead == 'e') ADVANCE(1945); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1873); + lookahead == 'f') ADVANCE(1896); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2027); + lookahead == 'i') ADVANCE(2043); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2008); + lookahead == 'o') ADVANCE(2023); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2223); + lookahead == 'p') ADVANCE(2241); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1699); + lookahead == 'r') ADVANCE(1713); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2054); + lookahead == 'u') ADVANCE(2069); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1482); + lookahead == 'v') ADVANCE(1494); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16168,34 +16351,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 200: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1440); + lookahead == 'c') ADVANCE(1454); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1716); + lookahead == 'd') ADVANCE(1730); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2006); + lookahead == 'e') ADVANCE(2021); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1873); + lookahead == 'f') ADVANCE(1896); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2027); + lookahead == 'i') ADVANCE(2043); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2008); + lookahead == 'o') ADVANCE(2023); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2223); + lookahead == 'p') ADVANCE(2241); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1699); + lookahead == 'r') ADVANCE(1713); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2054); + lookahead == 'u') ADVANCE(2069); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1482); + lookahead == 'v') ADVANCE(1494); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16207,24 +16390,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 201: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1945); + lookahead == 'c') ADVANCE(1962); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1933); + lookahead == 'g') ADVANCE(1948); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1714); + lookahead == 'n') ADVANCE(1728); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1471); + lookahead == 'p') ADVANCE(1484); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1786); + lookahead == 's') ADVANCE(1800); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2090); + lookahead == 'v') ADVANCE(2108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16236,16 +16419,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 202: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1945); + lookahead == 'c') ADVANCE(1962); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2090); + lookahead == 'v') ADVANCE(2108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16257,14 +16440,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 203: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1945); + lookahead == 'c') ADVANCE(1962); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16276,18 +16459,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 204: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1901); + lookahead == 'f') ADVANCE(1916); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2007); + lookahead == 'i') ADVANCE(2022); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16299,16 +16482,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 205: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1901); + lookahead == 'f') ADVANCE(1916); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16320,16 +16503,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 206: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2080); + lookahead == 'd') ADVANCE(2098); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16341,16 +16524,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 207: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16362,14 +16545,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 208: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1509); + lookahead == 'd') ADVANCE(1522); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16381,18 +16564,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 209: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1442); + lookahead == 'e') ADVANCE(1456); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1876); + lookahead == 'f') ADVANCE(1890); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1500); + lookahead == 'l') ADVANCE(1513); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16404,18 +16587,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 210: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1876); + lookahead == 'f') ADVANCE(1890); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1500); + lookahead == 'l') ADVANCE(1513); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1765); + lookahead == 'n') ADVANCE(1777); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16427,16 +16610,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 211: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1876); + lookahead == 'f') ADVANCE(1890); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1500); + lookahead == 'l') ADVANCE(1513); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16448,14 +16631,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 212: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2240); + lookahead == 'f') ADVANCE(2259); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16467,20 +16650,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 213: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1933); + lookahead == 'g') ADVANCE(1948); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1471); + lookahead == 'p') ADVANCE(1484); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1848); + lookahead == 's') ADVANCE(1863); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16492,14 +16675,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 214: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1471); + lookahead == 'p') ADVANCE(1484); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16511,14 +16694,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 215: if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1696); + lookahead == 't') ADVANCE(1710); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16530,12 +16713,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); case 216: if (lookahead == '/') ADVANCE(132); - if (lookahead == '\\') ADVANCE(23); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(21); + if (lookahead == '{') ADVANCE(1364); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16549,94 +16732,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= '|')) ADVANCE(193); END_STATE(); case 217: - if (lookahead == '/') ADVANCE(1326); + if (lookahead == '/') ADVANCE(1339); END_STATE(); case 218: - if (lookahead == '/') ADVANCE(1326); + if (lookahead == '/') ADVANCE(1339); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(217); END_STATE(); case 219: - if (lookahead == '3') ADVANCE(458); + if (lookahead == '3') ADVANCE(464); END_STATE(); case 220: if (lookahead == 'C') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1048); + lookahead == 'e') ADVANCE(1056); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(275); + lookahead == 'h') ADVANCE(276); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(663); + lookahead == 'i') ADVANCE(669); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1246); + lookahead == 'o') ADVANCE(1256); if (lookahead == 'T' || - lookahead == 't') ADVANCE(936); + lookahead == 't') ADVANCE(945); END_STATE(); case 221: if (lookahead == 'C') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1067); + lookahead == 'e') ADVANCE(1075); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1319); + lookahead == 'i') ADVANCE(1332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(935); + lookahead == 't') ADVANCE(944); END_STATE(); case 222: if (lookahead == 'C') ADVANCE(242); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1319); + lookahead == 'i') ADVANCE(1332); END_STATE(); case 223: if (lookahead == 'E') ADVANCE(244); - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'e') ADVANCE(409); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1012); + lookahead == 'a') ADVANCE(1021); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(947); + lookahead == 'c') ADVANCE(955); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(941); + lookahead == 'l') ADVANCE(951); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(276); + lookahead == 'm') ADVANCE(277); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(892); + lookahead == 'u') ADVANCE(897); if (lookahead == 'W' || lookahead == 'w') ADVANCE(309); END_STATE(); case 224: if (lookahead == 'E') ADVANCE(249); - if (lookahead == 'e') ADVANCE(404); + if (lookahead == 'e') ADVANCE(408); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(947); + lookahead == 'c') ADVANCE(955); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(276); + lookahead == 'm') ADVANCE(277); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(892); + lookahead == 'u') ADVANCE(897); END_STATE(); case 225: if (lookahead == 'E') ADVANCE(248); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(998); + lookahead == 'c') ADVANCE(1008); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(952); + lookahead == 'f') ADVANCE(961); END_STATE(); case 226: if (lookahead == 'E') ADVANCE(248); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1008); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(961); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(892); + lookahead == 'u') ADVANCE(897); END_STATE(); case 227: if (lookahead == 'E') ADVANCE(243); - if (lookahead == 'e') ADVANCE(1101); + if (lookahead == 'e') ADVANCE(1109); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(998); + lookahead == 'c') ADVANCE(1008); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(952); + lookahead == 'f') ADVANCE(961); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(941); + lookahead == 'l') ADVANCE(951); if (lookahead == 'W' || lookahead == 'w') ADVANCE(309); END_STATE(); case 228: - if (lookahead == 'G') ADVANCE(2542); + if (lookahead == 'G') ADVANCE(2561); END_STATE(); case 229: if (lookahead == 'I') ADVANCE(232); @@ -16654,9 +16841,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O') ADVANCE(139); if (lookahead == 'o') ADVANCE(140); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + lookahead == 'e') ADVANCE(2519); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(831); + lookahead == 'u') ADVANCE(839); END_STATE(); case 234: if (lookahead == 'O') ADVANCE(231); @@ -16666,57 +16853,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 236: if (lookahead == 'O') ADVANCE(241); - if (lookahead == 'o') ADVANCE(1042); + if (lookahead == 'o') ADVANCE(1050); END_STATE(); case 237: - if (lookahead == 'O') ADVANCE(147); - if (lookahead == 'o') ADVANCE(148); + if (lookahead == 'O') ADVANCE(146); + if (lookahead == 'o') ADVANCE(147); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + lookahead == 'e') ADVANCE(2519); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(831); + lookahead == 'u') ADVANCE(839); END_STATE(); case 238: - if (lookahead == 'O') ADVANCE(149); - if (lookahead == 'o') ADVANCE(150); + if (lookahead == 'O') ADVANCE(148); + if (lookahead == 'o') ADVANCE(149); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + lookahead == 'e') ADVANCE(2519); END_STATE(); case 239: - if (lookahead == 'O') ADVANCE(158); - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'O') ADVANCE(153); + if (lookahead == 'o') ADVANCE(154); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + lookahead == 'e') ADVANCE(2519); END_STATE(); case 240: if (lookahead == 'O') ADVANCE(156); - if (lookahead == 'o') ADVANCE(160); + if (lookahead == 'o') ADVANCE(159); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + lookahead == 'e') ADVANCE(2519); END_STATE(); case 241: - if (lookahead == 'R') ADVANCE(2558); - if (lookahead == 'r') ADVANCE(2558); + if (lookahead == 'R') ADVANCE(2577); + if (lookahead == 'r') ADVANCE(2577); END_STATE(); case 242: if (lookahead == 'R') ADVANCE(234); END_STATE(); case 243: if (lookahead == 'R') ADVANCE(245); - if (lookahead == 'r') ADVANCE(1090); + if (lookahead == 'r') ADVANCE(1097); END_STATE(); case 244: if (lookahead == 'R') ADVANCE(245); - if (lookahead == 'r') ADVANCE(1090); + if (lookahead == 'r') ADVANCE(1097); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(676); + lookahead == 'c') ADVANCE(682); END_STATE(); case 245: if (lookahead == 'R') ADVANCE(236); - if (lookahead == 'r') ADVANCE(964); + if (lookahead == 'r') ADVANCE(973); END_STATE(); case 246: - if (lookahead == 'R') ADVANCE(2590); + if (lookahead == 'R') ADVANCE(2609); END_STATE(); case 247: if (lookahead == 'R') ADVANCE(235); @@ -16727,1611 +16914,1613 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 249: if (lookahead == 'R') ADVANCE(247); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(676); + lookahead == 'c') ADVANCE(682); END_STATE(); case 250: - if (lookahead == 'Y') ADVANCE(2629); + if (lookahead == 'Y') ADVANCE(2648); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(649); + lookahead == 'e') ADVANCE(654); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(914); + lookahead == 'i') ADVANCE(923); END_STATE(); case 251: - if (lookahead == 'i') ADVANCE(1335); + if (lookahead == 'i') ADVANCE(1348); END_STATE(); case 252: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(397); + lookahead == 'a') ADVANCE(401); if (lookahead == 'L' || lookahead == 'l') ADVANCE(265); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(771); + lookahead == 'o') ADVANCE(778); END_STATE(); case 253: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1184); + lookahead == 'a') ADVANCE(1195); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'e') ADVANCE(403); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2631); + lookahead == 'o') ADVANCE(2650); END_STATE(); case 254: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(376); + lookahead == 'a') ADVANCE(380); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(673); + lookahead == 'c') ADVANCE(679); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(701); + lookahead == 'd') ADVANCE(708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1133); + lookahead == 'l') ADVANCE(1142); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(422); + lookahead == 'n') ADVANCE(427); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); + lookahead == 'q') ADVANCE(2521); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1056); + lookahead == 'r') ADVANCE(1063); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(371); + lookahead == 'x') ADVANCE(375); END_STATE(); case 255: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(360); + lookahead == 'a') ADVANCE(363); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2499); + lookahead == 'e') ADVANCE(2518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(762); + lookahead == 'i') ADVANCE(769); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(351); + lookahead == 'o') ADVANCE(355); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2498); + lookahead == 't') ADVANCE(2517); END_STATE(); case 256: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(999); + lookahead == 'a') ADVANCE(1009); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1217); + lookahead == 'e') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(433); + lookahead == 'o') ADVANCE(439); END_STATE(); case 257: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(999); + lookahead == 'a') ADVANCE(1009); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(433); + lookahead == 'o') ADVANCE(439); END_STATE(); case 258: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(651); + lookahead == 'a') ADVANCE(657); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1095); + lookahead == 'o') ADVANCE(1103); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(703); + lookahead == 'r') ADVANCE(710); END_STATE(); case 259: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(359); + lookahead == 'a') ADVANCE(362); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2499); + lookahead == 'e') ADVANCE(2518); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(351); + lookahead == 'o') ADVANCE(355); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2498); + lookahead == 't') ADVANCE(2517); END_STATE(); case 260: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1221); + lookahead == 'a') ADVANCE(1231); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(917); + lookahead == 'i') ADVANCE(926); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(434); + lookahead == 'o') ADVANCE(440); END_STATE(); case 261: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(144); + lookahead == 'a') ADVANCE(174); END_STATE(); case 262: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(361); + lookahead == 'a') ADVANCE(364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); + lookahead == 'e') ADVANCE(145); END_STATE(); case 263: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(652); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(798); + lookahead == 'a') ADVANCE(655); END_STATE(); case 264: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(888); + lookahead == 'a') ADVANCE(894); END_STATE(); case 265: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1130); + lookahead == 'a') ADVANCE(1139); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1138); + lookahead == 'o') ADVANCE(1149); END_STATE(); case 266: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(362); + lookahead == 'a') ADVANCE(366); END_STATE(); case 267: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(839); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(825); + lookahead == 'a') ADVANCE(658); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(804); END_STATE(); case 268: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1012); + lookahead == 'a') ADVANCE(1021); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(947); + lookahead == 'c') ADVANCE(955); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(405); + lookahead == 'e') ADVANCE(409); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(941); + lookahead == 'l') ADVANCE(951); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(276); + lookahead == 'm') ADVANCE(277); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(892); + lookahead == 'u') ADVANCE(897); if (lookahead == 'W' || lookahead == 'w') ADVANCE(309); END_STATE(); case 269: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1089); + lookahead == 'a') ADVANCE(1098); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(527); + lookahead == 'h') ADVANCE(532); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2615); + lookahead == 'o') ADVANCE(2634); if (lookahead == 'R' || lookahead == 'r') ADVANCE(264); END_STATE(); case 270: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(643); + lookahead == 'a') ADVANCE(648); END_STATE(); case 271: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(765); + lookahead == 'a') ADVANCE(848); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(833); END_STATE(); case 272: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(757); + lookahead == 'a') ADVANCE(772); END_STATE(); case 273: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1299); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(921); + lookahead == 'a') ADVANCE(764); END_STATE(); case 274: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(386); + lookahead == 'a') ADVANCE(1312); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(930); END_STATE(); case 275: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1068); + lookahead == 'a') ADVANCE(389); END_STATE(); case 276: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1006); + lookahead == 'a') ADVANCE(1076); END_STATE(); case 277: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(411); + lookahead == 'a') ADVANCE(1015); END_STATE(); case 278: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(143); + lookahead == 'a') ADVANCE(415); END_STATE(); case 279: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(833); + lookahead == 'a') ADVANCE(143); END_STATE(); case 280: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1050); + lookahead == 'a') ADVANCE(1058); END_STATE(); case 281: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(785); + lookahead == 'a') ADVANCE(796); END_STATE(); case 282: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(834); + lookahead == 'a') ADVANCE(841); END_STATE(); case 283: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1219); + lookahead == 'a') ADVANCE(1229); END_STATE(); case 284: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1210); + lookahead == 'a') ADVANCE(842); END_STATE(); case 285: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(790); + lookahead == 'a') ADVANCE(1219); END_STATE(); case 286: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(773); + lookahead == 'a') ADVANCE(798); END_STATE(); case 287: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1176); + lookahead == 'a') ADVANCE(780); END_STATE(); case 288: if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(1186); END_STATE(); case 289: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(381); + lookahead == 'a') ADVANCE(385); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(418); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(697); + lookahead == 'r') ADVANCE(703); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(357); + lookahead == 'u') ADVANCE(365); END_STATE(); case 290: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(381); + lookahead == 'a') ADVANCE(385); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(696); + lookahead == 'r') ADVANCE(703); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(357); + lookahead == 'u') ADVANCE(365); END_STATE(); case 291: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(173); + lookahead == 'a') ADVANCE(385); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(702); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(365); END_STATE(); case 292: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(832); + lookahead == 'a') ADVANCE(173); END_STATE(); case 293: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1054); + lookahead == 'a') ADVANCE(1061); END_STATE(); case 294: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(795); + lookahead == 'a') ADVANCE(801); END_STATE(); case 295: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); + lookahead == 'a') ADVANCE(840); END_STATE(); case 296: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(774); + lookahead == 'a') ADVANCE(781); END_STATE(); case 297: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(768); + lookahead == 'a') ADVANCE(775); END_STATE(); case 298: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1203); + lookahead == 'a') ADVANCE(819); END_STATE(); case 299: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(767); + lookahead == 'a') ADVANCE(176); END_STATE(); case 300: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(796); + lookahead == 'a') ADVANCE(1212); END_STATE(); case 301: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1070); + lookahead == 'a') ADVANCE(774); END_STATE(); case 302: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(815); + lookahead == 'a') ADVANCE(1078); END_STATE(); case 303: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1071); + lookahead == 'a') ADVANCE(1080); END_STATE(); case 304: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1049); + lookahead == 'a') ADVANCE(1057); END_STATE(); case 305: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1220); + lookahead == 'a') ADVANCE(1230); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(434); + lookahead == 'o') ADVANCE(439); END_STATE(); case 306: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1220); + lookahead == 'a') ADVANCE(1230); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(433); + lookahead == 'o') ADVANCE(440); END_STATE(); case 307: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1165); + lookahead == 'a') ADVANCE(1175); END_STATE(); case 308: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1022); + lookahead == 'a') ADVANCE(1031); END_STATE(); case 309: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(712); + lookahead == 'a') ADVANCE(718); END_STATE(); case 310: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1257); + lookahead == 'a') ADVANCE(1267); END_STATE(); case 311: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1188); + lookahead == 'a') ADVANCE(1199); END_STATE(); case 312: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(390); + lookahead == 'a') ADVANCE(394); END_STATE(); case 313: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1189); + lookahead == 'a') ADVANCE(1200); END_STATE(); case 314: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1207); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'a') ADVANCE(821); END_STATE(); case 315: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(899); + lookahead == 'a') ADVANCE(1217); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(402); END_STATE(); case 316: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(718); + lookahead == 'a') ADVANCE(904); END_STATE(); case 317: if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(723); END_STATE(); case 318: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(656); + lookahead == 'a') ADVANCE(1301); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(963); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(274); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(993); END_STATE(); case 319: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(843); + lookahead == 'a') ADVANCE(662); END_STATE(); case 320: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1213); + lookahead == 'a') ADVANCE(852); END_STATE(); case 321: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(396); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(812); + lookahead == 'a') ADVANCE(805); END_STATE(); case 322: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(396); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(816); + lookahead == 'a') ADVANCE(1223); END_STATE(); case 323: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(650); + lookahead == 'a') ADVANCE(400); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1095); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(951); + lookahead == 'o') ADVANCE(820); END_STATE(); case 324: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(844); + lookahead == 'a') ADVANCE(400); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(823); END_STATE(); case 325: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1202); + lookahead == 'a') ADVANCE(656); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1103); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(605); + lookahead == 'r') ADVANCE(960); END_STATE(); case 326: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1281); + lookahead == 'a') ADVANCE(853); END_STATE(); case 327: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(657); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(798); + lookahead == 'a') ADVANCE(1213); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(610); END_STATE(); case 328: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1215); + lookahead == 'a') ADVANCE(1293); END_STATE(); case 329: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(658); + lookahead == 'a') ADVANCE(663); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(804); END_STATE(); case 330: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1085); + lookahead == 'a') ADVANCE(1225); END_STATE(); case 331: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1145); + lookahead == 'a') ADVANCE(664); END_STATE(); case 332: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(660); + lookahead == 'a') ADVANCE(1094); END_STATE(); case 333: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(661); + lookahead == 'a') ADVANCE(1155); END_STATE(); case 334: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(662); + lookahead == 'a') ADVANCE(666); END_STATE(); case 335: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1218); + lookahead == 'a') ADVANCE(667); END_STATE(); case 336: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(363); + lookahead == 'a') ADVANCE(668); END_STATE(); case 337: if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(1228); END_STATE(); case 338: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(358); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2499); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2498); + lookahead == 'a') ADVANCE(367); END_STATE(); case 339: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(358); + lookahead == 'a') ADVANCE(361); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(326); + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(769); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); END_STATE(); case 340: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(733); + lookahead == 'a') ADVANCE(361); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); END_STATE(); case 341: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(733); + lookahead == 'a') ADVANCE(361); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1298); + lookahead == 'e') ADVANCE(328); END_STATE(); case 342: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1099); + lookahead == 'a') ADVANCE(739); END_STATE(); case 343: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(364); + lookahead == 'a') ADVANCE(739); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1311); END_STATE(); case 344: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1234); + lookahead == 'a') ADVANCE(1107); END_STATE(); case 345: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(365); + lookahead == 'a') ADVANCE(1233); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(403); END_STATE(); case 346: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1237); + lookahead == 'a') ADVANCE(368); END_STATE(); case 347: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(367); + lookahead == 'a') ADVANCE(1245); END_STATE(); case 348: - if (lookahead == 'B' || - 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); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(369); END_STATE(); case 349: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1131); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(421); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1248); END_STATE(); case 350: - if (lookahead == 'B' || - 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); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(370); END_STATE(); case 351: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(164); + lookahead == 'b') ADVANCE(1140); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1323); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1020); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2497); END_STATE(); case 352: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1243); + lookahead == 'b') ADVANCE(1140); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(425); END_STATE(); case 353: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1243); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(928); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1033); + lookahead == 'b') ADVANCE(1140); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(425); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1215); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(584); END_STATE(); case 354: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1259); + lookahead == 'b') ADVANCE(1140); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1020); END_STATE(); case 355: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(151); + lookahead == 'b') ADVANCE(163); END_STATE(); case 356: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(784); + lookahead == 'b') ADVANCE(1254); END_STATE(); case 357: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(794); + lookahead == 'b') ADVANCE(1254); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(937); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1041); END_STATE(); case 358: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(544); + lookahead == 'b') ADVANCE(1270); END_STATE(); case 359: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(544); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(435); + lookahead == 'b') ADVANCE(150); END_STATE(); case 360: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(544); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(435); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1157); + lookahead == 'b') ADVANCE(791); END_STATE(); case 361: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(802); + lookahead == 'b') ADVANCE(546); END_STATE(); case 362: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(561); + lookahead == 'b') ADVANCE(546); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(441); END_STATE(); case 363: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(804); + lookahead == 'b') ADVANCE(546); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(441); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1167); END_STATE(); case 364: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(806); + lookahead == 'b') ADVANCE(810); END_STATE(); case 365: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(807); + lookahead == 'b') ADVANCE(802); END_STATE(); case 366: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(299); + lookahead == 'b') ADVANCE(562); END_STATE(); case 367: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(808); + lookahead == 'b') ADVANCE(812); END_STATE(); case 368: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2525); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(814); END_STATE(); case 369: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2528); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(815); END_STATE(); case 370: - if (lookahead == 'C' || - 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); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(816); END_STATE(); case 371: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(543); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(301); END_STATE(); case 372: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(942); + lookahead == 'c') ADVANCE(2544); END_STATE(); case 373: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(942); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(638); + lookahead == 'c') ADVANCE(2547); END_STATE(); case 374: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(942); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1027); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1290); + lookahead == 'c') ADVANCE(679); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1142); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(426); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1201); END_STATE(); case 375: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(758); + lookahead == 'c') ADVANCE(545); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(548); END_STATE(); case 376: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(668); + lookahead == 'c') ADVANCE(948); END_STATE(); case 377: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(759); + lookahead == 'c') ADVANCE(948); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(643); END_STATE(); case 378: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(760); + lookahead == 'c') ADVANCE(948); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1036); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1303); END_STATE(); case 379: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(670); + lookahead == 'c') ADVANCE(765); END_STATE(); case 380: if (lookahead == 'C' || - 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); + lookahead == 'c') ADVANCE(674); END_STATE(); case 381: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(764); + lookahead == 'c') ADVANCE(766); END_STATE(); case 382: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(948); + lookahead == 'c') ADVANCE(767); END_STATE(); case 383: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(686); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(704); + lookahead == 'c') ADVANCE(676); END_STATE(); case 384: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(683); + lookahead == 'c') ADVANCE(955); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(408); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(277); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(897); END_STATE(); case 385: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(308); + lookahead == 'c') ADVANCE(771); END_STATE(); case 386: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1170); + lookahead == 'c') ADVANCE(956); END_STATE(); case 387: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1222); + lookahead == 'c') ADVANCE(692); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(709); END_STATE(); case 388: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(777); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + lookahead == 'c') ADVANCE(689); END_STATE(); case 389: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(471); + lookahead == 'c') ADVANCE(1180); END_STATE(); case 390: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(498); + lookahead == 'c') ADVANCE(308); END_STATE(); case 391: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(567); + lookahead == 'c') ADVANCE(1232); END_STATE(); case 392: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(489); + lookahead == 'c') ADVANCE(784); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(548); END_STATE(); case 393: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(542); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + lookahead == 'c') ADVANCE(477); END_STATE(); case 394: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(522); + lookahead == 'c') ADVANCE(504); END_STATE(); case 395: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(579); + lookahead == 'c') ADVANCE(567); END_STATE(); case 396: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(495); END_STATE(); case 397: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(545); + lookahead == 'c') ADVANCE(544); if (lookahead == 'T' || - lookahead == 't') ADVANCE(379); + lookahead == 't') ADVANCE(548); END_STATE(); case 398: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(723); + lookahead == 'c') ADVANCE(524); END_STATE(); case 399: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(723); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2534); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1194); + lookahead == 'c') ADVANCE(582); END_STATE(); case 400: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(723); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(310); + lookahead == 'c') ADVANCE(683); END_STATE(); case 401: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1255); + lookahead == 'c') ADVANCE(683); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(547); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(383); END_STATE(); case 402: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(965); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(400); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(984); + lookahead == 'c') ADVANCE(729); END_STATE(); case 403: if (lookahead == 'C' || - 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); + lookahead == 'c') ADVANCE(729); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2553); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1203); END_STATE(); case 404: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(676); + lookahead == 'c') ADVANCE(729); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(310); END_STATE(); case 405: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(676); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1090); + lookahead == 'c') ADVANCE(1266); END_STATE(); case 406: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(679); + lookahead == 'c') ADVANCE(974); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(404); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(995); END_STATE(); case 407: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1214); + lookahead == 'c') ADVANCE(974); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(645); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2650); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(995); END_STATE(); case 408: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1216); + lookahead == 'c') ADVANCE(682); END_STATE(); case 409: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(687); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(754); + lookahead == 'c') ADVANCE(682); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1097); END_STATE(); case 410: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1224); + lookahead == 'c') ADVANCE(686); END_STATE(); case 411: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1231); + lookahead == 'c') ADVANCE(1224); END_STATE(); case 412: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(994); + lookahead == 'c') ADVANCE(1226); END_STATE(); case 413: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(995); + lookahead == 'c') ADVANCE(693); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(760); END_STATE(); case 414: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(996); + lookahead == 'c') ADVANCE(1235); END_STATE(); case 415: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1238); + lookahead == 'c') ADVANCE(1242); END_STATE(); case 416: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(997); + lookahead == 'c') ADVANCE(1004); END_STATE(); case 417: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(629); + lookahead == 'c') ADVANCE(1005); END_STATE(); case 418: 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); + lookahead == 'c') ADVANCE(1006); END_STATE(); case 419: 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); + lookahead == 'c') ADVANCE(1249); END_STATE(); case 420: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(998); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(952); + lookahead == 'c') ADVANCE(1007); END_STATE(); case 421: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2646); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(635); END_STATE(); case 422: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2461); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1008); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1109); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(961); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(951); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(309); END_STATE(); case 423: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2556); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1008); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(961); END_STATE(); case 424: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2510); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1008); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(961); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(897); END_STATE(); case 425: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2668); + lookahead == 'd') ADVANCE(2665); END_STATE(); case 426: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2557); + lookahead == 'd') ADVANCE(2480); END_STATE(); case 427: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2578); + lookahead == 'd') ADVANCE(2480); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(832); END_STATE(); case 428: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2527); + lookahead == 'd') ADVANCE(2575); END_STATE(); case 429: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2603); + lookahead == 'd') ADVANCE(2529); END_STATE(); case 430: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2705); + lookahead == 'd') ADVANCE(2687); END_STATE(); case 431: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2530); + lookahead == 'd') ADVANCE(2543); END_STATE(); case 432: if (lookahead == 'D' || - 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); + lookahead == 'd') ADVANCE(2576); END_STATE(); case 433: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1247); + lookahead == 'd') ADVANCE(2597); END_STATE(); case 434: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1247); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1144); + lookahead == 'd') ADVANCE(2546); END_STATE(); case 435: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1132); + lookahead == 'd') ADVANCE(2622); END_STATE(); case 436: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(717); + lookahead == 'd') ADVANCE(2724); END_STATE(); case 437: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(176); + lookahead == 'd') ADVANCE(2549); END_STATE(); case 438: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(514); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(553); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1175); + lookahead == 'd') ADVANCE(708); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(426); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(392); END_STATE(); case 439: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(514); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(553); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1175); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1263); + lookahead == 'd') ADVANCE(1257); END_STATE(); case 440: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(514); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(553); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1175); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(556); + lookahead == 'd') ADVANCE(1257); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1154); END_STATE(); case 441: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(514); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1175); + lookahead == 'd') ADVANCE(1141); END_STATE(); case 442: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(932); + lookahead == 'd') ADVANCE(721); END_STATE(); case 443: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(335); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(986); + lookahead == 'd') ADVANCE(164); END_STATE(); case 444: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1120); + lookahead == 'd') ADVANCE(520); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(556); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); END_STATE(); case 445: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(619); + lookahead == 'd') ADVANCE(520); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(556); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(558); END_STATE(); case 446: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1127); + lookahead == 'd') ADVANCE(520); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); END_STATE(); case 447: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(939); + lookahead == 'd') ADVANCE(520); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(926); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(738); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1001); + lookahead == 'i') ADVANCE(1185); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1275); END_STATE(); case 448: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(939); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(926); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1001); + lookahead == 'd') ADVANCE(941); END_STATE(); case 449: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(531); + lookahead == 'd') ADVANCE(337); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(996); END_STATE(); case 450: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(562); + lookahead == 'd') ADVANCE(1129); END_STATE(); case 451: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(540); + lookahead == 'd') ADVANCE(607); END_STATE(); case 452: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(569); + lookahead == 'd') ADVANCE(1136); END_STATE(); case 453: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(478); + lookahead == 'd') ADVANCE(949); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(935); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(744); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1011); END_STATE(); case 454: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(763); + lookahead == 'd') ADVANCE(949); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(935); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1011); END_STATE(); case 455: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(655); + lookahead == 'd') ADVANCE(534); END_STATE(); case 456: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(803); + lookahead == 'd') ADVANCE(563); END_STATE(); case 457: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(452); + lookahead == 'd') ADVANCE(542); END_STATE(); case 458: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(189); + lookahead == 'd') ADVANCE(568); END_STATE(); case 459: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1274); + lookahead == 'd') ADVANCE(484); END_STATE(); case 460: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1275); + lookahead == 'd') ADVANCE(770); END_STATE(); case 461: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2505); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2503); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(661); END_STATE(); case 462: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2632); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(811); END_STATE(); case 463: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2560); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(458); END_STATE(); case 464: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2685); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(189); END_STATE(); case 465: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2479); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1286); END_STATE(); case 466: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2541); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1287); END_STATE(); case 467: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2596); + lookahead == 'e') ADVANCE(2524); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2522); END_STATE(); case 468: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2487); + lookahead == 'e') ADVANCE(2651); END_STATE(); case 469: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2634); + lookahead == 'e') ADVANCE(2579); END_STATE(); case 470: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2561); + lookahead == 'e') ADVANCE(2704); END_STATE(); case 471: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2607); + lookahead == 'e') ADVANCE(2498); END_STATE(); case 472: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2533); + lookahead == 'e') ADVANCE(2560); END_STATE(); case 473: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2670); + lookahead == 'e') ADVANCE(2615); END_STATE(); case 474: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2649); + lookahead == 'e') ADVANCE(2506); END_STATE(); case 475: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2609); + lookahead == 'e') ADVANCE(2653); END_STATE(); case 476: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2526); + lookahead == 'e') ADVANCE(2580); END_STATE(); case 477: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2676); + lookahead == 'e') ADVANCE(2626); END_STATE(); case 478: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2571); + lookahead == 'e') ADVANCE(2552); END_STATE(); case 479: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2536); + lookahead == 'e') ADVANCE(2689); END_STATE(); case 480: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2673); + lookahead == 'e') ADVANCE(2668); END_STATE(); case 481: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2576); + lookahead == 'e') ADVANCE(2628); END_STATE(); case 482: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2610); + lookahead == 'e') ADVANCE(2545); END_STATE(); case 483: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2633); + lookahead == 'e') ADVANCE(2695); END_STATE(); case 484: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2614); + lookahead == 'e') ADVANCE(2590); END_STATE(); case 485: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2564); + lookahead == 'e') ADVANCE(2555); END_STATE(); case 486: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2482); + lookahead == 'e') ADVANCE(2692); END_STATE(); case 487: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2674); + lookahead == 'e') ADVANCE(2595); END_STATE(); case 488: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2654); + lookahead == 'e') ADVANCE(2629); END_STATE(); case 489: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2553); + lookahead == 'e') ADVANCE(2652); END_STATE(); case 490: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2531); + lookahead == 'e') ADVANCE(2633); END_STATE(); case 491: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2595); + lookahead == 'e') ADVANCE(2583); END_STATE(); case 492: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2663); + lookahead == 'e') ADVANCE(2501); END_STATE(); case 493: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2665); + lookahead == 'e') ADVANCE(2693); END_STATE(); case 494: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2664); + lookahead == 'e') ADVANCE(2673); END_STATE(); case 495: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2662); + lookahead == 'e') ADVANCE(2572); END_STATE(); case 496: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2529); + lookahead == 'e') ADVANCE(2550); END_STATE(); case 497: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2711); + lookahead == 'e') ADVANCE(2614); END_STATE(); case 498: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2569); + lookahead == 'e') ADVANCE(2682); END_STATE(); case 499: if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(2684); END_STATE(); case 500: if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(2683); END_STATE(); case 501: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(649); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(412); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2641); + lookahead == 'e') ADVANCE(2681); END_STATE(); case 502: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(649); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(914); + lookahead == 'e') ADVANCE(2548); END_STATE(); case 503: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(649); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(904); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(157); + lookahead == 'e') ADVANCE(2730); END_STATE(); case 504: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(140); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(831); + lookahead == 'e') ADVANCE(2588); END_STATE(); case 505: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(148); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(831); + lookahead == 'e') ADVANCE(654); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(416); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(913); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(157); END_STATE(); case 506: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(150); + lookahead == 'e') ADVANCE(654); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(416); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(581); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2660); END_STATE(); case 507: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(154); + lookahead == 'e') ADVANCE(654); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(416); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2660); END_STATE(); case 508: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(169); + lookahead == 'e') ADVANCE(654); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(923); END_STATE(); case 509: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(160); + lookahead == 'e') ADVANCE(654); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(581); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2660); END_STATE(); case 510: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1048); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(275); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(663); + lookahead == 'e') ADVANCE(2519); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1246); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(936); + lookahead == 'o') ADVANCE(140); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(839); END_STATE(); case 511: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2504); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2503); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(147); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(839); END_STATE(); case 512: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(776); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(149); END_STATE(); case 513: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(800); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(154); END_STATE(); case 514: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1297); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(155); END_STATE(); case 515: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(179); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(159); END_STATE(); case 516: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2667); + lookahead == 'e') ADVANCE(1056); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(276); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(669); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1256); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(945); END_STATE(); case 517: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1289); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(155); + lookahead == 'e') ADVANCE(2523); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2522); END_STATE(); case 518: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(780); + lookahead == 'e') ADVANCE(783); END_STATE(); case 519: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2619); + lookahead == 'e') ADVANCE(870); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(808); END_STATE(); case 520: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2532); + lookahead == 'e') ADVANCE(1310); END_STATE(); case 521: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2554); + lookahead == 'e') ADVANCE(180); END_STATE(); case 522: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2555); + lookahead == 'e') ADVANCE(2686); END_STATE(); case 523: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2724); + lookahead == 'e') ADVANCE(2573); END_STATE(); case 524: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2698); + lookahead == 'e') ADVANCE(2574); END_STATE(); case 525: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2683); + lookahead == 'e') ADVANCE(2551); END_STATE(); case 526: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2687); + lookahead == 'e') ADVANCE(1302); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(168); END_STATE(); case 527: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(860); + lookahead == 'e') ADVANCE(2638); END_STATE(); case 528: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1067); + lookahead == 'e') ADVANCE(2743); END_STATE(); case 529: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1067); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1319); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(935); + lookahead == 'e') ADVANCE(2717); END_STATE(); case 530: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1217); + lookahead == 'e') ADVANCE(2702); END_STATE(); case 531: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1295); + lookahead == 'e') ADVANCE(2706); END_STATE(); case 532: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(178); + lookahead == 'e') ADVANCE(868); END_STATE(); case 533: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2680); + lookahead == 'e') ADVANCE(1075); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1332); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(944); END_STATE(); case 534: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(594); + lookahead == 'e') ADVANCE(1308); END_STATE(); case 535: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(783); + lookahead == 'e') ADVANCE(2699); END_STATE(); case 536: if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(599); END_STATE(); case 537: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(783); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(271); + lookahead == 'e') ADVANCE(788); END_STATE(); case 538: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(783); + lookahead == 'e') ADVANCE(788); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(470); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(294); + lookahead == 'n') ADVANCE(272); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1143); END_STATE(); case 539: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(141); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(884); + lookahead == 'e') ADVANCE(788); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(272); END_STATE(); case 540: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1296); + lookahead == 'e') ADVANCE(788); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(294); END_STATE(); case 541: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2681); + lookahead == 'e') ADVANCE(141); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(891); END_STATE(); case 542: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1015); + lookahead == 'e') ADVANCE(1309); END_STATE(); case 543: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1015); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1248); + lookahead == 'e') ADVANCE(2700); END_STATE(); case 544: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(766); + lookahead == 'e') ADVANCE(1024); END_STATE(); case 545: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(180); + lookahead == 'e') ADVANCE(1024); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1259); END_STATE(); case 546: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(896); + lookahead == 'e') ADVANCE(773); END_STATE(); case 547: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1113); + lookahead == 'e') ADVANCE(181); END_STATE(); case 548: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1307); + lookahead == 'e') ADVANCE(902); END_STATE(); case 549: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(845); + lookahead == 'e') ADVANCE(1320); END_STATE(); case 550: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); + lookahead == 'e') ADVANCE(177); END_STATE(); case 551: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(398); + lookahead == 'e') ADVANCE(1122); END_STATE(); case 552: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(177); + lookahead == 'e') ADVANCE(402); END_STATE(); case 553: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); + lookahead == 'e') ADVANCE(178); END_STATE(); case 554: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(916); + lookahead == 'e') ADVANCE(854); END_STATE(); case 555: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(429); + lookahead == 'e') ADVANCE(925); END_STATE(); case 556: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1052); + lookahead == 'e') ADVANCE(1101); END_STATE(); case 557: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(824); + lookahead == 'e') ADVANCE(435); END_STATE(); case 558: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1115); + lookahead == 'e') ADVANCE(1060); END_STATE(); case 559: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1166); + lookahead == 'e') ADVANCE(831); END_STATE(); case 560: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1051); + lookahead == 'e') ADVANCE(1176); END_STATE(); case 561: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(769); + lookahead == 'e') ADVANCE(1059); END_STATE(); case 562: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(145); + lookahead == 'e') ADVANCE(776); END_STATE(); case 563: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); + lookahead == 'e') ADVANCE(144); END_STATE(); case 564: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(853); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1077); + lookahead == 'e') ADVANCE(145); END_STATE(); case 565: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1119); + lookahead == 'e') ADVANCE(1124); END_STATE(); case 566: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(810); + lookahead == 'e') ADVANCE(818); END_STATE(); case 567: if (lookahead == 'E' || @@ -18339,1047 +18528,1045 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 568: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1036); + lookahead == 'e') ADVANCE(880); END_STATE(); case 569: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(872); + lookahead == 'e') ADVANCE(1044); END_STATE(); case 570: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(428); + lookahead == 'e') ADVANCE(861); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1085); END_STATE(); case 571: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(272); + lookahead == 'e') ADVANCE(1128); END_STATE(); case 572: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(431); + lookahead == 'e') ADVANCE(434); END_STATE(); case 573: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1043); + lookahead == 'e') ADVANCE(869); END_STATE(); case 574: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(170); + lookahead == 'e') ADVANCE(869); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(808); END_STATE(); case 575: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(861); + lookahead == 'e') ADVANCE(1051); END_STATE(); case 576: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(861); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(800); + lookahead == 'e') ADVANCE(437); END_STATE(); case 577: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1044); + lookahead == 'e') ADVANCE(169); END_STATE(); case 578: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1201); + lookahead == 'e') ADVANCE(1052); END_STATE(); case 579: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(459); + lookahead == 'e') ADVANCE(1211); END_STATE(); case 580: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1066); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1246); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(935); + lookahead == 'e') ADVANCE(431); END_STATE(); case 581: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1101); + lookahead == 'e') ADVANCE(273); END_STATE(); case 582: if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(465); END_STATE(); case 583: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); + lookahead == 'e') ADVANCE(1074); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1256); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(944); END_STATE(); case 584: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1047); + lookahead == 'e') ADVANCE(1114); END_STATE(); case 585: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1082); + lookahead == 'e') ADVANCE(171); END_STATE(); case 586: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1174); + lookahead == 'e') ADVANCE(1109); END_STATE(); case 587: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1061); + lookahead == 'e') ADVANCE(1109); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(951); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(897); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(309); END_STATE(); case 588: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1155); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(946); + lookahead == 'e') ADVANCE(1055); END_STATE(); case 589: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1035); + lookahead == 'e') ADVANCE(1184); END_STATE(); case 590: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1096); + lookahead == 'e') ADVANCE(1090); END_STATE(); case 591: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1169); + lookahead == 'e') ADVANCE(1070); END_STATE(); case 592: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1154); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(889); + lookahead == 'e') ADVANCE(1165); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(954); END_STATE(); case 593: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(817); + lookahead == 'e') ADVANCE(1043); END_STATE(); case 594: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1013); + lookahead == 'e') ADVANCE(1104); END_STATE(); case 595: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1146); + lookahead == 'e') ADVANCE(1190); END_STATE(); case 596: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1069); + lookahead == 'e') ADVANCE(1179); END_STATE(); case 597: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(846); + lookahead == 'e') ADVANCE(1164); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(895); END_STATE(); case 598: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(894); + lookahead == 'e') ADVANCE(824); END_STATE(); case 599: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(282); + lookahead == 'e') ADVANCE(1022); END_STATE(); case 600: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1075); + lookahead == 'e') ADVANCE(1147); END_STATE(); case 601: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(903); + lookahead == 'e') ADVANCE(1077); END_STATE(); case 602: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1106); + lookahead == 'e') ADVANCE(855); END_STATE(); case 603: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(797); + lookahead == 'e') ADVANCE(898); END_STATE(); case 604: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1072); + lookahead == 'e') ADVANCE(284); END_STATE(); case 605: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(292); + lookahead == 'e') ADVANCE(1083); END_STATE(); case 606: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(407); + lookahead == 'e') ADVANCE(911); END_STATE(); case 607: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1078); + lookahead == 'e') ADVANCE(179); END_STATE(); case 608: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(799); + lookahead == 'e') ADVANCE(806); END_STATE(); case 609: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(898); + lookahead == 'e') ADVANCE(1079); END_STATE(); case 610: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1080); + lookahead == 'e') ADVANCE(295); END_STATE(); case 611: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(901); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(930); + lookahead == 'e') ADVANCE(411); END_STATE(); case 612: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1084); + lookahead == 'e') ADVANCE(1086); END_STATE(); case 613: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1083); + lookahead == 'e') ADVANCE(807); END_STATE(); case 614: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1074); + lookahead == 'e') ADVANCE(307); END_STATE(); case 615: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(911); + lookahead == 'e') ADVANCE(905); END_STATE(); case 616: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(912); + lookahead == 'e') ADVANCE(1088); END_STATE(); case 617: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(307); + lookahead == 'e') ADVANCE(910); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(939); END_STATE(); case 618: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(913); + lookahead == 'e') ADVANCE(1092); END_STATE(); case 619: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(182); + lookahead == 'e') ADVANCE(1091); END_STATE(); case 620: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(183); + lookahead == 'e') ADVANCE(1081); END_STATE(); case 621: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(919); + lookahead == 'e') ADVANCE(920); END_STATE(); case 622: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(814); + lookahead == 'e') ADVANCE(921); END_STATE(); case 623: if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(922); END_STATE(); case 624: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1107); + lookahead == 'e') ADVANCE(183); END_STATE(); case 625: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(408); + lookahead == 'e') ADVANCE(928); END_STATE(); case 626: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1108); + lookahead == 'e') ADVANCE(822); END_STATE(); case 627: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1105); + lookahead == 'e') ADVANCE(1111); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(330); + lookahead == 'h') ADVANCE(276); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(325); + lookahead == 't') ADVANCE(964); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(359); END_STATE(); case 628: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(645); + lookahead == 'e') ADVANCE(1113); END_STATE(); case 629: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(460); + lookahead == 'e') ADVANCE(412); END_STATE(); case 630: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1109); + lookahead == 'e') ADVANCE(1115); END_STATE(); case 631: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(925); + lookahead == 'e') ADVANCE(1112); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(276); END_STATE(); case 632: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2645); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2616); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1112); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(332); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(327); END_STATE(); case 633: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2645); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2616); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(685); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(650); END_STATE(); case 634: - if (lookahead == 'F' || - 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); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(789); END_STATE(); case 635: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(644); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(466); END_STATE(); case 636: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(740); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1116); END_STATE(); case 637: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(993); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(934); END_STATE(); case 638: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(600); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1254); + lookahead == 'f') ADVANCE(2664); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2635); END_STATE(); case 639: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(312); + lookahead == 'f') ADVANCE(2664); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2635); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(691); END_STATE(); case 640: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(310); + lookahead == 'f') ADVANCE(649); END_STATE(); case 641: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(642); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1230); + lookahead == 'f') ADVANCE(1003); END_STATE(); case 642: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(589); + lookahead == 'f') ADVANCE(746); END_STATE(); case 643: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1226); + lookahead == 'f') ADVANCE(605); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(313); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1265); END_STATE(); case 644: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(613); + lookahead == 'f') ADVANCE(312); END_STATE(); case 645: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(624); + lookahead == 'f') ADVANCE(310); END_STATE(); case 646: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(414); + lookahead == 'f') ADVANCE(647); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1240); END_STATE(); case 647: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2581); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(593); END_STATE(); case 648: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2677); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1237); END_STATE(); case 649: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(724); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(619); END_STATE(); case 650: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(515); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(628); END_STATE(); case 651: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(515); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(279); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(418); END_STATE(); case 652: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(525); + lookahead == 'g') ADVANCE(2600); END_STATE(); case 653: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(559); + lookahead == 'g') ADVANCE(2696); END_STATE(); case 654: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(930); + lookahead == 'g') ADVANCE(728); END_STATE(); case 655: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(578); + lookahead == 'g') ADVANCE(1120); END_STATE(); case 656: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(565); + lookahead == 'g') ADVANCE(521); END_STATE(); case 657: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(533); + lookahead == 'g') ADVANCE(521); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(282); END_STATE(); case 658: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(474); + lookahead == 'g') ADVANCE(530); END_STATE(); case 659: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(586); + lookahead == 'g') ADVANCE(560); END_STATE(); case 660: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(488); + lookahead == 'g') ADVANCE(939); END_STATE(); case 661: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(541); + lookahead == 'g') ADVANCE(579); END_STATE(); case 662: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(583); + lookahead == 'g') ADVANCE(571); END_STATE(); case 663: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(891); + lookahead == 'g') ADVANCE(535); END_STATE(); case 664: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(809); + lookahead == 'g') ADVANCE(480); END_STATE(); case 665: 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); + lookahead == 'g') ADVANCE(589); END_STATE(); case 666: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(413); - if (lookahead == 'I' || - 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); + lookahead == 'g') ADVANCE(494); END_STATE(); case 667: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(413); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(622); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(906); + lookahead == 'g') ADVANCE(543); END_STATE(); case 668: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2642); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(585); END_STATE(); case 669: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2562); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(899); END_STATE(); case 670: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2647); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(817); END_STATE(); case 671: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2584); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(417); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(537); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(916); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(953); END_STATE(); case 672: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(513); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(417); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1185); + lookahead == 'i') ADVANCE(539); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(300); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1059); + lookahead == 'o') ADVANCE(916); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(953); END_STATE(); case 673: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(927); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(417); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(626); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(915); END_STATE(); case 674: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(576); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1185); + lookahead == 'h') ADVANCE(2661); END_STATE(); case 675: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(527); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2615); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(264); + lookahead == 'h') ADVANCE(2581); END_STATE(); case 676: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(931); + lookahead == 'h') ADVANCE(2666); END_STATE(); case 677: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(466); + lookahead == 'h') ADVANCE(2603); END_STATE(); case 678: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(727); + lookahead == 'h') ADVANCE(519); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1185); + lookahead == 'i') ADVANCE(1196); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); END_STATE(); case 679: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(547); + lookahead == 'h') ADVANCE(936); END_STATE(); case 680: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(575); + lookahead == 'h') ADVANCE(574); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1196); END_STATE(); case 681: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(953); + lookahead == 'h') ADVANCE(532); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2634); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(264); END_STATE(); case 682: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(315); + lookahead == 'h') ADVANCE(940); END_STATE(); case 683: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1100); + lookahead == 'h') ADVANCE(472); END_STATE(); case 684: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(714); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(324); + lookahead == 'h') ADVANCE(731); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1196); END_STATE(); case 685: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(560); + lookahead == 'h') ADVANCE(316); END_STATE(); case 686: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(301); + lookahead == 'h') ADVANCE(551); END_STATE(); case 687: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(303); + lookahead == 'h') ADVANCE(573); END_STATE(); case 688: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(593); + lookahead == 'h') ADVANCE(959); END_STATE(); case 689: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(607); + lookahead == 'h') ADVANCE(1108); END_STATE(); case 690: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(614); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1185); + lookahead == 'h') ADVANCE(717); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(326); END_STATE(); case 691: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(614); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1060); + lookahead == 'h') ADVANCE(561); END_STATE(); case 692: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(536); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(267); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(302); END_STATE(); case 693: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(762); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(303); END_STATE(); case 694: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1316); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(598); END_STATE(); case 695: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(612); END_STATE(); case 696: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1282); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1031); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(620); END_STATE(); case 697: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(620); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1282); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1212); + lookahead == 'i') ADVANCE(1196); END_STATE(); case 698: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1282); + lookahead == 'i') ADVANCE(538); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(263); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(417); + lookahead == 'o') ADVANCE(1064); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(271); END_STATE(); case 699: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1317); + lookahead == 'i') ADVANCE(769); END_STATE(); case 700: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1321); + lookahead == 'i') ADVANCE(1329); END_STATE(); case 701: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1187); + lookahead == 'i') ADVANCE(540); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1064); END_STATE(); case 702: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(424); + lookahead == 'i') ADVANCE(1294); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1040); END_STATE(); case 703: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(848); + lookahead == 'i') ADVANCE(1294); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1222); END_STATE(); case 704: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1300); + lookahead == 'i') ADVANCE(1294); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(421); END_STATE(); case 705: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(886); + lookahead == 'i') ADVANCE(1330); END_STATE(); case 706: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(837); + lookahead == 'i') ADVANCE(1334); END_STATE(); case 707: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(915); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(708); + lookahead == 'i') ADVANCE(429); END_STATE(); case 708: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(455); + lookahead == 'i') ADVANCE(1198); END_STATE(); case 709: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(887); + lookahead == 'i') ADVANCE(1313); END_STATE(); case 710: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1008); + lookahead == 'i') ADVANCE(857); END_STATE(); case 711: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(369); + lookahead == 'i') ADVANCE(924); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(712); END_STATE(); case 712: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1167); + lookahead == 'i') ADVANCE(461); END_STATE(); case 713: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(368); + lookahead == 'i') ADVANCE(845); END_STATE(); case 714: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(457); + lookahead == 'i') ADVANCE(892); END_STATE(); case 715: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1195); + lookahead == 'i') ADVANCE(1017); END_STATE(); case 716: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(430); + lookahead == 'i') ADVANCE(373); END_STATE(); case 717: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1040); + lookahead == 'i') ADVANCE(463); END_STATE(); case 718: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1171); + lookahead == 'i') ADVANCE(1177); END_STATE(); case 719: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1158); + lookahead == 'i') ADVANCE(372); END_STATE(); case 720: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(558); + lookahead == 'i') ADVANCE(1206); END_STATE(); case 721: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1284); + lookahead == 'i') ADVANCE(1048); END_STATE(); case 722: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1318); + lookahead == 'i') ADVANCE(436); END_STATE(); case 723: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(849); + lookahead == 'i') ADVANCE(1181); END_STATE(); case 724: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); + lookahead == 'i') ADVANCE(1168); END_STATE(); case 725: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(281); + lookahead == 'i') ADVANCE(565); END_STATE(); case 726: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(281); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(568); + lookahead == 'i') ADVANCE(1296); END_STATE(); case 727: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(800); + lookahead == 'i') ADVANCE(1331); END_STATE(); case 728: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(983); + lookahead == 'i') ADVANCE(896); END_STATE(); case 729: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(847); + lookahead == 'i') ADVANCE(858); END_STATE(); case 730: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1147); + lookahead == 'i') ADVANCE(893); END_STATE(); case 731: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); + lookahead == 'i') ADVANCE(808); END_STATE(); case 732: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1319); + lookahead == 'i') ADVANCE(281); END_STATE(); case 733: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(893); + lookahead == 'i') ADVANCE(281); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(569); END_STATE(); case 734: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1232); + lookahead == 'i') ADVANCE(994); END_STATE(); case 735: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(957); + lookahead == 'i') ADVANCE(856); END_STATE(); case 736: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(851); + lookahead == 'i') ADVANCE(1157); END_STATE(); case 737: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1142); + lookahead == 'i') ADVANCE(1291); END_STATE(); case 738: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1320); + lookahead == 'i') ADVANCE(1332); END_STATE(); case 739: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(852); + lookahead == 'i') ADVANCE(900); END_STATE(); case 740: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(566); + lookahead == 'i') ADVANCE(1243); END_STATE(); case 741: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1280); + lookahead == 'i') ADVANCE(965); END_STATE(); case 742: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(904); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(157); + lookahead == 'i') ADVANCE(859); END_STATE(); case 743: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(960); + lookahead == 'i') ADVANCE(1152); END_STATE(); case 744: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(922); + lookahead == 'i') ADVANCE(1333); END_STATE(); case 745: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(295); + lookahead == 'i') ADVANCE(860); END_STATE(); case 746: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(453); + lookahead == 'i') ADVANCE(566); END_STATE(); case 747: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(805); + lookahead == 'i') ADVANCE(1292); END_STATE(); case 748: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(962); + lookahead == 'i') ADVANCE(913); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(646); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(157); END_STATE(); case 749: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(535); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); + lookahead == 'i') ADVANCE(913); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(157); END_STATE(); case 750: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(300); + lookahead == 'i') ADVANCE(967); END_STATE(); case 751: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(981); + lookahead == 'i') ADVANCE(931); END_STATE(); case 752: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(537); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(267); + lookahead == 'i') ADVANCE(459); END_STATE(); case 753: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1283); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1241); + lookahead == 'i') ADVANCE(813); END_STATE(); case 754: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1301); + lookahead == 'i') ADVANCE(314); END_STATE(); case 755: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(918); + lookahead == 'i') ADVANCE(970); END_STATE(); case 756: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1235); + lookahead == 'i') ADVANCE(537); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1064); END_STATE(); case 757: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2640); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(321); END_STATE(); case 758: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2635); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(991); END_STATE(); case 759: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1064); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(271); END_STATE(); case 760: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2637); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1314); END_STATE(); case 761: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(190); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(927); END_STATE(); case 762: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(465); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1298); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1252); END_STATE(); case 763: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(548); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1246); END_STATE(); case 764: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(334); + lookahead == 'k') ADVANCE(2659); END_STATE(); case 765: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2577); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2654); END_STATE(); case 766: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2517); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2655); END_STATE(); case 767: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2523); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2656); END_STATE(); case 768: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2658); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(190); END_STATE(); case 769: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2518); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(471); END_STATE(); case 770: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2589); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(549); END_STATE(); case 771: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(811); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1151); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(336); END_STATE(); case 772: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(811); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1193); + lookahead == 'l') ADVANCE(2596); END_STATE(); case 773: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2513); + lookahead == 'l') ADVANCE(2536); END_STATE(); case 774: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2653); + lookahead == 'l') ADVANCE(2542); END_STATE(); case 775: 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(393); + lookahead == 'l') ADVANCE(2677); END_STATE(); case 776: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1000); + lookahead == 'l') ADVANCE(2537); END_STATE(); case 777: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1248); + lookahead == 'l') ADVANCE(2608); END_STATE(); case 778: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1311); + lookahead == 'l') ADVANCE(797); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1161); END_STATE(); case 779: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(142); + lookahead == 'l') ADVANCE(797); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1204); END_STATE(); case 780: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1063); + lookahead == 'l') ADVANCE(2532); END_STATE(); case 781: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1308); + lookahead == 'l') ADVANCE(2672); END_STATE(); case 782: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1309); + lookahead == 'l') ADVANCE(1142); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(426); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(397); END_STATE(); case 783: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(425); + lookahead == 'l') ADVANCE(1010); END_STATE(); case 784: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1312); + lookahead == 'l') ADVANCE(1259); END_STATE(); case 785: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(694); + lookahead == 'l') ADVANCE(1324); END_STATE(); case 786: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(929); + lookahead == 'l') ADVANCE(142); END_STATE(); case 787: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1245); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1182); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(908); + lookahead == 'l') ADVANCE(1321); END_STATE(); case 788: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1245); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1192); + lookahead == 'l') ADVANCE(430); END_STATE(); case 789: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1245); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1150); + lookahead == 'l') ADVANCE(313); END_STATE(); case 790: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1123); + lookahead == 'l') ADVANCE(1322); END_STATE(); case 791: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(949); + lookahead == 'l') ADVANCE(1325); END_STATE(); case 792: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(950); + lookahead == 'l') ADVANCE(938); END_STATE(); case 793: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(266); + lookahead == 'l') ADVANCE(1258); END_STATE(); case 794: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(711); + lookahead == 'l') ADVANCE(1258); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1160); END_STATE(); case 795: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(782); + lookahead == 'l') ADVANCE(1258); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1193); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(917); END_STATE(); case 796: if (lookahead == 'L' || @@ -19387,1213 +19574,1211 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 797: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1118); + lookahead == 'l') ADVANCE(285); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(844); END_STATE(); case 798: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(597); + lookahead == 'l') ADVANCE(1132); END_STATE(); case 799: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1122); + lookahead == 'l') ADVANCE(957); END_STATE(); case 800: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(470); + lookahead == 'l') ADVANCE(958); END_STATE(); case 801: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1179); + lookahead == 'l') ADVANCE(790); END_STATE(); case 802: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(490); + lookahead == 'l') ADVANCE(716); END_STATE(); case 803: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(491); + lookahead == 'l') ADVANCE(266); END_STATE(); case 804: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(479); + lookahead == 'l') ADVANCE(602); END_STATE(); case 805: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(480); + lookahead == 'l') ADVANCE(706); END_STATE(); case 806: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(486); + lookahead == 'l') ADVANCE(1127); END_STATE(); case 807: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(487); + lookahead == 'l') ADVANCE(1131); END_STATE(); case 808: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(520); + lookahead == 'l') ADVANCE(476); END_STATE(); case 809: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(550); + lookahead == 'l') ADVANCE(1189); END_STATE(); case 810: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(444); + lookahead == 'l') ADVANCE(496); END_STATE(); case 811: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(284); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(836); + lookahead == 'l') ADVANCE(497); END_STATE(); case 812: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1268); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1182); + lookahead == 'l') ADVANCE(485); END_STATE(); case 813: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(722); + lookahead == 'l') ADVANCE(486); END_STATE(); case 814: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(446); + lookahead == 'l') ADVANCE(492); END_STATE(); case 815: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1266); + lookahead == 'l') ADVANCE(493); END_STATE(); case 816: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1270); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1182); + lookahead == 'l') ADVANCE(525); END_STATE(); case 817: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1019); + lookahead == 'l') ADVANCE(550); END_STATE(); case 818: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1198); + lookahead == 'l') ADVANCE(450); END_STATE(); case 819: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(972); + lookahead == 'l') ADVANCE(1278); END_STATE(); case 820: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(973); + lookahead == 'l') ADVANCE(1281); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1193); END_STATE(); case 821: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(975); + lookahead == 'l') ADVANCE(727); END_STATE(); case 822: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(976); + lookahead == 'l') ADVANCE(452); END_STATE(); case 823: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(978); + lookahead == 'l') ADVANCE(1282); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1193); END_STATE(); case 824: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(344); + lookahead == 'l') ADVANCE(1028); END_STATE(); case 825: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2582); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1208); END_STATE(); case 826: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2651); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(981); END_STATE(); case 827: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2652); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(983); END_STATE(); case 828: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2656); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(985); END_STATE(); case 829: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2657); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(986); END_STATE(); case 830: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(263); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(440); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(990); END_STATE(); case 831: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(159); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(347); END_STATE(); case 832: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2592); + lookahead == 'm') ADVANCE(2745); END_STATE(); case 833: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2567); + lookahead == 'm') ADVANCE(2601); END_STATE(); case 834: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2593); + lookahead == 'm') ADVANCE(2670); END_STATE(); case 835: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(779); + lookahead == 'm') ADVANCE(2671); END_STATE(); case 836: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(895); + lookahead == 'm') ADVANCE(2675); END_STATE(); case 837: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1250); + lookahead == 'm') ADVANCE(2676); END_STATE(); case 838: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1009); + lookahead == 'm') ADVANCE(267); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(439); + lookahead == 'n') ADVANCE(445); END_STATE(); case 839: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(468); + lookahead == 'm') ADVANCE(158); END_STATE(); case 840: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(883); + lookahead == 'm') ADVANCE(2611); END_STATE(); case 841: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(882); + lookahead == 'm') ADVANCE(2586); END_STATE(); case 842: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(595); + lookahead == 'm') ADVANCE(2612); END_STATE(); case 843: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(493); + lookahead == 'm') ADVANCE(786); END_STATE(); case 844: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(495); + lookahead == 'm') ADVANCE(901); END_STATE(); case 845: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(356); + lookahead == 'm') ADVANCE(1261); END_STATE(); case 846: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(601); + lookahead == 'm') ADVANCE(288); END_STATE(); case 847: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1251); + lookahead == 'm') ADVANCE(1018); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(444); END_STATE(); case 848: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(293); + lookahead == 'm') ADVANCE(474); END_STATE(); case 849: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(285); + lookahead == 'm') ADVANCE(889); END_STATE(); case 850: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(287); + lookahead == 'm') ADVANCE(887); END_STATE(); case 851: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1252); + lookahead == 'm') ADVANCE(600); END_STATE(); case 852: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1253); + lookahead == 'm') ADVANCE(499); END_STATE(); case 853: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1020); + lookahead == 'm') ADVANCE(501); END_STATE(); case 854: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(327); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(438); + lookahead == 'm') ADVANCE(360); END_STATE(); case 855: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(333); + lookahead == 'm') ADVANCE(606); END_STATE(); case 856: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(333); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(441); + lookahead == 'm') ADVANCE(1262); END_STATE(); case 857: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(346); + lookahead == 'm') ADVANCE(293); END_STATE(); case 858: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2675); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(286); END_STATE(); case 859: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2616); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1263); END_STATE(); case 860: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2559); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1264); END_STATE(); case 861: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2512); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1029); END_STATE(); case 862: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(329); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2512); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(469); + lookahead == 'n') ADVANCE(444); END_STATE(); case 863: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2718); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(335); END_STATE(); case 864: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(335); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2550); + lookahead == 'n') ADVANCE(446); END_STATE(); case 865: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2568); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(349); END_STATE(); case 866: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2721); + lookahead == 'n') ADVANCE(2694); END_STATE(); case 867: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2720); + lookahead == 'n') ADVANCE(2635); END_STATE(); case 868: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2710); + lookahead == 'n') ADVANCE(2578); END_STATE(); case 869: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2715); + lookahead == 'n') ADVANCE(2531); END_STATE(); case 870: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2628); + lookahead == 'n') ADVANCE(2531); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(475); END_STATE(); case 871: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2579); + lookahead == 'n') ADVANCE(2737); END_STATE(); case 872: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2661); + lookahead == 'n') ADVANCE(2569); END_STATE(); case 873: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2544); + lookahead == 'n') ADVANCE(2587); END_STATE(); case 874: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2549); + lookahead == 'n') ADVANCE(2740); END_STATE(); case 875: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1310); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1011); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1143); + lookahead == 'n') ADVANCE(2739); END_STATE(); case 876: if (lookahead == 'N' || - 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); + lookahead == 'n') ADVANCE(2729); END_STATE(); case 877: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(422); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1190); + lookahead == 'n') ADVANCE(2734); END_STATE(); case 878: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(422); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1190); + lookahead == 'n') ADVANCE(2647); END_STATE(); case 879: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(353); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(539); + lookahead == 'n') ADVANCE(2598); END_STATE(); case 880: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1285); + lookahead == 'n') ADVANCE(2680); END_STATE(); case 881: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(441); + lookahead == 'n') ADVANCE(2563); END_STATE(); case 882: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2694); + lookahead == 'n') ADVANCE(2568); END_STATE(); case 883: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2696); + lookahead == 'n') ADVANCE(1323); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1020); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1153); END_STATE(); case 884: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(647); + lookahead == 'n') ADVANCE(357); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(541); END_STATE(); case 885: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(352); + lookahead == 'n') ADVANCE(1297); END_STATE(); case 886: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(648); + lookahead == 'n') ADVANCE(446); END_STATE(); case 887: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(637); + lookahead == 'n') ADVANCE(2713); END_STATE(); case 888: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1137); + lookahead == 'n') ADVANCE(447); END_STATE(); case 889: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(664); + lookahead == 'n') ADVANCE(2715); END_STATE(); case 890: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1112); + lookahead == 'n') ADVANCE(356); END_STATE(); case 891: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(283); + lookahead == 'n') ADVANCE(652); END_STATE(); case 892: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(442); + lookahead == 'n') ADVANCE(641); END_STATE(); case 893: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1114); + lookahead == 'n') ADVANCE(653); END_STATE(); case 894: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(426); + lookahead == 'n') ADVANCE(1148); END_STATE(); case 895: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); + lookahead == 'n') ADVANCE(670); END_STATE(); case 896: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1163); + lookahead == 'n') ADVANCE(1121); END_STATE(); case 897: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(163); + lookahead == 'n') ADVANCE(448); END_STATE(); case 898: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1149); + lookahead == 'n') ADVANCE(432); END_STATE(); case 899: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(456); + lookahead == 'n') ADVANCE(283); END_STATE(); case 900: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(781); + lookahead == 'n') ADVANCE(1123); END_STATE(); case 901: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(454); + lookahead == 'n') ADVANCE(167); END_STATE(); case 902: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(319); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1315); + lookahead == 'n') ADVANCE(1173); END_STATE(); case 903: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1197); + lookahead == 'n') ADVANCE(161); END_STATE(); case 904: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(423); + lookahead == 'n') ADVANCE(462); END_STATE(); case 905: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(472); + lookahead == 'n') ADVANCE(1159); END_STATE(); case 906: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1156); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2540); + lookahead == 'n') ADVANCE(787); END_STATE(); case 907: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1156); + lookahead == 'n') ADVANCE(426); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(850); + lookahead == 'r') ADVANCE(1063); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(392); END_STATE(); case 908: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1159); + lookahead == 'n') ADVANCE(426); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1201); END_STATE(); case 909: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(985); + lookahead == 'n') ADVANCE(426); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1201); END_STATE(); case 910: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1172); + lookahead == 'n') ADVANCE(460); END_STATE(); case 911: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1160); + lookahead == 'n') ADVANCE(1209); END_STATE(); case 912: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1209); + lookahead == 'n') ADVANCE(320); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1328); END_STATE(); case 913: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1173); + lookahead == 'n') ADVANCE(428); END_STATE(); case 914: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(478); END_STATE(); case 915: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(449); + lookahead == 'n') ADVANCE(1166); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2559); END_STATE(); case 916: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(391); + lookahead == 'n') ADVANCE(1166); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(846); END_STATE(); case 917: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(729); + lookahead == 'n') ADVANCE(1169); END_STATE(); case 918: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(451); + lookahead == 'n') ADVANCE(997); END_STATE(); case 919: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(394); + lookahead == 'n') ADVANCE(1182); END_STATE(); case 920: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(384); + lookahead == 'n') ADVANCE(1170); END_STATE(); case 921: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(739); + lookahead == 'n') ADVANCE(1220); END_STATE(); case 922: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1228); + lookahead == 'n') ADVANCE(1183); END_STATE(); case 923: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1287); + lookahead == 'n') ADVANCE(280); END_STATE(); case 924: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(415); + lookahead == 'n') ADVANCE(455); END_STATE(); case 925: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1152); + lookahead == 'n') ADVANCE(395); END_STATE(); case 926: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1153); + lookahead == 'n') ADVANCE(735); END_STATE(); case 927: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2599); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(457); END_STATE(); case 928: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2618); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(398); END_STATE(); case 929: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2491); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(388); END_STATE(); case 930: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2701); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(745); END_STATE(); case 931: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1241); END_STATE(); case 932: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2521); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1300); END_STATE(); case 933: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(787); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(419); END_STATE(); case 934: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(969); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1162); END_STATE(); case 935: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1010); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1163); END_STATE(); case 936: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1010); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(599); + lookahead == 'o') ADVANCE(2618); END_STATE(); case 937: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(772); + lookahead == 'o') ADVANCE(2637); END_STATE(); case 938: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(702); + lookahead == 'o') ADVANCE(2510); END_STATE(); case 939: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1293); + lookahead == 'o') ADVANCE(2720); END_STATE(); case 940: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(789); + lookahead == 'o') ADVANCE(2619); END_STATE(); case 941: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(375); + lookahead == 'o') ADVANCE(2540); END_STATE(); case 942: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(445); + lookahead == 'o') ADVANCE(795); END_STATE(); case 943: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1291); + lookahead == 'o') ADVANCE(977); END_STATE(); case 944: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(825); + lookahead == 'o') ADVANCE(1019); END_STATE(); case 945: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(788); + lookahead == 'o') ADVANCE(1019); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(604); END_STATE(); case 946: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(366); + lookahead == 'o') ADVANCE(779); END_STATE(); case 947: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(880); + lookahead == 'o') ADVANCE(707); END_STATE(); case 948: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1016); + lookahead == 'o') ADVANCE(451); END_STATE(); case 949: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(377); + lookahead == 'o') ADVANCE(1306); END_STATE(); case 950: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(378); + lookahead == 'o') ADVANCE(794); END_STATE(); case 951: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1018); + lookahead == 'o') ADVANCE(379); END_STATE(); case 952: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(401); + lookahead == 'o') ADVANCE(1304); END_STATE(); case 953: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(427); + lookahead == 'o') ADVANCE(833); END_STATE(); case 954: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1034); + lookahead == 'o') ADVANCE(371); END_STATE(); case 955: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1272); + lookahead == 'o') ADVANCE(885); END_STATE(); case 956: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1007); + lookahead == 'o') ADVANCE(1025); END_STATE(); case 957: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(870); + lookahead == 'o') ADVANCE(381); END_STATE(); case 958: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(900); + lookahead == 'o') ADVANCE(382); END_STATE(); case 959: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(961); + lookahead == 'o') ADVANCE(433); END_STATE(); case 960: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(871); + lookahead == 'o') ADVANCE(1027); END_STATE(); case 961: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(770); + lookahead == 'o') ADVANCE(405); END_STATE(); case 962: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(873); + lookahead == 'o') ADVANCE(1042); END_STATE(); case 963: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(152); + lookahead == 'o') ADVANCE(1284); END_STATE(); case 964: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1042); + lookahead == 'o') ADVANCE(1016); END_STATE(); case 965: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(819); + lookahead == 'o') ADVANCE(878); END_STATE(); case 966: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1045); + lookahead == 'o') ADVANCE(906); END_STATE(); case 967: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1046); + lookahead == 'o') ADVANCE(879); END_STATE(); case 968: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(818); + lookahead == 'o') ADVANCE(969); END_STATE(); case 969: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(818); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(296); + lookahead == 'o') ADVANCE(777); END_STATE(); case 970: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(162); + lookahead == 'o') ADVANCE(881); END_STATE(); case 971: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(869); + lookahead == 'o') ADVANCE(751); END_STATE(); case 972: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1037); + lookahead == 'o') ADVANCE(151); END_STATE(); case 973: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1038); + lookahead == 'o') ADVANCE(1050); END_STATE(); case 974: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(863); + lookahead == 'o') ADVANCE(826); END_STATE(); case 975: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1039); + lookahead == 'o') ADVANCE(1053); END_STATE(); case 976: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1041); + lookahead == 'o') ADVANCE(825); END_STATE(); case 977: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(188); + lookahead == 'o') ADVANCE(825); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(296); END_STATE(); case 978: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1073); + lookahead == 'o') ADVANCE(1054); END_STATE(); case 979: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(909); + lookahead == 'o') ADVANCE(877); END_STATE(); case 980: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(866); + lookahead == 'o') ADVANCE(162); END_STATE(); case 981: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(865); + lookahead == 'o') ADVANCE(1045); END_STATE(); case 982: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1229); + lookahead == 'o') ADVANCE(793); END_STATE(); case 983: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(897); + lookahead == 'o') ADVANCE(1046); END_STATE(); case 984: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1026); + lookahead == 'o') ADVANCE(871); END_STATE(); case 985: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1256); + lookahead == 'o') ADVANCE(1047); END_STATE(); case 986: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(450); + lookahead == 'o') ADVANCE(1049); END_STATE(); case 987: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(968); + lookahead == 'o') ADVANCE(188); END_STATE(); case 988: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(968); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(264); + lookahead == 'o') ADVANCE(918); END_STATE(); case 989: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(744); + lookahead == 'o') ADVANCE(874); END_STATE(); case 990: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1277); + lookahead == 'o') ADVANCE(1082); END_STATE(); case 991: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(395); + lookahead == 'o') ADVANCE(873); END_STATE(); case 992: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1269); + lookahead == 'o') ADVANCE(1068); END_STATE(); case 993: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1094); + lookahead == 'o') ADVANCE(1239); END_STATE(); case 994: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(820); + lookahead == 'o') ADVANCE(903); END_STATE(); case 995: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(821); + lookahead == 'o') ADVANCE(1035); END_STATE(); case 996: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(822); + lookahead == 'o') ADVANCE(456); END_STATE(); case 997: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(823); + lookahead == 'o') ADVANCE(1268); END_STATE(); case 998: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(923); + lookahead == 'o') ADVANCE(976); END_STATE(); case 999: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2601); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(406); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(976); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(264); END_STATE(); case 1000: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2666); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1289); END_STATE(); case 1001: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2684); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(399); END_STATE(); case 1002: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1011); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1280); END_STATE(); case 1003: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1011); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2478); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1102); END_STATE(); case 1004: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1011); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2478); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1208); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(827); END_STATE(); case 1005: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1011); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1313); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(828); END_STATE(); case 1006: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2602); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(829); END_STATE(); case 1007: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2624); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(830); END_STATE(); case 1008: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2717); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(932); END_STATE(); case 1009: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(798); + lookahead == 'p') ADVANCE(2620); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(410); END_STATE(); case 1010: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(167); + lookahead == 'p') ADVANCE(2685); END_STATE(); case 1011: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(598); + lookahead == 'p') ADVANCE(2703); END_STATE(); case 1012: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1014); + lookahead == 'p') ADVANCE(1020); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2497); END_STATE(); case 1013: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(181); + lookahead == 'p') ADVANCE(1020); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2497); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1218); END_STATE(); case 1014: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(778); + lookahead == 'p') ADVANCE(1020); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1326); END_STATE(); case 1015: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1162); + lookahead == 'p') ADVANCE(2621); END_STATE(); case 1016: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(720); + lookahead == 'p') ADVANCE(2643); END_STATE(); case 1017: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(959); + lookahead == 'p') ADVANCE(2736); END_STATE(); case 1018: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(311); + lookahead == 'p') ADVANCE(804); END_STATE(); case 1019: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(185); + lookahead == 'p') ADVANCE(170); END_STATE(); case 1020: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(184); + lookahead == 'p') ADVANCE(603); END_STATE(); case 1021: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1102); + lookahead == 'p') ADVANCE(1023); END_STATE(); case 1022: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(482); + lookahead == 'p') ADVANCE(182); END_STATE(); case 1023: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(492); + lookahead == 'p') ADVANCE(785); END_STATE(); case 1024: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(494); + lookahead == 'p') ADVANCE(1172); END_STATE(); case 1025: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(989); + lookahead == 'p') ADVANCE(725); END_STATE(); case 1026: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(174); + lookahead == 'p') ADVANCE(968); END_STATE(); case 1027: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(617); + lookahead == 'p') ADVANCE(311); END_STATE(); case 1028: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1079); + lookahead == 'p') ADVANCE(185); END_STATE(); case 1029: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1264); + lookahead == 'p') ADVANCE(184); END_STATE(); case 1030: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1265); + lookahead == 'p') ADVANCE(1117); END_STATE(); case 1031: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(612); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(606); + lookahead == 'p') ADVANCE(488); END_STATE(); case 1032: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1190); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(498); END_STATE(); case 1033: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1258); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(500); END_STATE(); case 1034: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2617); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(971); END_STATE(); case 1035: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2539); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(175); END_STATE(); case 1036: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2723); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(614); END_STATE(); case 1037: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2706); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1087); END_STATE(); case 1038: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2704); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1276); END_STATE(); case 1039: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2708); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1277); END_STATE(); case 1040: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2597); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(618); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(611); END_STATE(); case 1041: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2713); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1269); END_STATE(); case 1042: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2558); + lookahead == 'r') ADVANCE(2636); END_STATE(); case 1043: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2565); + lookahead == 'r') ADVANCE(2558); END_STATE(); case 1044: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2627); + lookahead == 'r') ADVANCE(2742); END_STATE(); case 1045: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2586); + lookahead == 'r') ADVANCE(2725); END_STATE(); case 1046: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2585); + lookahead == 'r') ADVANCE(2723); END_STATE(); case 1047: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2712); + lookahead == 'r') ADVANCE(2727); END_STATE(); case 1048: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(726); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2573); + lookahead == 'r') ADVANCE(2616); END_STATE(); case 1049: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2538); + lookahead == 'r') ADVANCE(2732); END_STATE(); case 1050: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1304); + lookahead == 'r') ADVANCE(2577); END_STATE(); case 1051: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1292); + lookahead == 'r') ADVANCE(2584); END_STATE(); case 1052: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(639); + lookahead == 'r') ADVANCE(2646); END_STATE(); case 1053: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(850); + lookahead == 'r') ADVANCE(2605); END_STATE(); case 1054: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1305); + lookahead == 'r') ADVANCE(2604); END_STATE(); case 1055: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(389); + lookahead == 'r') ADVANCE(2731); END_STATE(); case 1056: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(954); + lookahead == 'r') ADVANCE(733); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2592); END_STATE(); case 1057: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(698); + lookahead == 'r') ADVANCE(2557); END_STATE(); case 1058: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1267); + lookahead == 'r') ADVANCE(1317); END_STATE(); case 1059: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(437); + lookahead == 'r') ADVANCE(1305); END_STATE(); case 1060: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(761); + lookahead == 'r') ADVANCE(644); END_STATE(); case 1061: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1302); + lookahead == 'r') ADVANCE(1318); END_STATE(); case 1062: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(864); + lookahead == 'r') ADVANCE(393); END_STATE(); case 1063: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1303); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1076); + lookahead == 'r') ADVANCE(962); END_STATE(); case 1064: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(274); + lookahead == 'r') ADVANCE(846); END_STATE(); case 1065: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1260); + lookahead == 'r') ADVANCE(443); END_STATE(); case 1066: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(745); + lookahead == 'r') ADVANCE(704); END_STATE(); case 1067: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(745); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2573); + lookahead == 'r') ADVANCE(1279); END_STATE(); case 1068: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(552); + lookahead == 'r') ADVANCE(768); END_STATE(); case 1069: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1168); + lookahead == 'r') ADVANCE(872); END_STATE(); case 1070: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1116); + lookahead == 'r') ADVANCE(1315); END_STATE(); case 1071: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1121); + lookahead == 'r') ADVANCE(1316); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1084); END_STATE(); case 1072: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1177); + lookahead == 'r') ADVANCE(1271); END_STATE(); case 1073: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1126); + lookahead == 'r') ADVANCE(275); END_STATE(); case 1074: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(469); + lookahead == 'r') ADVANCE(754); END_STATE(); case 1075: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(554); + lookahead == 'r') ADVANCE(754); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2592); END_STATE(); case 1076: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(874); + lookahead == 'r') ADVANCE(553); END_STATE(); case 1077: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(943); + lookahead == 'r') ADVANCE(1178); END_STATE(); case 1078: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(477); + lookahead == 'r') ADVANCE(1125); END_STATE(); case 1079: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(991); + lookahead == 'r') ADVANCE(1187); END_STATE(); case 1080: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1206); + lookahead == 'r') ADVANCE(1130); END_STATE(); case 1081: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(481); + lookahead == 'r') ADVANCE(475); END_STATE(); case 1082: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1098); + lookahead == 'r') ADVANCE(1135); END_STATE(); case 1083: if (lookahead == 'R' || @@ -20601,1029 +20786,1083 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1084: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1196); + lookahead == 'r') ADVANCE(882); END_STATE(); case 1085: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(532); + lookahead == 'r') ADVANCE(952); END_STATE(); case 1086: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(628); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(302); + lookahead == 'r') ADVANCE(483); END_STATE(); case 1087: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(523); + lookahead == 'r') ADVANCE(1001); END_STATE(); case 1088: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(485); + lookahead == 'r') ADVANCE(1216); END_STATE(); case 1089: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(653); + lookahead == 'r') ADVANCE(487); END_STATE(); case 1090: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(964); + lookahead == 'r') ADVANCE(1106); END_STATE(); case 1091: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(571); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(641); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2641); + lookahead == 'r') ADVANCE(557); END_STATE(); case 1092: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(557); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(992); + lookahead == 'r') ADVANCE(1205); END_STATE(); case 1093: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(715); + lookahead == 'r') ADVANCE(633); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(298); END_STATE(); case 1094: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(857); + lookahead == 'r') ADVANCE(580); END_STATE(); case 1095: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1199); + lookahead == 'r') ADVANCE(528); END_STATE(); case 1096: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1140); + lookahead == 'r') ADVANCE(491); END_STATE(); case 1097: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(392); + lookahead == 'r') ADVANCE(973); END_STATE(); case 1098: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(746); + lookahead == 'r') ADVANCE(659); END_STATE(); case 1099: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(659); + lookahead == 'r') ADVANCE(559); END_STATE(); case 1100: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(979); + lookahead == 'r') ADVANCE(559); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1002); END_STATE(); case 1101: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1090); + lookahead == 'r') ADVANCE(720); END_STATE(); case 1102: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(753); + lookahead == 'r') ADVANCE(865); END_STATE(); case 1103: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(316); + lookahead == 'r') ADVANCE(1207); END_STATE(); case 1104: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(725); + lookahead == 'r') ADVANCE(1150); END_STATE(); case 1105: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(725); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2573); + lookahead == 'r') ADVANCE(396); END_STATE(); case 1106: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(329); + lookahead == 'r') ADVANCE(752); END_STATE(); case 1107: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(621); + lookahead == 'r') ADVANCE(665); END_STATE(); case 1108: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(750); + lookahead == 'r') ADVANCE(988); END_STATE(); case 1109: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(332); + lookahead == 'r') ADVANCE(1097); END_STATE(); case 1110: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1278); + lookahead == 'r') ADVANCE(317); END_STATE(); case 1111: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2511); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(732); END_STATE(); case 1112: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2506); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(732); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2592); END_STATE(); case 1113: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2507); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(625); END_STATE(); case 1114: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2508); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(331); END_STATE(); case 1115: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2608); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(757); END_STATE(); case 1116: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2699); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(334); END_STATE(); case 1117: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2588); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(762); END_STATE(); case 1118: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2700); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1290); END_STATE(); case 1119: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2612); + lookahead == 's') ADVANCE(2530); END_STATE(); case 1120: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2580); + lookahead == 's') ADVANCE(2746); END_STATE(); case 1121: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2688); + lookahead == 's') ADVANCE(2525); END_STATE(); case 1122: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2689); + lookahead == 's') ADVANCE(2526); END_STATE(); case 1123: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2519); + lookahead == 's') ADVANCE(2527); END_STATE(); case 1124: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2587); + lookahead == 's') ADVANCE(2627); END_STATE(); case 1125: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2714); + lookahead == 's') ADVANCE(2718); END_STATE(); case 1126: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2716); + lookahead == 's') ADVANCE(2607); END_STATE(); case 1127: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2546); + lookahead == 's') ADVANCE(2719); END_STATE(); case 1128: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2722); + lookahead == 's') ADVANCE(2631); END_STATE(); case 1129: if (lookahead == 'S' || - lookahead == 's') ADVANCE(539); + lookahead == 's') ADVANCE(2599); END_STATE(); case 1130: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1111); + lookahead == 's') ADVANCE(2707); END_STATE(); case 1131: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1191); + lookahead == 's') ADVANCE(2708); END_STATE(); case 1132: if (lookahead == 'S' || - lookahead == 's') ADVANCE(385); + lookahead == 's') ADVANCE(2538); END_STATE(); case 1133: if (lookahead == 'S' || - lookahead == 's') ADVANCE(463); + lookahead == 's') ADVANCE(2606); END_STATE(); case 1134: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1161); + lookahead == 's') ADVANCE(2733); END_STATE(); case 1135: if (lookahead == 'S' || - lookahead == 's') ADVANCE(721); + lookahead == 's') ADVANCE(2735); END_STATE(); case 1136: if (lookahead == 'S' || - lookahead == 's') ADVANCE(699); + lookahead == 's') ADVANCE(2565); END_STATE(); case 1137: if (lookahead == 'S' || - lookahead == 's') ADVANCE(277); + lookahead == 's') ADVANCE(2741); END_STATE(); case 1138: if (lookahead == 'S' || - lookahead == 's') ADVANCE(467); + lookahead == 's') ADVANCE(541); END_STATE(); case 1139: if (lookahead == 'S' || - lookahead == 's') ADVANCE(318); + lookahead == 's') ADVANCE(1119); END_STATE(); case 1140: if (lookahead == 'S' || - lookahead == 's') ADVANCE(730); + lookahead == 's') ADVANCE(1202); END_STATE(); case 1141: if (lookahead == 'S' || - lookahead == 's') ADVANCE(609); + lookahead == 's') ADVANCE(390); END_STATE(); case 1142: if (lookahead == 'S' || - lookahead == 's') ADVANCE(483); + lookahead == 's') ADVANCE(469); END_STATE(); case 1143: if (lookahead == 'S' || - lookahead == 's') ADVANCE(549); + lookahead == 's') ADVANCE(1171); END_STATE(); case 1144: if (lookahead == 'S' || - lookahead == 's') ADVANCE(574); + lookahead == 's') ADVANCE(726); END_STATE(); case 1145: if (lookahead == 'S' || - lookahead == 's') ADVANCE(462); + lookahead == 's') ADVANCE(1002); END_STATE(); case 1146: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1139); + lookahead == 's') ADVANCE(705); END_STATE(); case 1147: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1236); + lookahead == 's') ADVANCE(1156); END_STATE(); case 1148: if (lookahead == 'S' || - lookahead == 's') ADVANCE(626); + lookahead == 's') ADVANCE(278); END_STATE(); case 1149: if (lookahead == 'S' || - lookahead == 's') ADVANCE(734); + lookahead == 's') ADVANCE(473); END_STATE(); case 1150: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1239); + lookahead == 's') ADVANCE(736); END_STATE(); case 1151: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1239); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(340); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(596); + lookahead == 's') ADVANCE(615); END_STATE(); case 1152: if (lookahead == 'S' || - lookahead == 's') ADVANCE(756); + lookahead == 's') ADVANCE(489); END_STATE(); case 1153: if (lookahead == 'S' || - lookahead == 's') ADVANCE(631); + lookahead == 's') ADVANCE(554); END_STATE(); case 1154: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2573); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(577); END_STATE(); case 1155: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2572); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(468); END_STATE(); case 1156: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2709); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(319); END_STATE(); case 1157: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2644); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1247); END_STATE(); case 1158: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2626); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(630); END_STATE(); case 1159: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2650); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(740); END_STATE(); case 1160: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1250); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2575); + lookahead == 't') ADVANCE(342); END_STATE(); case 1161: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1250); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2643); + lookahead == 't') ADVANCE(342); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(601); END_STATE(); case 1162: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2547); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(763); END_STATE(); case 1163: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2520); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(637); END_STATE(); case 1164: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2551); + lookahead == 't') ADVANCE(2592); END_STATE(); case 1165: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2563); + lookahead == 't') ADVANCE(2591); END_STATE(); case 1166: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2606); + lookahead == 't') ADVANCE(2728); END_STATE(); case 1167: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2638); + lookahead == 't') ADVANCE(2663); END_STATE(); case 1168: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2605); + lookahead == 't') ADVANCE(2645); END_STATE(); case 1169: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2483); + lookahead == 't') ADVANCE(2669); END_STATE(); case 1170: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2570); + lookahead == 't') ADVANCE(2594); END_STATE(); case 1171: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2611); + lookahead == 't') ADVANCE(2662); END_STATE(); case 1172: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2655); + lookahead == 't') ADVANCE(2566); END_STATE(); case 1173: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2719); + lookahead == 't') ADVANCE(2539); END_STATE(); case 1174: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2707); + lookahead == 't') ADVANCE(2570); END_STATE(); case 1175: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2514); + lookahead == 't') ADVANCE(2582); END_STATE(); case 1176: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2516); + lookahead == 't') ADVANCE(2625); END_STATE(); case 1177: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2604); + lookahead == 't') ADVANCE(2657); END_STATE(); case 1178: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2552); + lookahead == 't') ADVANCE(2624); END_STATE(); case 1179: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2703); + lookahead == 't') ADVANCE(2502); END_STATE(); case 1180: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2620); + lookahead == 't') ADVANCE(2589); END_STATE(); case 1181: if (lookahead == 'T' || - lookahead == 't') ADVANCE(685); + lookahead == 't') ADVANCE(2630); END_STATE(); case 1182: if (lookahead == 'T' || - lookahead == 't') ADVANCE(341); + lookahead == 't') ADVANCE(2674); END_STATE(); case 1183: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2486); + lookahead == 't') ADVANCE(2738); END_STATE(); case 1184: if (lookahead == 'T' || - lookahead == 't') ADVANCE(278); + lookahead == 't') ADVANCE(2726); END_STATE(); case 1185: if (lookahead == 'T' || - lookahead == 't') ADVANCE(669); + lookahead == 't') ADVANCE(2533); END_STATE(); case 1186: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1314); + lookahead == 't') ADVANCE(2535); END_STATE(); case 1187: if (lookahead == 'T' || - lookahead == 't') ADVANCE(705); + lookahead == 't') ADVANCE(2623); END_STATE(); case 1188: if (lookahead == 'T' || - lookahead == 't') ADVANCE(671); + lookahead == 't') ADVANCE(2571); END_STATE(); case 1189: if (lookahead == 'T' || - lookahead == 't') ADVANCE(728); + lookahead == 't') ADVANCE(2722); END_STATE(); case 1190: if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + lookahead == 't') ADVANCE(1071); END_STATE(); case 1191: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1064); + lookahead == 't') ADVANCE(2639); END_STATE(); case 1192: if (lookahead == 'T' || - lookahead == 't') ADVANCE(340); + lookahead == 't') ADVANCE(691); END_STATE(); case 1193: if (lookahead == 'T' || - lookahead == 't') ADVANCE(340); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(596); + lookahead == 't') ADVANCE(343); END_STATE(); case 1194: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1058); + lookahead == 't') ADVANCE(2505); END_STATE(); case 1195: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1124); + lookahead == 't') ADVANCE(279); END_STATE(); case 1196: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1306); + lookahead == 't') ADVANCE(675); END_STATE(); case 1197: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1117); + lookahead == 't') ADVANCE(1327); END_STATE(); case 1198: if (lookahead == 'T' || - lookahead == 't') ADVANCE(710); + lookahead == 't') ADVANCE(730); END_STATE(); case 1199: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1103); + lookahead == 't') ADVANCE(677); END_STATE(); case 1200: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1029); + lookahead == 't') ADVANCE(734); END_STATE(); case 1201: if (lookahead == 'T' || - lookahead == 't') ADVANCE(166); + lookahead == 't') ADVANCE(548); END_STATE(); case 1202: if (lookahead == 'T' || - lookahead == 't') ADVANCE(713); + lookahead == 't') ADVANCE(1073); END_STATE(); case 1203: if (lookahead == 'T' || - lookahead == 't') ADVANCE(161); + lookahead == 't') ADVANCE(1067); END_STATE(); case 1204: if (lookahead == 'T' || - lookahead == 't') ADVANCE(165); + lookahead == 't') ADVANCE(342); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(601); END_STATE(); case 1205: if (lookahead == 'T' || - lookahead == 't') ADVANCE(963); + lookahead == 't') ADVANCE(1319); END_STATE(); case 1206: if (lookahead == 'T' || - lookahead == 't') ADVANCE(153); + lookahead == 't') ADVANCE(1133); END_STATE(); case 1207: if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(1110); END_STATE(); case 1208: if (lookahead == 'T' || - lookahead == 't') ADVANCE(970); + lookahead == 't') ADVANCE(715); END_STATE(); case 1209: if (lookahead == 'T' || - lookahead == 't') ADVANCE(172); + lookahead == 't') ADVANCE(1126); END_STATE(); case 1210: if (lookahead == 'T' || - lookahead == 't') ADVANCE(475); + lookahead == 't') ADVANCE(1038); END_STATE(); case 1211: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1227); + lookahead == 't') ADVANCE(166); END_STATE(); case 1212: if (lookahead == 'T' || - lookahead == 't') ADVANCE(606); + lookahead == 't') ADVANCE(160); END_STATE(); case 1213: if (lookahead == 'T' || - lookahead == 't') ADVANCE(476); + lookahead == 't') ADVANCE(719); END_STATE(); case 1214: if (lookahead == 'T' || - lookahead == 't') ADVANCE(570); + lookahead == 't') ADVANCE(165); END_STATE(); case 1215: if (lookahead == 'T' || - lookahead == 't') ADVANCE(496); + lookahead == 't') ADVANCE(972); END_STATE(); case 1216: if (lookahead == 'T' || - lookahead == 't') ADVANCE(572); + lookahead == 't') ADVANCE(152); END_STATE(); case 1217: if (lookahead == 'T' || - lookahead == 't') ADVANCE(681); + lookahead == 't') ADVANCE(261); END_STATE(); case 1218: if (lookahead == 'T' || - lookahead == 't') ADVANCE(291); + lookahead == 't') ADVANCE(980); END_STATE(); case 1219: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1271); + lookahead == 't') ADVANCE(481); END_STATE(); case 1220: if (lookahead == 'T' || - lookahead == 't') ADVANCE(406); + lookahead == 't') ADVANCE(172); END_STATE(); case 1221: if (lookahead == 'T' || - lookahead == 't') ADVANCE(406); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(706); + lookahead == 't') ADVANCE(1238); END_STATE(); case 1222: if (lookahead == 'T' || - lookahead == 't') ADVANCE(966); + lookahead == 't') ADVANCE(611); END_STATE(); case 1223: if (lookahead == 'T' || - lookahead == 't') ADVANCE(342); + lookahead == 't') ADVANCE(482); END_STATE(); case 1224: if (lookahead == 'T' || - lookahead == 't') ADVANCE(967); + lookahead == 't') ADVANCE(572); END_STATE(); case 1225: if (lookahead == 'T' || - lookahead == 't') ADVANCE(573); + lookahead == 't') ADVANCE(502); END_STATE(); case 1226: if (lookahead == 'T' || - lookahead == 't') ADVANCE(577); + lookahead == 't') ADVANCE(576); END_STATE(); case 1227: if (lookahead == 'T' || - lookahead == 't') ADVANCE(971); + lookahead == 't') ADVANCE(688); END_STATE(); case 1228: if (lookahead == 'T' || - lookahead == 't') ADVANCE(584); + lookahead == 't') ADVANCE(292); END_STATE(); case 1229: if (lookahead == 'T' || - lookahead == 't') ADVANCE(297); + lookahead == 't') ADVANCE(1283); END_STATE(); case 1230: if (lookahead == 'T' || - lookahead == 't') ADVANCE(974); + lookahead == 't') ADVANCE(410); END_STATE(); case 1231: if (lookahead == 'T' || - lookahead == 't') ADVANCE(735); + lookahead == 't') ADVANCE(410); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(713); END_STATE(); case 1232: if (lookahead == 'T' || - lookahead == 't') ADVANCE(731); + lookahead == 't') ADVANCE(975); END_STATE(); case 1233: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1030); + lookahead == 't') ADVANCE(299); END_STATE(); case 1234: if (lookahead == 'T' || - lookahead == 't') ADVANCE(743); + lookahead == 't') ADVANCE(344); END_STATE(); case 1235: if (lookahead == 'T' || - lookahead == 't') ADVANCE(741); + lookahead == 't') ADVANCE(978); END_STATE(); case 1236: if (lookahead == 'T' || - lookahead == 't') ADVANCE(618); + lookahead == 't') ADVANCE(575); END_STATE(); case 1237: if (lookahead == 'T' || - lookahead == 't') ADVANCE(748); + lookahead == 't') ADVANCE(578); END_STATE(); case 1238: if (lookahead == 'T' || - lookahead == 't') ADVANCE(751); + lookahead == 't') ADVANCE(979); END_STATE(); case 1239: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1110); + lookahead == 't') ADVANCE(297); END_STATE(); case 1240: if (lookahead == 'T' || - lookahead == 't') ADVANCE(343); + lookahead == 't') ADVANCE(984); END_STATE(); case 1241: if (lookahead == 'T' || - lookahead == 't') ADVANCE(625); + lookahead == 't') ADVANCE(588); END_STATE(); case 1242: if (lookahead == 'T' || - lookahead == 't') ADVANCE(345); + lookahead == 't') ADVANCE(741); END_STATE(); case 1243: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(635); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(737); END_STATE(); case 1244: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(892); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1039); END_STATE(); case 1245: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(836); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(750); END_STATE(); case 1246: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1055); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(747); END_STATE(); case 1247: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(786); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(623); END_STATE(); case 1248: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1135); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(755); END_STATE(); case 1249: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1001); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(758); END_STATE(); case 1250: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(826); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1118); END_STATE(); case 1251: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(827); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(346); END_STATE(); case 1252: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(828); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(629); END_STATE(); case 1253: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(829); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(348); END_STATE(); case 1254: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1062); + lookahead == 'u') ADVANCE(640); END_STATE(); case 1255: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1125); + lookahead == 'u') ADVANCE(897); END_STATE(); case 1256: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1128); + lookahead == 'u') ADVANCE(1062); END_STATE(); case 1257: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(801); + lookahead == 'u') ADVANCE(792); END_STATE(); case 1258: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(473); + lookahead == 'u') ADVANCE(844); END_STATE(); case 1259: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1211); + lookahead == 'u') ADVANCE(1144); END_STATE(); case 1260: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(867); + lookahead == 'u') ADVANCE(1011); END_STATE(); case 1261: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(924); + lookahead == 'u') ADVANCE(834); END_STATE(); case 1262: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1208); + lookahead == 'u') ADVANCE(835); END_STATE(); case 1263: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1183); + lookahead == 'u') ADVANCE(836); END_STATE(); case 1264: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1164); + lookahead == 'u') ADVANCE(837); END_STATE(); case 1265: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1178); + lookahead == 'u') ADVANCE(1069); END_STATE(); case 1266: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(521); + lookahead == 'u') ADVANCE(1134); END_STATE(); case 1267: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(387); + lookahead == 'u') ADVANCE(809); END_STATE(); case 1268: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(840); + lookahead == 'u') ADVANCE(1137); END_STATE(); case 1269: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1097); + lookahead == 'u') ADVANCE(479); END_STATE(); case 1270: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(841); + lookahead == 'u') ADVANCE(1221); END_STATE(); case 1271: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1081); + lookahead == 'u') ADVANCE(875); END_STATE(); case 1272: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(910); + lookahead == 'u') ADVANCE(933); END_STATE(); case 1273: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(719); + lookahead == 'u') ADVANCE(1218); END_STATE(); case 1274: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1087); + lookahead == 'u') ADVANCE(1210); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(590); END_STATE(); case 1275: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1088); + lookahead == 'u') ADVANCE(1194); END_STATE(); case 1276: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(587); + lookahead == 'u') ADVANCE(1174); END_STATE(); case 1277: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1233); + lookahead == 'u') ADVANCE(1188); END_STATE(); case 1278: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(410); + lookahead == 'u') ADVANCE(523); END_STATE(); case 1279: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(516); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(391); END_STATE(); case 1280: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(497); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1105); END_STATE(); case 1281: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(519); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(849); END_STATE(); case 1282: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(320); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(850); END_STATE(); case 1283: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(328); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1089); END_STATE(); case 1284: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(620); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(919); END_STATE(); case 1285: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(604); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(724); END_STATE(); case 1286: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(616); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1190); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1095); END_STATE(); case 1287: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(610); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1096); END_STATE(); case 1288: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(630); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(591); END_STATE(); case 1289: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2522); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1180); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1244); END_STATE(); case 1290: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2693); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(414); END_STATE(); case 1291: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2623); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(522); END_STATE(); case 1292: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(737); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(503); END_STATE(); case 1293: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(868); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(527); END_STATE(); case 1294: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(689); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(322); END_STATE(); case 1295: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(621); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2639); + lookahead == 'x') ADVANCE(1201); END_STATE(); case 1296: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2671); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(624); END_STATE(); case 1297: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2672); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(609); END_STATE(); case 1298: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1204); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(330); END_STATE(); case 1299: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(622); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(736); + lookahead == 'x') ADVANCE(1201); END_STATE(); case 1300: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(603); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(616); END_STATE(); case 1301: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(608); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(636); END_STATE(); case 1302: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2545); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2541); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1191); END_STATE(); case 1303: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2621); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2712); END_STATE(); case 1304: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2598); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2642); END_STATE(); case 1305: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2669); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(743); END_STATE(); case 1306: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2574); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(876); END_STATE(); case 1307: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2702); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(695); END_STATE(); case 1308: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2660); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2658); END_STATE(); case 1309: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2648); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2690); END_STATE(); case 1310: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1294); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2691); END_STATE(); case 1311: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2622); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1214); END_STATE(); case 1312: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2583); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(742); END_STATE(); case 1313: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(920); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(608); END_STATE(); case 1314: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1023); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(613); END_STATE(); case 1315: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1024); + lookahead == 'y') ADVANCE(2564); END_STATE(); case 1316: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(262); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2640); END_STATE(); case 1317: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(484); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2617); END_STATE(); case 1318: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(563); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2688); END_STATE(); case 1319: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(524); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2593); END_STATE(); case 1320: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(526); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2721); END_STATE(); case 1321: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(347); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2679); END_STATE(); case 1322: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2667); END_STATE(); case 1323: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2466); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1307); END_STATE(); case 1324: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1323); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); END_STATE(); case 1325: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1324); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2602); END_STATE(); case 1326: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1325); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(929); END_STATE(); case 1327: - if (eof) ADVANCE(1332); - if (lookahead == '\n') SKIP(1329) + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1032); END_STATE(); case 1328: - if (eof) ADVANCE(1332); - if (lookahead == '\n') SKIP(1329) - if (lookahead == '\r') SKIP(1327) + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1033); 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 == 'Z' || + lookahead == 'z') ADVANCE(262); + END_STATE(); + case 1330: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(490); + END_STATE(); + case 1331: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(564); + END_STATE(); + case 1332: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(529); + END_STATE(); + case 1333: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(531); + END_STATE(); + case 1334: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(350); + END_STATE(); + case 1335: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); + END_STATE(); + case 1336: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2485); + END_STATE(); + case 1337: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1336); + END_STATE(); + case 1338: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1337); + END_STATE(); + case 1339: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1338); + END_STATE(); + case 1340: + if (eof) ADVANCE(1345); + if (lookahead == '\n') SKIP(1342) + END_STATE(); + case 1341: + if (eof) ADVANCE(1345); + if (lookahead == '\n') SKIP(1342) + if (lookahead == '\r') SKIP(1340) + END_STATE(); + case 1342: + if (eof) ADVANCE(1345); + if (lookahead == '(') ADVANCE(2495); + if (lookahead == ')') ADVANCE(2496); + if (lookahead == '*') ADVANCE(2478); + if (lookahead == '+') ADVANCE(2507); + if (lookahead == ',') ADVANCE(2487); + if (lookahead == '-') ADVANCE(2508); + if (lookahead == '.') ADVANCE(2479); + if (lookahead == '/') ADVANCE(1363); + if (lookahead == ':') ADVANCE(1346); + if (lookahead == '<') ADVANCE(2511); + if (lookahead == '=') ADVANCE(2514); + if (lookahead == '>') ADVANCE(2515); 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 == '[') ADVANCE(2486); + if (lookahead == '\\') SKIP(1341) + if (lookahead == ']') ADVANCE(2488); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'n') ADVANCE(510); + if (lookahead == 's') ADVANCE(516); + if (lookahead == '{') ADVANCE(1364); + if (lookahead == '}') ADVANCE(1369); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(348); + lookahead == 'a') ADVANCE(351); if (lookahead == 'C' || lookahead == 'c') ADVANCE(252); if (lookahead == 'D' || @@ -21631,74 +21870,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(254); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(692); + lookahead == 'f') ADVANCE(698); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(511); + lookahead == 'g') ADVANCE(517); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(518); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(830); + lookahead == 'i') ADVANCE(838); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(534); + lookahead == 'k') ADVANCE(536); if (lookahead == 'L' || lookahead == 'l') ADVANCE(255); if (lookahead == 'M' || lookahead == 'm') ADVANCE(256); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(633); + lookahead == 'o') ADVANCE(639); if (lookahead == 'P' || lookahead == 'p') ADVANCE(258); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(373); + lookahead == 'r') ADVANCE(377); if (lookahead == 'T' || lookahead == 't') ADVANCE(269); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(879); + lookahead == 'u') ADVANCE(884); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(938); + lookahead == 'v') ADVANCE(947); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(672); + lookahead == 'w') ADVANCE(678); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(835); + lookahead == 'x') ADVANCE(843); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2692); + lookahead == 'y') ADVANCE(2711); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(1329) + lookahead == 65279) SKIP(1342) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); END_STATE(); - case 1330: - if (eof) ADVANCE(1332); + case 1343: + if (eof) ADVANCE(1345); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1440); + lookahead == 'c') ADVANCE(1454); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1716); + lookahead == 'd') ADVANCE(1730); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1932); + lookahead == 'e') ADVANCE(1946); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1873); + lookahead == 'f') ADVANCE(1896); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2027); + lookahead == 'i') ADVANCE(2043); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2008); + lookahead == 'o') ADVANCE(2023); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2223); + lookahead == 'p') ADVANCE(2241); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1699); + lookahead == 'r') ADVANCE(1713); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2054); + lookahead == 'u') ADVANCE(2069); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1482); + lookahead == 'v') ADVANCE(1494); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -21706,37 +21945,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(1330) + lookahead == 65279) SKIP(1343) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); - case 1331: - if (eof) ADVANCE(1332); + case 1344: + if (eof) ADVANCE(1345); if (lookahead == '/') ADVANCE(133); - if (lookahead == '\\') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1351); + if (lookahead == '\\') ADVANCE(2477); + if (lookahead == '{') ADVANCE(1364); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1440); + lookahead == 'c') ADVANCE(1454); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1716); + lookahead == 'd') ADVANCE(1730); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2062); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1873); + lookahead == 'f') ADVANCE(1896); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2027); + lookahead == 'i') ADVANCE(2043); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1715); + lookahead == 'n') ADVANCE(1729); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2008); + lookahead == 'o') ADVANCE(2023); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2223); + lookahead == 'p') ADVANCE(2241); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1699); + lookahead == 'r') ADVANCE(1713); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2054); + lookahead == 'u') ADVANCE(2069); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1482); + lookahead == 'v') ADVANCE(1494); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -21744,2777 +21985,2611 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(1331) + lookahead == 65279) SKIP(1344) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2477); END_STATE(); - case 1332: + case 1345: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1333: + case 1346: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1334: + case 1347: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1335: + case 1348: ACCEPT_TOKEN(sym_file_name); END_STATE(); - case 1336: + case 1349: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 1337: + case 1350: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0) ADVANCE(135); END_STATE(); - case 1338: + case 1351: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead == '.') ADVANCE(251); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(193); END_STATE(); - case 1339: + case 1352: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2473); + lookahead != '\\') ADVANCE(2492); END_STATE(); - case 1340: + case 1353: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1341: + case 1354: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\r') ADVANCE(1344); + if (lookahead == '\r') ADVANCE(1357); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1342: + case 1355: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '*') ADVANCE(1348); - if (lookahead == '/') ADVANCE(1340); + if (lookahead == '*') ADVANCE(1361); + if (lookahead == '/') ADVANCE(1353); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1343: + case 1356: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '\\') ADVANCE(1341); - if (lookahead == '{') ADVANCE(1354); + if (lookahead == '/') ADVANCE(1355); + if (lookahead == '\\') ADVANCE(1354); + if (lookahead == '{') ADVANCE(1367); if (lookahead == '\t' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1343); + lookahead == 65279) ADVANCE(1356); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1344: + case 1357: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1345: + case 1358: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 1346: + case 1359: ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0 && lookahead != '/') ADVANCE(135); END_STATE(); - case 1347: + case 1360: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2473); + lookahead != '\\') ADVANCE(2492); END_STATE(); - case 1348: + case 1361: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1349: + case 1362: ACCEPT_TOKEN(aux_sym_comment_token2); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0 && lookahead != '/') ADVANCE(135); END_STATE(); - case 1350: + case 1363: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1345); - if (lookahead == '/') ADVANCE(1336); + if (lookahead == '*') ADVANCE(1358); + if (lookahead == '/') ADVANCE(1349); END_STATE(); - case 1351: + case 1364: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 1352: + case 1365: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(1349); + if (lookahead == '*') ADVANCE(1362); if (lookahead != 0) ADVANCE(135); END_STATE(); - case 1353: + case 1366: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2473); + lookahead != '\\') ADVANCE(2492); END_STATE(); - case 1354: + case 1367: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1344); + lookahead != '\n') ADVANCE(1357); END_STATE(); - case 1355: + case 1368: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 1356: + case 1369: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 1357: + case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(2678); + if (lookahead == ' ') ADVANCE(2697); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1358: - ACCEPT_TOKEN(sym_identifier); - 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(2458); - END_STATE(); - case 1359: - ACCEPT_TOKEN(sym_identifier); - 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(2458); - END_STATE(); - case 1360: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1733); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1361: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1362: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1865); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1363: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1624); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1364: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1739); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1365: - ACCEPT_TOKEN(sym_identifier); - 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(2458); - END_STATE(); - case 1366: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2053); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1367: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1838); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1368: - ACCEPT_TOKEN(sym_identifier); - 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(2458); - END_STATE(); - case 1369: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1410); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); - END_STATE(); - case 1370: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1582); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1406); + if (lookahead == '-') ADVANCE(1421); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1590); + if (lookahead == '-') ADVANCE(1746); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1409); + if (lookahead == '-') ADVANCE(1746); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1541); + if (lookahead == '-') ADVANCE(1453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1796); + if (lookahead == '-') ADVANCE(1881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1811); + if (lookahead == '-') ADVANCE(1622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1605); + if (lookahead == '-') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2164); + if (lookahead == '-') ADVANCE(2260); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1765); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1844); + if (lookahead == '-') ADVANCE(2070); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2168); + if (lookahead == '-') ADVANCE(1853); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1944); + if (lookahead == '-') ADVANCE(1423); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1452); + if (lookahead == '-') ADVANCE(1423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2358); + if (lookahead == '-') ADVANCE(1595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2281); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1754); + if (lookahead == '-') ADVANCE(1419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2214); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2111); + if (lookahead == '-') ADVANCE(1603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2332); + if (lookahead == '-') ADVANCE(1422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1574); + if (lookahead == '-') ADVANCE(1554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2378); + if (lookahead == '-') ADVANCE(1810); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2166); + if (lookahead == '-') ADVANCE(1619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2402); + if (lookahead == '-') ADVANCE(1826); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1991); + if (lookahead == '-') ADVANCE(2181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1909); + if (lookahead == '-') ADVANCE(1859); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1946); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2524); + if (lookahead == '-') ADVANCE(2185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1946); + if (lookahead == '-') ADVANCE(1959); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2278); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2613); + if (lookahead == '-') ADVANCE(1464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1870); + if (lookahead == '-') ADVANCE(2376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1950); + if (lookahead == '-') ADVANCE(2300); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1765); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1869); + if (lookahead == '-') ADVANCE(2232); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2291); + if (lookahead == '-') ADVANCE(2351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2119); + if (lookahead == '-') ADVANCE(1587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1734); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + if (lookahead == '-') ADVANCE(2396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1734); + if (lookahead == '-') ADVANCE(2183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1866); + if (lookahead == '-') ADVANCE(2421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1583); + if (lookahead == '-') ADVANCE(1924); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2380); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1894); + if (lookahead == '-') ADVANCE(1960); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '3') ADVANCE(1620); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1407: ACCEPT_TOKEN(sym_identifier); - 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') || + if (lookahead == '-') ADVANCE(2007); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1408: ACCEPT_TOKEN(sym_identifier); - 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') || + if (lookahead == '-') ADVANCE(2298); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2632); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1430); - if (lookahead == 'e') ADVANCE(2246); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1431); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(2543); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1883); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1415); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(2310); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(1412); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(2137); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(1413); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1747); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2500); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(1411); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1747); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1416: ACCEPT_TOKEN(sym_identifier); - 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') || + if (lookahead == '-') ADVANCE(1882); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1414); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1428); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(2398); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1909); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(2194); + if (lookahead == '3') ADVANCE(1635); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1368); - if (lookahead == 'o') ADVANCE(2294); + if (lookahead == 'C') ADVANCE(1438); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); + lookahead == 'e') ADVANCE(2199); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1474); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1823); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2406); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1471); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1369); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); + if (lookahead == 'E') ADVANCE(1443); + if (lookahead == 'e') ADVANCE(2265); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2115); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1369); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + if (lookahead == 'E') ADVANCE(1443); + if (lookahead == 'e') ADVANCE(2265); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1369); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2424); + if (lookahead == 'E') ADVANCE(1444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1373); - if (lookahead == 'o') ADVANCE(1402); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); + if (lookahead == 'G') ADVANCE(2562); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1417); + if (lookahead == 'I') ADVANCE(1428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1419); - if (lookahead == 'r') ADVANCE(2122); + if (lookahead == 'L') ADVANCE(1425); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(2558); - if (lookahead == 'r') ADVANCE(2558); + if (lookahead == 'L') ADVANCE(1426); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(2591); + if (lookahead == 'N') ADVANCE(1424); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1418); + if (lookahead == 'O') ADVANCE(1371); + if (lookahead == 'o') ADVANCE(1372); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2520); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1426); - if (lookahead == 'r') ADVANCE(2245); + if (lookahead == 'O') ADVANCE(1427); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1429); + if (lookahead == 'O') ADVANCE(1441); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1432: ACCEPT_TOKEN(sym_identifier); - 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(1701); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1793); + if (lookahead == 'O') ADVANCE(1440); + if (lookahead == 'o') ADVANCE(2212); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(2630); + if (lookahead == 'O') ADVANCE(1381); + if (lookahead == 'o') ADVANCE(2313); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1808); + lookahead == 'e') ADVANCE(2520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1575); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1449); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1921); + if (lookahead == 'O') ADVANCE(1382); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1539); + if (lookahead == 'O') ADVANCE(1382); 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); + lookahead == 'e') ADVANCE(2519); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2150); + if (lookahead == 'O') ADVANCE(1382); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2352); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2077); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1602); + lookahead == 'e') ADVANCE(2443); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1554); + if (lookahead == 'O') ADVANCE(1386); + if (lookahead == 'o') ADVANCE(1415); 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); + lookahead == 'e') ADVANCE(2520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + if (lookahead == 'R') ADVANCE(1430); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - 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 == 'R') ADVANCE(1432); + if (lookahead == 'r') ADVANCE(2140); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2274); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1450); + if (lookahead == 'R') ADVANCE(2577); + if (lookahead == 'r') ADVANCE(2577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - 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 == 'R') ADVANCE(2610); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1556); + if (lookahead == 'R') ADVANCE(1431); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - 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 == 'R') ADVANCE(1439); + if (lookahead == 'r') ADVANCE(2264); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1384); + if (lookahead == 'R') ADVANCE(1442); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2439); + if (lookahead == 'Y') ADVANCE(2660); + if (lookahead == 'y') ADVANCE(2660); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1822); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1600); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2079); + lookahead == 'i') ADVANCE(2026); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1715); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1807); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1812); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1949); + if (lookahead == 'Y') ADVANCE(2649); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1822); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1447: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1990); + lookahead == 'a') ADVANCE(1588); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1461); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1980); + lookahead == 'o') ADVANCE(1936); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1448: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1990); + lookahead == 'a') ADVANCE(1552); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1933); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1548); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1449: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2270); + lookahead == 'a') ADVANCE(2168); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2370); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2095); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2280); + lookahead == 'o') ADVANCE(1616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1450: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2270); + lookahead == 'a') ADVANCE(1567); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2225); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1602); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2262); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1864); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1451: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1914); + lookahead == 'a') ADVANCE(1824); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1452: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1804); + lookahead == 'a') ADVANCE(1378); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1453: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2151); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1603); + lookahead == 'a') ADVANCE(2442); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2120); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1459); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2153); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1454: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(2293); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1455: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1544); + lookahead == 'a') ADVANCE(1569); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1845); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1876); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2294); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1605); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2228); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1784); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1564); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1456: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2183); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1855); + lookahead == 'a') ADVANCE(1569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1457: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2328); + lookahead == 'a') ADVANCE(2344); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1808); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2152); + lookahead == 'o') ADVANCE(2650); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1721); + lookahead == 'r') ADVANCE(2112); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1458: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2328); + lookahead == 'a') ADVANCE(1397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1459: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2039); + lookahead == 'a') ADVANCE(2458); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2097); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1460: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1981); + lookahead == 'a') ADVANCE(1827); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1961); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1461: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2218); + lookahead == 'a') ADVANCE(2289); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2299); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1462: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1922); + lookahead == 'a') ADVANCE(2289); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1463: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1982); + lookahead == 'a') ADVANCE(1929); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1464: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2333); + lookahead == 'a') ADVANCE(1818); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1465: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1940); + lookahead == 'a') ADVANCE(2169); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1617); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1466: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1924); + lookahead == 'a') ADVANCE(2006); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1996); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1467: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2205); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2556); + lookahead == 'a') ADVANCE(2006); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1468: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2205); + lookahead == 'a') ADVANCE(2257); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2013); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1723); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2634); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1473); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1469: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2155); + lookahead == 'a') ADVANCE(1557); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1470: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1925); + lookahead == 'a') ADVANCE(2201); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1868); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1471: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1555); + lookahead == 'a') ADVANCE(2347); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2170); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1906); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1538); + lookahead == 'r') ADVANCE(1785); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1472: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2353); + lookahead == 'a') ADVANCE(2347); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1473: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2347); + lookahead == 'a') ADVANCE(2055); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1474: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1951); + lookahead == 'a') ADVANCE(2233); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1475: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1929); + lookahead == 'a') ADVANCE(1937); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1476: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2049); + lookahead == 'a') ADVANCE(1997); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1477: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2330); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2228); + lookahead == 'a') ADVANCE(1998); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1478: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2209); + lookahead == 'a') ADVANCE(1955); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1479: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2306); + lookahead == 'a') ADVANCE(1939); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1480: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1952); + lookahead == 'a') ADVANCE(2223); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2575); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); + lookahead == 'a') ADVANCE(2223); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1482: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2200); + lookahead == 'a') ADVANCE(2173); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1483: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(1940); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1484: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2359); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1602); + lookahead == 'a') ADVANCE(1568); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1921); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1485: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2359); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1603); + lookahead == 'a') ADVANCE(2371); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1486: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2317); + lookahead == 'a') ADVANCE(2365); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1487: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2169); + lookahead == 'a') ADVANCE(1965); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1488: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1871); + lookahead == 'a') ADVANCE(1944); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1489: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1543); + lookahead == 'a') ADVANCE(2349); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1490: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2215); + lookahead == 'a') ADVANCE(2065); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1491: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2407); + lookahead == 'a') ADVANCE(2325); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1492: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1386); + lookahead == 'a') ADVANCE(2227); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1493: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1973); + lookahead == 'a') ADVANCE(1943); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1494: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2348); + lookahead == 'a') ADVANCE(2218); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1495: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1874); + lookahead == 'a') ADVANCE(2027); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1548); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1496: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2221); + lookahead == 'a') ADVANCE(2377); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1497: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1814); + lookahead == 'a') ADVANCE(2377); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1617); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1498: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1570); + lookahead == 'a') ADVANCE(2336); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1499: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1948); + lookahead == 'a') ADVANCE(2186); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1500: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2276); + lookahead == 'a') ADVANCE(1886); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1501: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2338); + lookahead == 'a') ADVANCE(1556); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1502: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1815); + lookahead == 'a') ADVANCE(2235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1503: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1993); + lookahead == 'a') ADVANCE(2426); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1504: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2341); + lookahead == 'a') ADVANCE(1399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1505: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1994); + lookahead == 'a') ADVANCE(1989); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1506: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1573); + lookahead == 'a') ADVANCE(2366); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1507: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2350); + lookahead == 'a') ADVANCE(1888); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1508: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2288); + lookahead == 'a') ADVANCE(2240); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1509: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2342); + lookahead == 'a') ADVANCE(1829); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1510: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1816); + lookahead == 'a') ADVANCE(1583); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1511: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2250); + lookahead == 'a') ADVANCE(1963); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1512: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1817); + lookahead == 'a') ADVANCE(1968); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1513: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1818); + lookahead == 'a') ADVANCE(2295); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1514: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2236); + lookahead == 'a') ADVANCE(2356); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1515: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1810); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2243); + lookahead == 'a') ADVANCE(1830); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1516: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1890); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2435); + lookahead == 'a') ADVANCE(2009); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1517: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1890); + lookahead == 'a') ADVANCE(2359); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1518: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2244); + lookahead == 'a') ADVANCE(1586); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1519: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(2010); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1520: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1540); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2499); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2498); + lookahead == 'a') ADVANCE(2368); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1521: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2371); + lookahead == 'a') ADVANCE(2307); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1522: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); + lookahead == 'a') ADVANCE(2361); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1523: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1546); + lookahead == 'a') ADVANCE(1831); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1524: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2376); + lookahead == 'a') ADVANCE(2268); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1525: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1367); + lookahead == 'a') ADVANCE(1832); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1526: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); + lookahead == 'a') ADVANCE(1833); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1527: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2377); + lookahead == 'a') ADVANCE(2254); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1528: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1548); + lookahead == 'a') ADVANCE(1825); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2262); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1529: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1586); + lookahead == 'a') ADVANCE(1905); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2454); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1530: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2433); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2077); + lookahead == 'a') ADVANCE(1905); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1531: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1977); + lookahead == 'a') ADVANCE(2263); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - 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 == 'A' || + lookahead == 'a') ADVANCE(1553); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1933); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2273); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1553); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1361); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2389); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1377); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1558); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2384); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2083); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2180); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2384); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1966); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1560); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1719); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1604); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2298); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1560); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1719); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2395); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2397); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1561); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1466); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1599); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1956); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2452); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2095); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1738); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1992); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1545: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1960); + lookahead == 'b') ADVANCE(2292); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1604); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2189); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2497); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2346); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1546: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1961); + lookahead == 'b') ADVANCE(2292); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1547: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1962); + lookahead == 'b') ADVANCE(1374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1548: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1964); + lookahead == 'b') ADVANCE(1389); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2095); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1798); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2093); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2402); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2101); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2198); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1830); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2402); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1711); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1774); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1981); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2525); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1618); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2528); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1733); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1920); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1648); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1460); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2416); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1920); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1479); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1825); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1971); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2094); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1799); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1751); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1915); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1975); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1827); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1976); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1916); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1977); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1837); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1853); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1979); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1562: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1917); + lookahead == 'c') ADVANCE(2113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1812); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2112); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1563: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1487); + lookahead == 'c') ADVANCE(1845); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1564: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2395); + lookahead == 'c') ADVANCE(1725); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1788); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1565: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2331); + lookahead == 'c') ADVANCE(2544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1566: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1723); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1477); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1767); + lookahead == 'c') ADVANCE(2547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1567: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1723); + lookahead == 'c') ADVANCE(1935); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1662); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1568: ACCEPT_TOKEN(sym_identifier); @@ -24526,10953 +24601,11197 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1569: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1655); + lookahead == 'c') ADVANCE(1840); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1570: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2311); + lookahead == 'c') ADVANCE(2109); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1813); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1571: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1748); + lookahead == 'c') ADVANCE(1930); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1572: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1674); + lookahead == 'c') ADVANCE(1842); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1573: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1683); + lookahead == 'c') ADVANCE(1931); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1574: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2100); + lookahead == 'c') ADVANCE(1852); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1869); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1575: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1832); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1644); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1559); + lookahead == 'c') ADVANCE(1932); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1576: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1868); + lookahead == 'c') ADVANCE(1499); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1577: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2364); + lookahead == 'c') ADVANCE(2350); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1578: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1833); + lookahead == 'c') ADVANCE(2414); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1579: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1834); + lookahead == 'c') ADVANCE(1734); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1489); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1779); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1580: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2349); + lookahead == 'c') ADVANCE(1734); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1581: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2351); + lookahead == 'c') ADVANCE(1951); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1582: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2128); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2106); + lookahead == 'c') ADVANCE(1669); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1583: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2139); + lookahead == 'c') ADVANCE(2330); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1584: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1839); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1907); + lookahead == 'c') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1585: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2365); + lookahead == 'c') ADVANCE(1688); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1586: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2374); + lookahead == 'c') ADVANCE(1697); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1587: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2142); + lookahead == 'c') ADVANCE(2118); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1588: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2145); + lookahead == 'c') ADVANCE(1847); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1658); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1572); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1589: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2146); + lookahead == 'c') ADVANCE(1884); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1590: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2148); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1578); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1469); + lookahead == 'c') ADVANCE(2382); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2646); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2429); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1848); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2461); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1849); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2510); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2668); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2369); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2524); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2146); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2124); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2557); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2159); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2578); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1854); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1922); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2527); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2383); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2603); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2705); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2162); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2530); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2163); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2403); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2282); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2164); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2403); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2166); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1591); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1482); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1604: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2272); + lookahead == 'd') ADVANCE(2665); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1605: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1872); + lookahead == 'd') ADVANCE(2480); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1995); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1606: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2083); + lookahead == 'd') ADVANCE(2480); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1607: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1392); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1405); + lookahead == 'd') ADVANCE(2529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1608: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2264); + lookahead == 'd') ADVANCE(2687); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1609: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - 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); + lookahead == 'd') ADVANCE(2543); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1610: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2098); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2069); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2154); + lookahead == 'd') ADVANCE(2576); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1611: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1784); + lookahead == 'd') ADVANCE(2597); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1612: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2087); + lookahead == 'd') ADVANCE(2546); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1613: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1662); + lookahead == 'd') ADVANCE(2622); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1614: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1705); + lookahead == 'd') ADVANCE(2724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1615: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1742); + lookahead == 'd') ADVANCE(2549); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1616: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1706); + lookahead == 'd') ADVANCE(2422); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2301); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1617: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1718); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2323); + lookahead == 'd') ADVANCE(2422); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1618: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1718); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2399); + lookahead == 'd') ADVANCE(2291); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1619: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1919); + lookahead == 'd') ADVANCE(1887); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1620: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1404); + lookahead == 'd') ADVANCE(2101); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1621: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1753); + lookahead == 'd') ADVANCE(1404); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1418); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1622: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1820); + lookahead == 'd') ADVANCE(1514); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2155); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1623: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1621); + lookahead == 'd') ADVANCE(2283); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1624: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1501); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2135); + lookahead == 'd') ADVANCE(2116); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2087); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1895); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2172); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1625: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1963); + lookahead == 'd') ADVANCE(2116); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2087); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2172); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1626: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2410); + lookahead == 'd') ADVANCE(1798); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1627: ACCEPT_TOKEN(sym_identifier); - 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(1701); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1793); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2641); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1808); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1587); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1808); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2072); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1719); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1808); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1701); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2641); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1754); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1808); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1359); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1979); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1732); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2342); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1401); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1732); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2418); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1402); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1934); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2294); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2501); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1766); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1637: ACCEPT_TOKEN(sym_identifier); - 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 == 'D' || + lookahead == 'd') ADVANCE(1835); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2505); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2092); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2503); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1636); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2505); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2503); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1978); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1934); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2429); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1641: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2499); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1535); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2498); + lookahead == 'e') ADVANCE(1822); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1600); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2026); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1715); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1807); + 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); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1642: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2499); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2498); + lookahead == 'e') ADVANCE(1822); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1600); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1643: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2697); + lookahead == 'e') ADVANCE(1822); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2090); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1644: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2632); + lookahead == 'e') ADVANCE(1822); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1715); + 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); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1645: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2560); + lookahead == 'e') ADVANCE(1822); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1646: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2685); + lookahead == 'e') ADVANCE(2520); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1372); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1647: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2479); + lookahead == 'e') ADVANCE(2520); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1414); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1648: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1395); + lookahead == 'e') ADVANCE(2520); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1415); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1649: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2541); + lookahead == 'e') ADVANCE(2520); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2313); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1650: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2596); + lookahead == 'e') ADVANCE(2520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1651: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2487); + lookahead == 'e') ADVANCE(2199); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1474); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1823); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2406); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1471); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1652: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2679); + lookahead == 'e') ADVANCE(2524); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2111); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1653: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2634); + lookahead == 'e') ADVANCE(2524); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1654: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2561); + lookahead == 'e') ADVANCE(1949); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1655: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2607); + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1548); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1656: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2533); + lookahead == 'e') ADVANCE(2518); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1657: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2670); + lookahead == 'e') ADVANCE(2716); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1658: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2649); + lookahead == 'e') ADVANCE(2651); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1659: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2609); + lookahead == 'e') ADVANCE(2579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1660: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2526); + lookahead == 'e') ADVANCE(2704); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1661: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2676); + lookahead == 'e') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1662: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2571); + lookahead == 'e') ADVANCE(1408); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1663: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2536); + lookahead == 'e') ADVANCE(2560); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1664: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2673); + lookahead == 'e') ADVANCE(2615); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1665: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2576); + lookahead == 'e') ADVANCE(2506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1666: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2610); + lookahead == 'e') ADVANCE(2698); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1667: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2633); + lookahead == 'e') ADVANCE(2653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1668: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2614); + lookahead == 'e') ADVANCE(2580); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1669: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2564); + lookahead == 'e') ADVANCE(2626); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1670: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2686); + lookahead == 'e') ADVANCE(2552); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1671: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2482); + lookahead == 'e') ADVANCE(2689); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1672: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2674); + lookahead == 'e') ADVANCE(2668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1673: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2654); + lookahead == 'e') ADVANCE(2628); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1674: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2553); + lookahead == 'e') ADVANCE(2545); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1675: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2531); + lookahead == 'e') ADVANCE(2695); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1676: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2595); + lookahead == 'e') ADVANCE(2590); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1677: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2663); + lookahead == 'e') ADVANCE(2555); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1678: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2665); + lookahead == 'e') ADVANCE(2692); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1679: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2664); + lookahead == 'e') ADVANCE(2595); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1680: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2662); + lookahead == 'e') ADVANCE(2629); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1681: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2529); + lookahead == 'e') ADVANCE(2652); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1682: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2711); + lookahead == 'e') ADVANCE(2633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1683: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2569); + lookahead == 'e') ADVANCE(2583); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1684: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1370); + lookahead == 'e') ADVANCE(2705); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1685: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1372); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1979); + lookahead == 'e') ADVANCE(2501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1686: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1372); + lookahead == 'e') ADVANCE(2693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1687: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1390); + lookahead == 'e') ADVANCE(2673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1688: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1360); + lookahead == 'e') ADVANCE(2572); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1689: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1402); + lookahead == 'e') ADVANCE(2550); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1690: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2294); + lookahead == 'e') ADVANCE(2614); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1691: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2500); + lookahead == 'e') ADVANCE(2682); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1692: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2504); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2503); + lookahead == 'e') ADVANCE(2684); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1693: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2532); + lookahead == 'e') ADVANCE(2683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1694: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1997); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1710); + lookahead == 'e') ADVANCE(2681); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1695: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1997); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2363); + lookahead == 'e') ADVANCE(2548); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1696: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1997); + lookahead == 'e') ADVANCE(2730); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1697: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2013); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1953); + lookahead == 'e') ADVANCE(2588); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1698: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1393); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1383); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1699: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2161); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1385); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1700: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1385); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1385); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1701: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1451); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1403); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1702: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1703: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1936); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1415); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1704: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1362); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2034); + lookahead == 'e') ADVANCE(2519); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2313); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1705: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2430); + lookahead == 'e') ADVANCE(2519); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1706: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2431); + lookahead == 'e') ADVANCE(2523); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1707: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2682); + lookahead == 'e') ADVANCE(2551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1708: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1770); + lookahead == 'e') ADVANCE(2013); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1709: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2012); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2096); + lookahead == 'e') ADVANCE(2013); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2381); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1710: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2012); + lookahead == 'e') ADVANCE(2013); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1711: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2404); + lookahead == 'e') ADVANCE(2029); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1967); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1712: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2424); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1359); + lookahead == 'e') ADVANCE(1405); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1713: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2424); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2294); + lookahead == 'e') ADVANCE(2190); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1714: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2424); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2058); + lookahead == 'e') ADVANCE(1398); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1715: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2424); + lookahead == 'e') ADVANCE(1463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1716: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1795); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2631); + lookahead == 'e') ADVANCE(1950); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1660); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1475); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2297); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1717: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2445); + lookahead == 'e') ADVANCE(1950); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1718: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2432); + lookahead == 'e') ADVANCE(1375); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1719: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1923); + lookahead == 'e') ADVANCE(2449); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1720: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2040); + lookahead == 'e') ADVANCE(2450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1721: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1463); + lookahead == 'e') ADVANCE(2701); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1722: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2257); + lookahead == 'e') ADVANCE(1781); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1723: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); + lookahead == 'e') ADVANCE(2028); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2114); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1724: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2213); + lookahead == 'e') ADVANCE(2028); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1725: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2220); + lookahead == 'e') ADVANCE(2180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2423); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1726: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2259); + lookahead == 'e') ADVANCE(2443); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1727: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2299); + lookahead == 'e') ADVANCE(2443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2313); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1728: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2185); + lookahead == 'e') ADVANCE(2443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2076); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1729: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1598); + lookahead == 'e') ADVANCE(2443); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1730: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1976); + lookahead == 'e') ADVANCE(1809); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1731: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1378); + lookahead == 'e') ADVANCE(2464); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1732: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1599); + lookahead == 'e') ADVANCE(2451); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1733: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2246); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2097); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1488); + lookahead == 'e') ADVANCE(1938); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1734: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2246); + lookahead == 'e') ADVANCE(1640); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1735: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1941); + lookahead == 'e') ADVANCE(2054); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1736: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1380); + lookahead == 'e') ADVANCE(2231); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1737: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1576); + lookahead == 'e') ADVANCE(2276); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1738: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1926); + lookahead == 'e') ADVANCE(2238); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1739: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2046); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2085); + lookahead == 'e') ADVANCE(2203); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2318); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1740: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2263); + lookahead == 'e') ADVANCE(2203); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1741: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2208); + lookahead == 'e') ADVANCE(1612); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1742: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1366); + lookahead == 'e') ADVANCE(2278); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1743: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1601); + lookahead == 'e') ADVANCE(1991); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1744: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1965); + lookahead == 'e') ADVANCE(1391); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1745: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1367); + lookahead == 'e') ADVANCE(1613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1746: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1397); + lookahead == 'e') ADVANCE(2265); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2115); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1747: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); + lookahead == 'e') ADVANCE(2265); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1748: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1400); + lookahead == 'e') ADVANCE(1956); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1749: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2187); + lookahead == 'e') ADVANCE(1393); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1750: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1595); + lookahead == 'e') ADVANCE(1589); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1751: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2188); + lookahead == 'e') ADVANCE(1941); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1752: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2307); + lookahead == 'e') ADVANCE(2059); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(2103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1753: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2025); + lookahead == 'e') ADVANCE(2226); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1754: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2310); + lookahead == 'e') ADVANCE(1379); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1755: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2195); + lookahead == 'e') ADVANCE(1615); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1756: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2196); + lookahead == 'e') ADVANCE(2282); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1757: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2199); + lookahead == 'e') ADVANCE(1980); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1758: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2357); + lookahead == 'e') ADVANCE(1380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1759: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2211); + lookahead == 'e') ADVANCE(1410); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1760: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2315); + lookahead == 'e') ADVANCE(1413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1761: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2222); + lookahead == 'e') ADVANCE(2205); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1762: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2014); + lookahead == 'e') ADVANCE(1609); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1763: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2295); + lookahead == 'e') ADVANCE(2206); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1764: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1971); + lookahead == 'e') ADVANCE(2326); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1765: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2436); + lookahead == 'e') ADVANCE(2329); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1766: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2064); + lookahead == 'e') ADVANCE(2041); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1767: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1580); + lookahead == 'e') ADVANCE(2213); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1768: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2002); + lookahead == 'e') ADVANCE(2214); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1769: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2286); + lookahead == 'e') ADVANCE(2217); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1770: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2159); + lookahead == 'e') ADVANCE(2375); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1771: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2226); + lookahead == 'e') ADVANCE(2229); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1772: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2048); + lookahead == 'e') ADVANCE(2334); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1773: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2227); + lookahead == 'e') ADVANCE(2239); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1774: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2055); + lookahead == 'e') ADVANCE(2030); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1775: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2230); + lookahead == 'e') ADVANCE(2314); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1776: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2232); + lookahead == 'e') ADVANCE(1987); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1777: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2050); + lookahead == 'e') ADVANCE(2455); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1778: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2234); + lookahead == 'e') ADVANCE(2082); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1779: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2061); + lookahead == 'e') ADVANCE(1593); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1780: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1479); + lookahead == 'e') ADVANCE(2305); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1781: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2062); + lookahead == 'e') ADVANCE(2177); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1782: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2235); + lookahead == 'e') ADVANCE(2244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1783: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2225); + lookahead == 'e') ADVANCE(2018); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1784: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1396); + lookahead == 'e') ADVANCE(2064); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1785: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1394); + lookahead == 'e') ADVANCE(1477); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1786: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2249); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1514); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1458); + lookahead == 'e') ADVANCE(2245); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1787: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1581); + lookahead == 'e') ADVANCE(1964); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1788: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2251); + lookahead == 'e') ADVANCE(2071); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1789: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1403); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2034); + lookahead == 'e') ADVANCE(2248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1790: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2253); + lookahead == 'e') ADVANCE(2250); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1791: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - 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 == 'E' || + lookahead == 'e') ADVANCE(2067); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1792: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2645); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2252); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1793: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1800); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2334); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2079); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1794: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2535); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2337); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1491); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1795: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2535); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2080); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1796: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1895); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1797: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1506); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2242); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1798: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1491); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1409); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1799: ACCEPT_TOKEN(sym_identifier); - 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 == 'E' || + lookahead == 'e') ADVANCE(1406); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1800: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1749); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2267); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1527); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1801: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1782); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1594); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1802: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2126); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2269); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1803: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1801); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1416); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1804: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2367); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1805: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1589); + lookahead == 'f') ADVANCE(2664); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2635); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1851); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2345); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1738); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1806: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2581); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1807: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2677); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1814); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2352); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1808: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1884); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2554); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2355); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1809: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2065); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1819); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1643); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2554); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1810: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1648); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1910); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1811: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2085); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1518); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1812: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1652); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1813: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1752); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1786); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1534); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1794); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2220); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1814: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1658); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1761); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1815: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1736); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1796); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1816: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1673); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2144); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1817: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1740); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1815); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1818: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1707); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2385); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1819: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1955); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1602); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1820: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1758); + lookahead == 'g') ADVANCE(2600); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1821: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1760); + lookahead == 'g') ADVANCE(2696); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1822: ACCEPT_TOKEN(sym_identifier); 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); + lookahead == 'g') ADVANCE(1899); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1823: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1588); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2044); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'g') ADVANCE(2083); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1834); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + ('a' <= lookahead && lookahead <= 'y') || + lookahead == '|') ADVANCE(2477); END_STATE(); case 1824: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1588); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2044); + lookahead == 'g') ADVANCE(2274); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1387); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1825: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2642); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1826: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2562); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(2103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1827: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2647); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1828: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2584); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1764); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1829: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1697); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2324); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2184); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1830: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2082); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1749); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1831: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2101); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1687); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1832: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1649); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1756); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1833: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2086); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1721); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1834: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1722); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1835: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1476); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1770); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1836: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1741); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1772); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1837: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1490); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1601); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1716); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1451); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2057); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1466); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2048); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1838: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1867); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1505); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1601); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2058); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1839: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1496); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1601); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1840: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1710); + lookahead == 'h') ADVANCE(2661); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1841: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1762); + lookahead == 'h') ADVANCE(2581); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1842: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1775); + lookahead == 'h') ADVANCE(2666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1843: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1783); + lookahead == 'h') ADVANCE(2603); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1844: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1764); + lookahead == 'h') ADVANCE(1711); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2343); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2202); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1845: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1511); + lookahead == 'h') ADVANCE(2100); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1846: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1882); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2324); + lookahead == 'h') ADVANCE(2119); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1847: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1882); + lookahead == 'h') ADVANCE(1663); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1848: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1514); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1458); + lookahead == 'h') ADVANCE(2104); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1849: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1995); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1566); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1737); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1850: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2451); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1490); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1851: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2420); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2379); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1753); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1852: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2453); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1853: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2437); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1880); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1854: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2456); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1508); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1855: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1593); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1856: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2324); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1774); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1857: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1552); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1789); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1858: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1988); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1797); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1859: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1553); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1776); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1860: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2034); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1524); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1861: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1897); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2354); + lookahead == 'i') ADVANCE(2343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1862: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1622); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1897); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1863: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2156); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1527); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1864: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2036); + lookahead == 'i') ADVANCE(2011); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1865: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2066); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1862); + lookahead == 'i') ADVANCE(2470); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1866: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2066); + lookahead == 'i') ADVANCE(2439); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1867: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1623); + lookahead == 'i') ADVANCE(2472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1868: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2000); + lookahead == 'i') ADVANCE(1607); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1869: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1600); + lookahead == 'i') ADVANCE(2456); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1870: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2035); + lookahead == 'i') ADVANCE(2475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1871: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2308); + lookahead == 'i') ADVANCE(2343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1872: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2192); + lookahead == 'i') ADVANCE(1565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1873: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2071); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2182); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2033); + lookahead == 'i') ADVANCE(2004); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1874: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2312); + lookahead == 'i') ADVANCE(1566); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1875: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2372); + lookahead == 'i') ADVANCE(2049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1876: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2237); + lookahead == 'i') ADVANCE(2372); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1877: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1726); + lookahead == 'i') ADVANCE(1637); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1878: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2323); + lookahead == 'i') ADVANCE(2174); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1879: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2416); + lookahead == 'i') ADVANCE(2051); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1880: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2454); + lookahead == 'i') ADVANCE(1638); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1881: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1613); + lookahead == 'i') ADVANCE(2084); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1877); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1882: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1953); + lookahead == 'i') ADVANCE(2084); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1883: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1465); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1751); + lookahead == 'i') ADVANCE(1614); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1884: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2041); + lookahead == 'i') ADVANCE(2017); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1885: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); + lookahead == 'i') ADVANCE(2050); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1886: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2037); + lookahead == 'i') ADVANCE(2327); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1887: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2283); + lookahead == 'i') ADVANCE(2210); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1888: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2417); + lookahead == 'i') ADVANCE(2331); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1889: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2452); + lookahead == 'i') ADVANCE(2390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1890: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2042); + lookahead == 'i') ADVANCE(2255); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1891: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); + lookahead == 'i') ADVANCE(1742); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1892: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2284); + lookahead == 'i') ADVANCE(2342); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1893: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2455); + lookahead == 'i') ADVANCE(2435); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1894: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1957); + lookahead == 'i') ADVANCE(1628); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1895: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1744); + lookahead == 'i') ADVANCE(2473); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1896: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2118); + lookahead == 'i') ADVANCE(2089); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2200); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2048); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1897: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2075); + lookahead == 'i') ADVANCE(1967); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1898: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1493); + lookahead == 'i') ADVANCE(1478); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1763); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1899: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1703); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2248); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'i') ADVANCE(2056); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1900: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1703); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2248); + lookahead == 'i') ADVANCE(2126); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1901: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1703); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'i') ADVANCE(2302); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1902: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1703); + lookahead == 'i') ADVANCE(2436); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1903: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2121); + lookahead == 'i') ADVANCE(2471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1904: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2123); + lookahead == 'i') ADVANCE(2052); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1905: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1499); + lookahead == 'i') ADVANCE(2061); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1906: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2419); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2345); + lookahead == 'i') ADVANCE(2128); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1907: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2438); + lookahead == 'i') ADVANCE(2303); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1908: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1996); + lookahead == 'i') ADVANCE(2474); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1909: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2070); + lookahead == 'i') ADVANCE(1972); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1910: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1998); + lookahead == 'i') ADVANCE(1757); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1911: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1999); + lookahead == 'i') ADVANCE(2136); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1912: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2457); + lookahead == 'i') ADVANCE(2093); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1913: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1531); + lookahead == 'i') ADVANCE(1505); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2640); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1717); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2258); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2635); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1717); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2258); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1717); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2637); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1717); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1647); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2139); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1717); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2141); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1502); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1511); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1969); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2293); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2047); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2438); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2360); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2577); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2517); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2012); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2523); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2088); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2658); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2014); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2518); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2015); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2589); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2513); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2653); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2659); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2275); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1592); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2654); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2275); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2655); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2275); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2656); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2092); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1661); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2153); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1731); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2404); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1515); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1936: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1594); + lookahead == 'l') ADVANCE(1985); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2312); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2063); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1937: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1363); + lookahead == 'l') ADVANCE(2596); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1938: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2446); + lookahead == 'l') ADVANCE(2536); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1939: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2447); + lookahead == 'l') ADVANCE(2542); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1940: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1850); + lookahead == 'l') ADVANCE(2677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1941: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2262); + lookahead == 'l') ADVANCE(2537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1942: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2084); + lookahead == 'l') ADVANCE(2608); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1943: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2405); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2344); + lookahead == 'l') ADVANCE(2532); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1944: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1455); + lookahead == 'l') ADVANCE(2672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1945: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1450); + lookahead == 'l') ADVANCE(2294); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1605); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1946: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2103); + lookahead == 'l') ADVANCE(2294); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2403); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1947: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2266); + lookahead == 'l') ADVANCE(2294); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1948: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1854); + lookahead == 'l') ADVANCE(2111); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1949: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1768); + lookahead == 'l') ADVANCE(2171); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1950: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2104); + lookahead == 'l') ADVANCE(1608); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1951: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1939); + lookahead == 'l') ADVANCE(2423); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1952: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2267); + lookahead == 'l') ADVANCE(1376); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1953: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1654); + lookahead == 'l') ADVANCE(2465); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1954: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2134); + lookahead == 'l') ADVANCE(2466); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1955: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1700); + lookahead == 'l') ADVANCE(1865); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1956: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1663); + lookahead == 'l') ADVANCE(2281); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1957: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1664); + lookahead == 'l') ADVANCE(2102); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1958: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2339); + lookahead == 'l') ADVANCE(2424); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2363); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1959: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2321); + lookahead == 'l') ADVANCE(1469); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1960: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1671); + lookahead == 'l') ADVANCE(2121); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1961: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1672); + lookahead == 'l') ADVANCE(1783); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1962: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1675); + lookahead == 'l') ADVANCE(1462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1963: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1676); + lookahead == 'l') ADVANCE(1870); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1964: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1693); + lookahead == 'l') ADVANCE(2285); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1965: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1608); + lookahead == 'l') ADVANCE(1954); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1966: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1859); + lookahead == 'l') ADVANCE(2122); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1967: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2112); + lookahead == 'l') ADVANCE(1668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1968: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2114); + lookahead == 'l') ADVANCE(2286); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1969: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1473); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1989); + lookahead == 'l') ADVANCE(1714); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1970: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1473); + lookahead == 'l') ADVANCE(2154); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1971: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2165); + lookahead == 'l') ADVANCE(1677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1972: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2117); + lookahead == 'l') ADVANCE(1678); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1973: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1893); + lookahead == 'l') ADVANCE(2357); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1974: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2120); + lookahead == 'l') ADVANCE(2340); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1975: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1970); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2343); + lookahead == 'l') ADVANCE(1685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1976: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1524); + lookahead == 'l') ADVANCE(1686); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1977: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1912); + lookahead == 'l') ADVANCE(1689); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1978: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1446); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2675); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1690); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1979: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1387); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1980: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2582); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1623); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1981: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2566); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1874); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1982: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2594); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2130); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1983: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2651); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1986); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2362); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1984: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2652); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2133); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1985: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2656); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1486); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2005); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1986: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2657); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1486); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1987: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1937); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2182); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1988: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2389); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2135); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1989: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2016); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1908); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1990: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1651); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2138); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1991: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1769); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1992: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2057); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1927); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1993: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1678); + lookahead == 'm') ADVANCE(1460); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2694); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1994: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1680); + lookahead == 'm') ADVANCE(1400); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1995: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1478); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1494); + lookahead == 'm') ADVANCE(2745); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1996: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2390); + lookahead == 'm') ADVANCE(2601); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1997: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2160); + lookahead == 'm') ADVANCE(2585); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1998: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2391); + lookahead == 'm') ADVANCE(2613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 1999: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2392); + lookahead == 'm') ADVANCE(2670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2000: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1480); + lookahead == 'm') ADVANCE(2671); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2001: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1486); + lookahead == 'm') ADVANCE(2675); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2002: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1779); + lookahead == 'm') ADVANCE(2676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2003: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1513); + lookahead == 'm') ADVANCE(1952); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2004: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1527); + lookahead == 'm') ADVANCE(2408); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2005: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1592); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2032); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2006: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1592); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1665); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2007: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2675); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1780); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2008: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2616); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2326); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2075); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2009: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2616); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1692); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2010: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1536); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1704); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1694); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2011: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1467); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1492); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2012: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2559); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2409); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2013: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2512); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1653); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2178); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2014: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2512); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2410); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2015: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2718); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2411); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2016: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2695); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2017: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2550); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1512); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2018: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2568); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1793); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2019: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2721); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2020: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2720); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1540); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2021: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2710); + lookahead == 'n') ADVANCE(1605); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2022: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2715); + lookahead == 'n') ADVANCE(2694); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2023: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2628); + lookahead == 'n') ADVANCE(2635); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2024: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2579); + lookahead == 'n') ADVANCE(2635); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2025: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2661); + lookahead == 'n') ADVANCE(1549); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1718); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2026: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2544); + lookahead == 'n') ADVANCE(1480); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2027: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2173); + lookahead == 'n') ADVANCE(1618); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2028: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2549); + lookahead == 'n') ADVANCE(2578); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2029: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1618); + lookahead == 'n') ADVANCE(2531); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1667); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2030: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2343); + lookahead == 'n') ADVANCE(2531); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2031: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1617); + lookahead == 'n') ADVANCE(2737); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2032: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1604); + lookahead == 'n') ADVANCE(2714); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2033: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1565); + lookahead == 'n') ADVANCE(2569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2034: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1806); + lookahead == 'n') ADVANCE(2587); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2035: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1802); + lookahead == 'n') ADVANCE(2740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2036: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1807); + lookahead == 'n') ADVANCE(2739); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2037: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(2729); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2038: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1537); + lookahead == 'n') ADVANCE(2734); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2039: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2287); + lookahead == 'n') ADVANCE(2647); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2040: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1596); + lookahead == 'n') ADVANCE(2598); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2041: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2256); + lookahead == 'n') ADVANCE(2680); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2042: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2258); + lookahead == 'n') ADVANCE(2563); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2043: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2297); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2540); + lookahead == 'n') ADVANCE(2191); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2044: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2297); + lookahead == 'n') ADVANCE(2568); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2045: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2448); + lookahead == 'n') ADVANCE(1633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2046: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1619); + lookahead == 'n') ADVANCE(2362); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2047: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); + lookahead == 'n') ADVANCE(1632); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2048: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2301); + lookahead == 'n') ADVANCE(1577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2049: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1820); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2050: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2290); + lookahead == 'n') ADVANCE(1816); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2051: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1375); + lookahead == 'n') ADVANCE(1821); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2052: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1938); + lookahead == 'n') ADVANCE(1475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2053: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1503); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2450); + lookahead == 'n') ADVANCE(1550); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2054: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1606); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1860); + lookahead == 'n') ADVANCE(1610); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2055: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2304); + lookahead == 'n') ADVANCE(2306); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2056: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1612); + lookahead == 'n') ADVANCE(2275); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2057: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1381); + lookahead == 'n') ADVANCE(2316); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2058: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1399); + lookahead == 'n') ADVANCE(2316); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2059: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1656); + lookahead == 'n') ADVANCE(1634); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2060: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2313); + lookahead == 'n') ADVANCE(2467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2061: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2335); + lookahead == 'n') ADVANCE(2277); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2062: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2314); + lookahead == 'n') ADVANCE(2403); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2063: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2296); + lookahead == 'n') ADVANCE(2319); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2064: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1571); + lookahead == 'n') ADVANCE(2320); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2065: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1472); + lookahead == 'n') ADVANCE(1639); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2066: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1614); + lookahead == 'n') ADVANCE(1388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2067: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2421); + lookahead == 'n') ADVANCE(2309); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2068: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1878); + lookahead == 'n') ADVANCE(1953); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2069: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2289); + lookahead == 'n') ADVANCE(1620); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2070: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1616); + lookahead == 'n') ADVANCE(1516); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2469); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2071: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1474); + lookahead == 'n') ADVANCE(2323); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2072: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1468); + lookahead == 'n') ADVANCE(1627); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2073: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2344); + lookahead == 'n') ADVANCE(1606); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2074: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2175); + lookahead == 'n') ADVANCE(1606); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2075: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2368); + lookahead == 'n') ADVANCE(1394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2076: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2174); + lookahead == 'n') ADVANCE(1412); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2077: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1908); + lookahead == 'n') ADVANCE(1670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2078: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2422); + lookahead == 'n') ADVANCE(2332); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2079: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1911); + lookahead == 'n') ADVANCE(2354); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2080: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2631); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2333); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2081: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2615); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2315); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2082: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2599); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1584); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2083: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2618); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1485); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2084: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2491); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1629); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2085: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2701); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2440); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2086: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1892); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2087: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2521); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2308); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2088: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1975); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1631); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2089: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2387); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1487); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2090: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1855); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1481); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2091: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2363); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2092: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1542); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2193); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2093: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2158); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2386); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2094: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1611); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2192); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2095: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1967); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1923); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2096: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2426); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2441); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2097: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1558); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1926); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2098: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2428); + lookahead == 'o') ADVANCE(2650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2099: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1364); + lookahead == 'o') ADVANCE(2634); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2162); + lookahead == 'o') ADVANCE(2618); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1597); + lookahead == 'o') ADVANCE(2637); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2408); + lookahead == 'o') ADVANCE(2510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1560); + lookahead == 'o') ADVANCE(2720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1562); + lookahead == 'o') ADVANCE(2619); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2015); + lookahead == 'o') ADVANCE(2540); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1564); + lookahead == 'o') ADVANCE(1983); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2186); + lookahead == 'o') ADVANCE(2406); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2018); + lookahead == 'o') ADVANCE(1868); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1927); + lookahead == 'o') ADVANCE(1626); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2051); + lookahead == 'o') ADVANCE(1958); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2111: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2019); + lookahead == 'o') ADVANCE(1555); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2112: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2189); + lookahead == 'o') ADVANCE(2176); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1376); + lookahead == 'o') ADVANCE(1982); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2114: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2190); + lookahead == 'o') ADVANCE(2445); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1958); + lookahead == 'o') ADVANCE(1571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2022); + lookahead == 'o') ADVANCE(2447); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2191); + lookahead == 'o') ADVANCE(1377); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2118: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2023); + lookahead == 'o') ADVANCE(2179); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2119: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2052); + lookahead == 'o') ADVANCE(1611); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2120: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2193); + lookahead == 'o') ADVANCE(2427); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2121: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2024); + lookahead == 'o') ADVANCE(1573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2194); + lookahead == 'o') ADVANCE(1575); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2026); + lookahead == 'o') ADVANCE(2031); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2124: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2197); + lookahead == 'o') ADVANCE(1578); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2125: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2198); + lookahead == 'o') ADVANCE(2204); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2126: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2216); + lookahead == 'o') ADVANCE(2034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2127: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2073); + lookahead == 'o') ADVANCE(1942); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2128: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2067); + lookahead == 'o') ADVANCE(2066); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2129: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2030); + lookahead == 'o') ADVANCE(2035); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2130: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2109); + lookahead == 'o') ADVANCE(2207); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2131: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2386); + lookahead == 'o') ADVANCE(1390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2132: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2115); + lookahead == 'o') ADVANCE(1973); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2361); + lookahead == 'o') ADVANCE(2208); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2134: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2224); + lookahead == 'o') ADVANCE(2038); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2135: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1615); + lookahead == 'o') ADVANCE(2209); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2136: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1567); + lookahead == 'o') ADVANCE(2039); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2137: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2167); + lookahead == 'o') ADVANCE(2068); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2138: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1897); + lookahead == 'o') ADVANCE(2211); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2139: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1954); + lookahead == 'o') ADVANCE(2040); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2140: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2063); + lookahead == 'o') ADVANCE(2212); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2141: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2406); + lookahead == 'o') ADVANCE(2042); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2142: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1968); + lookahead == 'o') ADVANCE(2215); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2143: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2248); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'o') ADVANCE(2216); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2144: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2248); + lookahead == 'o') ADVANCE(2237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2145: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1972); + lookahead == 'o') ADVANCE(2091); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2146: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1974); + lookahead == 'o') ADVANCE(2085); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2147: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2413); + lookahead == 'o') ADVANCE(2046); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2148: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2078); + lookahead == 'o') ADVANCE(2127); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2149: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2172); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2405); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2150: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2601); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1579); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1858); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2258); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2151: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2601); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1579); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2258); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2152: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2625); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2132); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2153: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2666); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2684); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2243); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2602); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1630); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2717); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1580); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2394); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1383); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1912); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1391); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1970); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1388); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2081); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1780); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2398); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1877); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1984); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2303); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1988); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2138); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1990); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1398); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2432); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2130); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2096); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2167: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1382); + lookahead == 'p') ADVANCE(2189); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2168: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2201); + lookahead == 'p') ADVANCE(2620); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1592); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1873); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2169: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1666); + lookahead == 'p') ADVANCE(2620); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2170: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1677); + lookahead == 'p') ADVANCE(2644); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2171: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1679); + lookahead == 'p') ADVANCE(2685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2172: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1720); + lookahead == 'p') ADVANCE(2703); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2173: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2399); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1759); + lookahead == 'p') ADVANCE(2621); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2174: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2399); + lookahead == 'p') ADVANCE(2736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2175: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2400); + lookahead == 'p') ADVANCE(2412); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2176: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2401); + lookahead == 'p') ADVANCE(1396); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2177: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1568); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1407); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2178: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2370); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1401); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2179: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2502); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1891); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2180: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2396); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2181: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1883); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2573); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2158); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2182: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2540); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1411); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2183: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2537); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2148); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2184: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1607); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1395); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2185: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2440); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2219); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2186: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2617); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1680); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2187: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2539); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1691); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2188: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2723); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2189: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2706); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1735); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2190: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2704); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1794); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2191: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2708); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2418); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1771); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2192: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2597); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2418); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2193: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2713); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2419); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2194: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2558); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2420); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2195: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2565); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1581); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2196: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2627); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2197: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2586); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2198: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2585); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2415); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2199: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2712); + lookahead == 'r') ADVANCE(1898); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2200: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1357); + lookahead == 'r') ADVANCE(2559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2201: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1851); + lookahead == 'r') ADVANCE(2556); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2202: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2441); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2219); + lookahead == 'r') ADVANCE(1621); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2203: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1701); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2641); + lookahead == 'r') ADVANCE(2459); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2204: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1459); + lookahead == 'r') ADVANCE(2636); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2205: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2442); + lookahead == 'r') ADVANCE(2558); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2206: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1569); + lookahead == 'r') ADVANCE(2742); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2207: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2271); + lookahead == 'r') ADVANCE(2725); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2208: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2427); + lookahead == 'r') ADVANCE(2723); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2209: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2443); + lookahead == 'r') ADVANCE(2727); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2210: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2107); + lookahead == 'r') ADVANCE(2616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2211: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1797); + lookahead == 'r') ADVANCE(2732); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2212: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2388); + lookahead == 'r') ADVANCE(2577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2213: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1497); + lookahead == 'r') ADVANCE(2584); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2214: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2393); + lookahead == 'r') ADVANCE(2646); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2215: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2260); + lookahead == 'r') ADVANCE(2605); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2216: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2004); + lookahead == 'r') ADVANCE(2604); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2217: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1498); + lookahead == 'r') ADVANCE(2731); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2218: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1698); + lookahead == 'r') ADVANCE(1370); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2219: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2017); + lookahead == 'r') ADVANCE(1866); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2220: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2238); + lookahead == 'r') ADVANCE(2460); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2221: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2265); + lookahead == 'r') ADVANCE(1715); + 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); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2222: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1898); + lookahead == 'r') ADVANCE(1473); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2223: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2136); + lookahead == 'r') ADVANCE(2461); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2224: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2269); + lookahead == 'r') ADVANCE(1582); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2225: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1653); + lookahead == 'r') ADVANCE(2290); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2226: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2309); + lookahead == 'r') ADVANCE(2446); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2227: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1766); + lookahead == 'r') ADVANCE(2462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2228: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2329); + lookahead == 'r') ADVANCE(2125); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2229: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2028); + lookahead == 'r') ADVANCE(1811); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2230: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1661); + lookahead == 'r') ADVANCE(2407); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2231: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1665); + lookahead == 'r') ADVANCE(1509); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2232: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2346); + lookahead == 'r') ADVANCE(2413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2233: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1669); + lookahead == 'r') ADVANCE(1712); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2234: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2318); + lookahead == 'r') ADVANCE(1510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2235: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1732); + lookahead == 'r') ADVANCE(2279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2236: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1750); + lookahead == 'r') ADVANCE(2033); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2237: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2279); + lookahead == 'r') ADVANCE(2020); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2238: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1881); + lookahead == 'r') ADVANCE(2256); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2239: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1813); + lookahead == 'r') ADVANCE(1913); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2240: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'r') ADVANCE(2284); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2241: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1730); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2141); + lookahead == 'r') ADVANCE(2156); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2242: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1572); + lookahead == 'r') ADVANCE(1667); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2243: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2340); + lookahead == 'r') ADVANCE(2288); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2244: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1821); + lookahead == 'r') ADVANCE(2328); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2245: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2122); + lookahead == 'r') ADVANCE(1778); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2246: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2245); + lookahead == 'r') ADVANCE(2348); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2247: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1495); + lookahead == 'r') ADVANCE(2044); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2248: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2001); + lookahead == 'r') ADVANCE(1675); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2249: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1905); + lookahead == 'r') ADVANCE(1679); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2250: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1785); + lookahead == 'r') ADVANCE(2364); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2251: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1510); + lookahead == 'r') ADVANCE(1683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2252: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2414); + lookahead == 'r') ADVANCE(2337); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2253: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1913); + lookahead == 'r') ADVANCE(1745); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2254: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2478); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1762); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2255: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2511); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2297); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2256: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2506); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1894); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2257: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2507); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1828); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2508); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2016); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2608); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2260: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1743); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2699); + lookahead == 's') ADVANCE(2161); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2261: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2588); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1585); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2262: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2700); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2358); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2263: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2612); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1836); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2264: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2580); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2140); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2265: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2688); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2264); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2266: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2689); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2267: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2519); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1920); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2268: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2714); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1799); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2716); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1523); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2255); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2433); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1887); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1928); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2272: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1563); + lookahead == 's') ADVANCE(2497); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2273: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2356); + lookahead == 's') ADVANCE(2530); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2274: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1644); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1559); + lookahead == 's') ADVANCE(2746); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2275: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1645); + lookahead == 's') ADVANCE(2525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2276: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2298); + lookahead == 's') ADVANCE(2526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2277: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1879); + lookahead == 's') ADVANCE(2527); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2278: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1852); + lookahead == 's') ADVANCE(2627); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2279: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2302); + lookahead == 's') ADVANCE(2718); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2280: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1650); + lookahead == 's') ADVANCE(2607); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2281: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2141); + lookahead == 's') ADVANCE(2719); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2282: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1731); + lookahead == 's') ADVANCE(2631); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2283: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2375); + lookahead == 's') ADVANCE(2599); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2284: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1667); + lookahead == 's') ADVANCE(2707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2285: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1789); + lookahead == 's') ADVANCE(2708); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2286: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2292); + lookahead == 's') ADVANCE(2538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2287: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1529); + lookahead == 's') ADVANCE(2733); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2288: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1754); + lookahead == 's') ADVANCE(2735); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2289: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1777); + lookahead == 's') ADVANCE(2273); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2290: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1875); + lookahead == 's') ADVANCE(1901); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2291: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1790); + lookahead == 's') ADVANCE(1576); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2292: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1512); + lookahead == 's') ADVANCE(2374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2293: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2381); + lookahead == 's') ADVANCE(1658); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1516); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1771); + lookahead == 't') ADVANCE(1572); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2481); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1659); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2573); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1516); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1893); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2709); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2321); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2644); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1867); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2626); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2650); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2161); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2575); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1744); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2643); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2393); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2547); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1681); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2520); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1803); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2551); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2311); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2563); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1542); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2606); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1765); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2638); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1791); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2605); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1889); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2483); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1804); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2570); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2312: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2399); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2611); + lookahead == 't') ADVANCE(1529); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1782); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2313: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2655); + lookahead == 't') ADVANCE(2500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2314: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2719); + lookahead == 't') ADVANCE(2592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2315: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2707); + lookahead == 't') ADVANCE(1529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2316: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2484); + lookahead == 't') ADVANCE(2728); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2317: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2516); + lookahead == 't') ADVANCE(2663); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2318: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2604); + lookahead == 't') ADVANCE(2645); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2319: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2485); + lookahead == 't') ADVANCE(2669); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2320: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2552); + lookahead == 't') ADVANCE(2594); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2321: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2703); + lookahead == 't') ADVANCE(2662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2322: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2620); + lookahead == 't') ADVANCE(2566); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2323: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2515); + lookahead == 't') ADVANCE(2539); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2324: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1826); + lookahead == 't') ADVANCE(2570); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2325: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1438); + lookahead == 't') ADVANCE(2582); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2326: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2157); + lookahead == 't') ADVANCE(2625); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2327: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2099); + lookahead == 't') ADVANCE(2657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2328: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1857); + lookahead == 't') ADVANCE(2624); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2329: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2444); + lookahead == 't') ADVANCE(2502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1828); + lookahead == 't') ADVANCE(2589); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2331: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1885); + lookahead == 't') ADVANCE(2630); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2332: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2449); + lookahead == 't') ADVANCE(2674); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1374); + lookahead == 't') ADVANCE(2738); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2334: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2105); + lookahead == 't') ADVANCE(2726); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2261); + lookahead == 't') ADVANCE(2503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1379); + lookahead == 't') ADVANCE(2535); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2337: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2212); + lookahead == 't') ADVANCE(2623); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2338: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1492); + lookahead == 't') ADVANCE(2504); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2339: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1863); + lookahead == 't') ADVANCE(2571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2340: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2247); + lookahead == 't') ADVANCE(2722); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2341: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1444); + lookahead == 't') ADVANCE(2639); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2342: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1508); + lookahead == 't') ADVANCE(2534); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2343: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1517); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1771); + lookahead == 't') ADVANCE(1841); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2344: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1517); + lookahead == 't') ADVANCE(1452); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2345: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1767); + lookahead == 't') ADVANCE(2175); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2346: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1371); + lookahead == 't') ADVANCE(2117); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2347: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1659); + lookahead == 't') ADVANCE(1872); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2348: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1660); + lookahead == 't') ADVANCE(2463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2349: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1729); + lookahead == 't') ADVANCE(1843); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2350: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1681); + lookahead == 't') ADVANCE(1900); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2351: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1743); + lookahead == 't') ADVANCE(2468); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2352: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1831); + lookahead == 't') ADVANCE(2123); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2353: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2409); + lookahead == 't') ADVANCE(1392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2354: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1864); + lookahead == 't') ADVANCE(2280); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2355: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); + lookahead == 't') ADVANCE(2230); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2356: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2217); + lookahead == 't') ADVANCE(1504); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2357: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1389); + lookahead == 't') ADVANCE(1878); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2358: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1518); + lookahead == 't') ADVANCE(2266); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2359: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1579); + lookahead == 't') ADVANCE(1458); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2360: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2362); + lookahead == 't') ADVANCE(1779); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2361: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1470); + lookahead == 't') ADVANCE(1521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2362: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2116); + lookahead == 't') ADVANCE(1530); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1782); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2363: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1475); + lookahead == 't') ADVANCE(1530); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2364: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2124); + lookahead == 't') ADVANCE(1384); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2365: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2125); + lookahead == 't') ADVANCE(1673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2366: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1755); + lookahead == 't') ADVANCE(1674); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2367: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1756); + lookahead == 't') ADVANCE(1741); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2368: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1757); + lookahead == 't') ADVANCE(1695); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2369: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2137); + lookahead == 't') ADVANCE(1755); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2370: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1774); + lookahead == 't') ADVANCE(1846); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2371: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1891); + lookahead == 't') ADVANCE(2428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2372: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1888); + lookahead == 't') ADVANCE(1879); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2373: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2176); + lookahead == 't') ADVANCE(2131); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2374: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1896); + lookahead == 't') ADVANCE(2234); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2375: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1781); + lookahead == 't') ADVANCE(1402); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2376: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1903); + lookahead == 't') ADVANCE(1531); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2377: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1904); + lookahead == 't') ADVANCE(1592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2378: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1522); + lookahead == 't') ADVANCE(2380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2379: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1787); + lookahead == 't') ADVANCE(1483); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2380: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1523); + lookahead == 't') ADVANCE(2134); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2381: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2252); + lookahead == 't') ADVANCE(1488); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1534); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2142); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1727); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2143); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1803); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1767); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2326); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1768); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2047); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1769); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2206); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2157); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1577); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1788); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1983); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1906); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1984); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1902); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1985); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2194); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1986); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1911); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2020); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1795); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2305); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1918); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2268); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1919); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1657); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1535); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2360); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1801); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2229); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1536); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2316); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2400: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2319); + lookahead == 'u') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2401: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2320); + lookahead == 'u') ADVANCE(1739); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2402: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2056); + lookahead == 'u') ADVANCE(1817); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2403: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1942); + lookahead == 'u') ADVANCE(1995); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2404: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2277); + lookahead == 'u') ADVANCE(2345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2405: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1992); + lookahead == 'u') ADVANCE(2063); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2406: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2242); + lookahead == 'u') ADVANCE(2224); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2407: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1959); + lookahead == 'u') ADVANCE(1590); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2408: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2060); + lookahead == 'u') ADVANCE(1999); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2409: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2231); + lookahead == 'u') ADVANCE(2000); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2410: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2233); + lookahead == 'u') ADVANCE(2001); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2411: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1728); + lookahead == 'u') ADVANCE(2002); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2412: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2355); + lookahead == 'u') ADVANCE(2324); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2413: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2373); + lookahead == 'u') ADVANCE(2036); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2414: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1585); + lookahead == 'u') ADVANCE(2287); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1724); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1671); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1746); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2378); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1682); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1725); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2335); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1494); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2338); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1507); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2339); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1776); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2072); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1778); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1957); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1788); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2296); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2522); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2008); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2693); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2261); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2623); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1974); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1892); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2078); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2021); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2249); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1842); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2251); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2639); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2671); + 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(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2672); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2391); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1858); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1598); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1568); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2336); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1759); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2322); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1696); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1735); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1738); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1747); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1910); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2545); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1790); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2621); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1792); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2598); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1802); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2669); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2541); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2574); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2712); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2702); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2642); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2660); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1907); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2648); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2037); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2429); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1857); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2170); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2658); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2171); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2690); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); case 2451: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2691); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2452: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1873); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2453: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1581); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2454: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2353); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2455: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2341); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2456: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1748); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2457: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1787); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2458: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1925); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2459: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2564); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2460: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2640); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2461: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2617); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2462: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2688); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2463: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2593); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2464: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2721); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2465: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2679); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2466: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2667); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2467: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2448); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2468: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2187); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2469: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2188); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2477); + END_STATE(); + case 2470: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1525); + lookahead == 'z') ADVANCE(1538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2452: + case 2471: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1643); + lookahead == 'z') ADVANCE(1657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2453: + case 2472: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1668); + lookahead == 'z') ADVANCE(1682); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2454: + case 2473: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); + lookahead == 'z') ADVANCE(1684); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2455: + case 2474: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1745); + lookahead == 'z') ADVANCE(1758); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2456: + case 2475: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1526); + lookahead == 'z') ADVANCE(1539); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2457: + case 2476: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1528); + lookahead == 'z') ADVANCE(1541); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2458: + case 2477: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35480,62 +35799,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2459: + case 2478: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 2460: + case 2479: ACCEPT_TOKEN(sym__terminator); END_STATE(); - case 2461: + case 2480: ACCEPT_TOKEN(aux_sym__block_terminator_token1); END_STATE(); - case 2462: + case 2481: ACCEPT_TOKEN(sym_null_expression); END_STATE(); - case 2463: + case 2482: ACCEPT_TOKEN(sym__integer_literal); - if (lookahead == '/') ADVANCE(1322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (lookahead == '/') ADVANCE(1335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); END_STATE(); - case 2464: + case 2483: ACCEPT_TOKEN(sym__integer_literal); - if (lookahead == '/') ADVANCE(1322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2463); + if (lookahead == '/') ADVANCE(1335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2482); END_STATE(); - case 2465: + case 2484: ACCEPT_TOKEN(sym__integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2484); END_STATE(); - case 2466: + case 2485: ACCEPT_TOKEN(sym_date_literal); END_STATE(); - case 2467: + case 2486: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2468: + case 2487: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2469: + case 2488: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2470: + case 2489: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 2471: + case 2490: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '*') ADVANCE(1347); - if (lookahead == '/') ADVANCE(1339); + if (lookahead == '*') ADVANCE(1360); + if (lookahead == '/') ADVANCE(1352); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2473); + lookahead != '\\') ADVANCE(2492); END_STATE(); - case 2472: + case 2491: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '/') ADVANCE(2471); + if (lookahead == '/') ADVANCE(2490); if (lookahead == '\\') ADVANCE(19); - if (lookahead == '{') ADVANCE(1353); + if (lookahead == '{') ADVANCE(1366); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -35543,67 +35862,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(2472); + lookahead == 65279) ADVANCE(2491); if (lookahead != 0 && - lookahead != '"') ADVANCE(2473); + lookahead != '"') ADVANCE(2492); END_STATE(); - case 2473: + case 2492: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2473); + lookahead != '\\') ADVANCE(2492); END_STATE(); - case 2474: + case 2493: ACCEPT_TOKEN(aux_sym_double_quoted_string_token2); END_STATE(); - case 2475: + case 2494: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 2476: + case 2495: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2477: + case 2496: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2478: + case 2497: ACCEPT_TOKEN(aux_sym_type_tuning_token1); END_STATE(); - case 2479: + case 2498: ACCEPT_TOKEN(aux_sym_type_tuning_token2); END_STATE(); - case 2480: + case 2499: ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); - case 2481: + case 2500: ACCEPT_TOKEN(aux_sym_unary_expression_token2); END_STATE(); - case 2482: + case 2501: ACCEPT_TOKEN(aux_sym_temp_table_expression_token1); END_STATE(); - case 2483: + case 2502: ACCEPT_TOKEN(aux_sym_dataset_expression_token1); END_STATE(); - case 2484: + case 2503: ACCEPT_TOKEN(aux_sym_input_expression_token1); END_STATE(); - case 2485: + case 2504: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(2147); + if (lookahead == '-') ADVANCE(2165); END_STATE(); - case 2486: + case 2505: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(990); + if (lookahead == '-') ADVANCE(1000); END_STATE(); - case 2487: + case 2506: ACCEPT_TOKEN(aux_sym_input_expression_token2); END_STATE(); - case 2488: + case 2507: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 2489: + case 2508: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2490: + case 2509: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35611,184 +35930,184 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2491: + case 2510: ACCEPT_TOKEN(aux_sym__multiplicative_operator_token1); END_STATE(); - case 2492: + case 2511: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(2493); - if (lookahead == '>') ADVANCE(2494); + if (lookahead == '=') ADVANCE(2512); + if (lookahead == '>') ADVANCE(2513); END_STATE(); - case 2493: + case 2512: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 2494: + case 2513: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 2495: + case 2514: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 2496: + case 2515: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2497); + if (lookahead == '=') ADVANCE(2516); END_STATE(); - case 2497: + case 2516: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 2498: + case 2517: ACCEPT_TOKEN(aux_sym__comparison_operator_token1); END_STATE(); - case 2499: + case 2518: ACCEPT_TOKEN(aux_sym__comparison_operator_token2); END_STATE(); - case 2500: + case 2519: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); END_STATE(); - case 2501: + case 2520: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2522); + lookahead == 'w') ADVANCE(2541); END_STATE(); - case 2502: + case 2521: ACCEPT_TOKEN(aux_sym__comparison_operator_token4); END_STATE(); - case 2503: + case 2522: ACCEPT_TOKEN(aux_sym__comparison_operator_token5); END_STATE(); - case 2504: + case 2523: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); END_STATE(); - case 2505: + case 2524: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2572); + lookahead == 't') ADVANCE(2591); END_STATE(); - case 2506: + case 2525: ACCEPT_TOKEN(aux_sym__comparison_operator_token7); END_STATE(); - case 2507: + case 2526: ACCEPT_TOKEN(aux_sym__comparison_operator_token8); END_STATE(); - case 2508: + case 2527: ACCEPT_TOKEN(aux_sym__comparison_operator_token9); END_STATE(); - case 2509: + case 2528: ACCEPT_TOKEN(aux_sym_include_argument_token1); END_STATE(); - case 2510: + case 2529: ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); - case 2511: + case 2530: ACCEPT_TOKEN(aux_sym_class_type_token1); END_STATE(); - case 2512: + case 2531: ACCEPT_TOKEN(aux_sym_when_expression_token1); END_STATE(); - case 2513: + case 2532: ACCEPT_TOKEN(aux_sym_variable_tuning_token1); END_STATE(); - case 2514: + case 2533: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(286); + lookahead == 'i') ADVANCE(287); END_STATE(); - case 2515: + case 2534: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1481); + lookahead == 'i') ADVANCE(1493); END_STATE(); - case 2516: + case 2535: ACCEPT_TOKEN(aux_sym_variable_tuning_token3); END_STATE(); - case 2517: + case 2536: ACCEPT_TOKEN(aux_sym_variable_tuning_token4); END_STATE(); - case 2518: + case 2537: ACCEPT_TOKEN(aux_sym_variable_tuning_token5); END_STATE(); - case 2519: + case 2538: ACCEPT_TOKEN(aux_sym_variable_tuning_token6); END_STATE(); - case 2520: + case 2539: ACCEPT_TOKEN(aux_sym_variable_tuning_token7); END_STATE(); - case 2521: + case 2540: ACCEPT_TOKEN(aux_sym_variable_tuning_token8); END_STATE(); - case 2522: + case 2541: ACCEPT_TOKEN(aux_sym_scope_tuning_token1); END_STATE(); - case 2523: + case 2542: ACCEPT_TOKEN(aux_sym_scope_tuning_token2); END_STATE(); - case 2524: + case 2543: ACCEPT_TOKEN(aux_sym_scope_tuning_token3); END_STATE(); - case 2525: + case 2544: ACCEPT_TOKEN(aux_sym_scope_tuning_token4); END_STATE(); - case 2526: + case 2545: ACCEPT_TOKEN(aux_sym_access_tuning_token1); END_STATE(); - case 2527: + case 2546: ACCEPT_TOKEN(aux_sym_access_tuning_token2); END_STATE(); - case 2528: + case 2547: ACCEPT_TOKEN(aux_sym_access_tuning_token3); END_STATE(); - case 2529: + case 2548: ACCEPT_TOKEN(aux_sym_access_tuning_token4); END_STATE(); - case 2530: + case 2549: ACCEPT_TOKEN(aux_sym_access_tuning_token5); END_STATE(); - case 2531: + case 2550: ACCEPT_TOKEN(aux_sym_serialization_tuning_token1); END_STATE(); - case 2532: + case 2551: ACCEPT_TOKEN(aux_sym_serialization_tuning_token2); END_STATE(); - case 2533: + case 2552: ACCEPT_TOKEN(aux_sym_variable_definition_token1); END_STATE(); - case 2534: + case 2553: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(905); + lookahead == 'i') ADVANCE(914); END_STATE(); - case 2535: + case 2554: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2059); + lookahead == 'i') ADVANCE(2077); END_STATE(); - case 2536: + case 2555: ACCEPT_TOKEN(aux_sym_variable_definition_token3); END_STATE(); - case 2537: + case 2556: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1489); + lookahead == 'i') ADVANCE(1501); END_STATE(); - case 2538: + case 2557: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(336); + lookahead == 'i') ADVANCE(338); END_STATE(); - case 2539: + case 2558: ACCEPT_TOKEN(aux_sym_buffer_definition_token1); END_STATE(); - case 2540: + case 2559: ACCEPT_TOKEN(aux_sym_buffer_definition_token2); END_STATE(); - case 2541: + case 2560: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token1); END_STATE(); - case 2542: + case 2561: ACCEPT_TOKEN(anon_sym_SCROLLING); END_STATE(); - case 2543: + case 2562: ACCEPT_TOKEN(anon_sym_SCROLLING); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35796,156 +36115,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2544: + case 2563: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token2); END_STATE(); - case 2545: + case 2564: ACCEPT_TOKEN(aux_sym_query_definition_token1); END_STATE(); - case 2546: + case 2565: ACCEPT_TOKEN(aux_sym_query_definition_token2); END_STATE(); - case 2547: + case 2566: ACCEPT_TOKEN(aux_sym_query_definition_token3); END_STATE(); - case 2548: + case 2567: ACCEPT_TOKEN(aux_sym_return_type_token1); END_STATE(); - case 2549: + case 2568: ACCEPT_TOKEN(aux_sym_return_type_token2); END_STATE(); - case 2550: + case 2569: ACCEPT_TOKEN(aux_sym_return_type_token2); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2548); + lookahead == 's') ADVANCE(2567); END_STATE(); - case 2551: + case 2570: ACCEPT_TOKEN(aux_sym_argument_mode_token1); END_STATE(); - case 2552: + case 2571: ACCEPT_TOKEN(aux_sym_argument_mode_token2); END_STATE(); - case 2553: + case 2572: ACCEPT_TOKEN(aux_sym_argument_mode_token3); END_STATE(); - case 2554: + case 2573: ACCEPT_TOKEN(aux_sym_argument_pass_type_token1); END_STATE(); - case 2555: + case 2574: ACCEPT_TOKEN(aux_sym_argument_pass_type_token2); END_STATE(); - case 2556: + case 2575: ACCEPT_TOKEN(aux_sym_argument_pass_type_token3); END_STATE(); - case 2557: + case 2576: ACCEPT_TOKEN(aux_sym__function_argument_with_mode_token4); END_STATE(); - case 2558: + case 2577: ACCEPT_TOKEN(aux_sym_function_call_token1); END_STATE(); - case 2559: + case 2578: ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); - case 2560: + case 2579: ACCEPT_TOKEN(aux_sym_else_statement_token1); END_STATE(); - case 2561: + case 2580: ACCEPT_TOKEN(aux_sym_while_phrase_token1); END_STATE(); - case 2562: + case 2581: ACCEPT_TOKEN(aux_sym_repeat_tuning_token1); END_STATE(); - case 2563: + case 2582: ACCEPT_TOKEN(aux_sym_repeat_statement_token1); END_STATE(); - case 2564: + case 2583: ACCEPT_TOKEN(aux_sym__procedure_terminator_token1); END_STATE(); - case 2565: + case 2584: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); END_STATE(); - case 2566: + case 2585: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2366); + lookahead == 'e') ADVANCE(2384); END_STATE(); - case 2567: + case 2586: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1225); + lookahead == 'e') ADVANCE(1236); END_STATE(); - case 2568: + case 2587: ACCEPT_TOKEN(aux_sym__function_terminator_token1); END_STATE(); - case 2569: + case 2588: ACCEPT_TOKEN(aux_sym_interface_statement_token1); END_STATE(); - case 2570: + case 2589: ACCEPT_TOKEN(aux_sym_property_type_token1); END_STATE(); - case 2571: + case 2590: ACCEPT_TOKEN(aux_sym_property_type_token2); END_STATE(); - case 2572: + case 2591: ACCEPT_TOKEN(aux_sym_getter_token1); END_STATE(); - case 2573: + case 2592: ACCEPT_TOKEN(aux_sym_setter_token1); END_STATE(); - case 2574: + case 2593: ACCEPT_TOKEN(aux_sym_property_definition_token1); END_STATE(); - case 2575: + case 2594: ACCEPT_TOKEN(aux_sym_event_definition_token1); END_STATE(); - case 2576: + case 2595: ACCEPT_TOKEN(aux_sym_event_definition_token2); END_STATE(); - case 2577: + case 2596: ACCEPT_TOKEN(aux_sym_method_tuning_token1); END_STATE(); - case 2578: + case 2597: ACCEPT_TOKEN(aux_sym_method_definition_token1); END_STATE(); - case 2579: + case 2598: ACCEPT_TOKEN(aux_sym_data_relation_token1); END_STATE(); - case 2580: + case 2599: ACCEPT_TOKEN(aux_sym_data_relation_token2); END_STATE(); - case 2581: + case 2600: ACCEPT_TOKEN(aux_sym_using_statement_token1); END_STATE(); - case 2582: + case 2601: ACCEPT_TOKEN(aux_sym_using_statement_token2); END_STATE(); - case 2583: + case 2602: ACCEPT_TOKEN(aux_sym_using_statement_token3); END_STATE(); - case 2584: + case 2603: ACCEPT_TOKEN(aux_sym_using_statement_token4); END_STATE(); - case 2585: + case 2604: ACCEPT_TOKEN(aux_sym_constructor_definition_token1); END_STATE(); - case 2586: + case 2605: ACCEPT_TOKEN(aux_sym_destructor_definition_token1); END_STATE(); - case 2587: + case 2606: ACCEPT_TOKEN(aux_sym_inherits_token1); END_STATE(); - case 2588: + case 2607: ACCEPT_TOKEN(aux_sym_implements_token1); END_STATE(); - case 2589: + case 2608: ACCEPT_TOKEN(aux_sym_use_widget_pool_token1); END_STATE(); - case 2590: + case 2609: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); END_STATE(); - case 2591: + case 2610: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35953,126 +36272,126 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2592: + case 2611: ACCEPT_TOKEN(aux_sym_stream_definition_token1); END_STATE(); - case 2593: + case 2612: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(682); + if (lookahead == '-') ADVANCE(685); END_STATE(); - case 2594: + case 2613: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(1835); + if (lookahead == '-') ADVANCE(1850); END_STATE(); - case 2595: + case 2614: ACCEPT_TOKEN(aux_sym_input_close_statement_token1); END_STATE(); - case 2596: + case 2615: ACCEPT_TOKEN(aux_sym_input_close_statement_token2); END_STATE(); - case 2597: + case 2616: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token1); END_STATE(); - case 2598: + case 2617: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token2); END_STATE(); - case 2599: + case 2618: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token3); END_STATE(); - case 2600: + case 2619: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token4); END_STATE(); - case 2601: + case 2620: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token5); END_STATE(); - case 2602: + case 2621: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token6); END_STATE(); - case 2603: + case 2622: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token7); END_STATE(); - case 2604: + case 2623: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token8); END_STATE(); - case 2605: + case 2624: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token9); END_STATE(); - case 2606: + case 2625: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token10); END_STATE(); - case 2607: + case 2626: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token11); END_STATE(); - case 2608: + case 2627: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token1); END_STATE(); - case 2609: + case 2628: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token2); END_STATE(); - case 2610: + case 2629: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token3); END_STATE(); - case 2611: + case 2630: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token4); END_STATE(); - case 2612: + case 2631: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token5); END_STATE(); - case 2613: + case 2632: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token6); END_STATE(); - case 2614: + case 2633: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token7); END_STATE(); - case 2615: + case 2634: ACCEPT_TOKEN(aux_sym_output_stream_statement_token1); END_STATE(); - case 2616: + case 2635: ACCEPT_TOKEN(aux_sym_on_error_phrase_token1); END_STATE(); - case 2617: + case 2636: ACCEPT_TOKEN(aux_sym_on_error_phrase_token2); END_STATE(); - case 2618: + case 2637: ACCEPT_TOKEN(aux_sym_on_error_phrase_token3); END_STATE(); - case 2619: + case 2638: ACCEPT_TOKEN(aux_sym_on_error_phrase_token4); END_STATE(); - case 2620: + case 2639: ACCEPT_TOKEN(aux_sym_on_error_phrase_token5); END_STATE(); - case 2621: + case 2640: ACCEPT_TOKEN(aux_sym_on_error_phrase_token6); END_STATE(); - case 2622: + case 2641: ACCEPT_TOKEN(aux_sym_on_error_phrase_token7); END_STATE(); - case 2623: + case 2642: ACCEPT_TOKEN(aux_sym_on_error_phrase_token8); END_STATE(); - case 2624: + case 2643: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); END_STATE(); - case 2625: + case 2644: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); - if (lookahead == '-') ADVANCE(1452); + if (lookahead == '-') ADVANCE(1464); END_STATE(); - case 2626: + case 2645: ACCEPT_TOKEN(aux_sym_on_quit_phrase_token1); END_STATE(); - case 2627: + case 2646: ACCEPT_TOKEN(aux_sym_stop_after_phrase_token1); END_STATE(); - case 2628: + case 2647: ACCEPT_TOKEN(aux_sym_do_tuning_token1); END_STATE(); - case 2629: + case 2648: ACCEPT_TOKEN(anon_sym_BY); END_STATE(); - case 2630: + case 2649: ACCEPT_TOKEN(anon_sym_BY); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -36080,304 +36399,313 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2458); + lookahead == '|') ADVANCE(2477); END_STATE(); - case 2631: + case 2650: ACCEPT_TOKEN(aux_sym_do_block_token1); END_STATE(); - case 2632: + case 2651: ACCEPT_TOKEN(aux_sym__case_terminator_token1); END_STATE(); - case 2633: + case 2652: ACCEPT_TOKEN(aux_sym_case_otherwise_branch_token1); END_STATE(); - case 2634: + case 2653: ACCEPT_TOKEN(aux_sym_where_clause_token1); END_STATE(); - case 2635: + case 2654: ACCEPT_TOKEN(aux_sym_query_tuning_token1); END_STATE(); - case 2636: + case 2655: ACCEPT_TOKEN(aux_sym_query_tuning_token2); END_STATE(); - case 2637: + case 2656: ACCEPT_TOKEN(aux_sym_query_tuning_token3); END_STATE(); - case 2638: + case 2657: ACCEPT_TOKEN(aux_sym_query_tuning_token4); END_STATE(); - case 2639: + case 2658: ACCEPT_TOKEN(aux_sym_query_tuning_token5); END_STATE(); - case 2640: + case 2659: ACCEPT_TOKEN(aux_sym_sort_clause_token1); END_STATE(); - case 2641: + case 2660: ACCEPT_TOKEN(aux_sym_sort_clause_token2); END_STATE(); - case 2642: + case 2661: ACCEPT_TOKEN(aux_sym_for_phrase_token1); END_STATE(); - case 2643: + case 2662: ACCEPT_TOKEN(aux_sym_for_phrase_token2); END_STATE(); - case 2644: + case 2663: ACCEPT_TOKEN(aux_sym_for_phrase_token3); END_STATE(); - case 2645: + case 2664: ACCEPT_TOKEN(aux_sym_of_token1); END_STATE(); - case 2646: + case 2665: ACCEPT_TOKEN(aux_sym_using_token1); END_STATE(); - case 2647: + case 2666: ACCEPT_TOKEN(aux_sym_catch_statement_token1); END_STATE(); - case 2648: + case 2667: ACCEPT_TOKEN(aux_sym_finally_statement_token1); END_STATE(); - case 2649: + case 2668: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token1); END_STATE(); - case 2650: + case 2669: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token2); END_STATE(); - case 2651: + case 2670: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token3); END_STATE(); - case 2652: + case 2671: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token4); END_STATE(); - case 2653: + case 2672: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token5); END_STATE(); - case 2654: + case 2673: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token6); END_STATE(); - case 2655: + case 2674: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token7); END_STATE(); - case 2656: + case 2675: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token8); END_STATE(); - case 2657: + case 2676: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token9); END_STATE(); - case 2658: + case 2677: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token10); END_STATE(); - case 2659: + case 2678: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(2659); + if (lookahead == ' ') ADVANCE(2678); END_STATE(); - case 2660: + case 2679: ACCEPT_TOKEN(aux_sym_temp_table_tuning_token1); END_STATE(); - case 2661: + case 2680: ACCEPT_TOKEN(aux_sym_field_option_token1); END_STATE(); - case 2662: + case 2681: ACCEPT_TOKEN(aux_sym_field_option_token2); END_STATE(); - case 2663: + case 2682: ACCEPT_TOKEN(aux_sym_field_option_token3); END_STATE(); - case 2664: + case 2683: ACCEPT_TOKEN(aux_sym_field_option_token4); END_STATE(); - case 2665: + case 2684: ACCEPT_TOKEN(aux_sym_field_option_token5); END_STATE(); - case 2666: + case 2685: ACCEPT_TOKEN(aux_sym_field_option_token6); END_STATE(); - case 2667: + case 2686: ACCEPT_TOKEN(aux_sym_field_option_token7); END_STATE(); - case 2668: + case 2687: ACCEPT_TOKEN(aux_sym_field_definition_token1); END_STATE(); - case 2669: + case 2688: ACCEPT_TOKEN(aux_sym_index_tuning_token2); END_STATE(); - case 2670: + case 2689: ACCEPT_TOKEN(aux_sym_index_tuning_token3); END_STATE(); - case 2671: + case 2690: ACCEPT_TOKEN(aux_sym_index_tuning_token4); END_STATE(); - case 2672: + case 2691: ACCEPT_TOKEN(aux_sym_index_definition_token1); END_STATE(); - case 2673: + case 2692: ACCEPT_TOKEN(aux_sym_workfile_definition_token1); END_STATE(); - case 2674: + case 2693: ACCEPT_TOKEN(aux_sym_workfile_definition_token2); END_STATE(); - case 2675: + case 2694: ACCEPT_TOKEN(aux_sym_widget_field_token1); END_STATE(); - case 2676: + case 2695: ACCEPT_TOKEN(aux_sym_on_statement_token1); END_STATE(); - case 2677: + case 2696: ACCEPT_TOKEN(aux_sym_prompt_for_statement_token2); END_STATE(); - case 2678: + case 2697: ACCEPT_TOKEN(aux_sym_var_statement_token1); END_STATE(); - case 2679: + case 2698: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(1609); + if (lookahead == '-') ADVANCE(1624); END_STATE(); - case 2680: + case 2699: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(447); + if (lookahead == '-') ADVANCE(453); END_STATE(); - case 2681: + case 2700: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(448); + if (lookahead == '-') ADVANCE(454); END_STATE(); - case 2682: + case 2701: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(1610); + if (lookahead == '-') ADVANCE(1625); END_STATE(); - case 2683: + case 2702: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(1249); + if (lookahead == '-') ADVANCE(1260); END_STATE(); - case 2684: + case 2703: ACCEPT_TOKEN(aux_sym_image_phrase_token2); END_STATE(); - case 2685: + case 2704: ACCEPT_TOKEN(aux_sym_image_phrase_token3); END_STATE(); - case 2686: + case 2705: ACCEPT_TOKEN(aux_sym_image_phrase_token4); - if (lookahead == '-') ADVANCE(1584); + if (lookahead == '-') ADVANCE(1597); END_STATE(); - case 2687: + case 2706: ACCEPT_TOKEN(aux_sym_image_phrase_token4); - if (lookahead == '-') ADVANCE(409); + if (lookahead == '-') ADVANCE(413); END_STATE(); - case 2688: + case 2707: ACCEPT_TOKEN(aux_sym_image_phrase_token5); END_STATE(); - case 2689: + case 2708: ACCEPT_TOKEN(aux_sym_image_phrase_token6); END_STATE(); - case 2690: + case 2709: ACCEPT_TOKEN(aux_sym_image_phrase_token7); END_STATE(); - case 2691: + case 2710: ACCEPT_TOKEN(aux_sym_image_phrase_token7); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1937); + lookahead == 'm') ADVANCE(1952); END_STATE(); - case 2692: + case 2711: ACCEPT_TOKEN(aux_sym_image_phrase_token8); END_STATE(); - case 2693: + case 2712: ACCEPT_TOKEN(aux_sym_image_phrase_token9); END_STATE(); - case 2694: + case 2713: ACCEPT_TOKEN(aux_sym_image_phrase_token10); END_STATE(); - case 2695: + case 2714: ACCEPT_TOKEN(aux_sym_image_phrase_token10); - if (lookahead == '-') ADVANCE(1944); + if (lookahead == '-') ADVANCE(1959); END_STATE(); - case 2696: + case 2715: ACCEPT_TOKEN(aux_sym_image_phrase_token10); - if (lookahead == '-') ADVANCE(793); + if (lookahead == '-') ADVANCE(803); END_STATE(); - case 2697: + case 2716: ACCEPT_TOKEN(aux_sym_size_phrase_token1); - if (lookahead == '-') ADVANCE(1561); + if (lookahead == '-') ADVANCE(1574); END_STATE(); - case 2698: + case 2717: ACCEPT_TOKEN(aux_sym_size_phrase_token1); - if (lookahead == '-') ADVANCE(383); + if (lookahead == '-') ADVANCE(387); END_STATE(); - case 2699: + case 2718: ACCEPT_TOKEN(aux_sym_size_phrase_token2); END_STATE(); - case 2700: + case 2719: ACCEPT_TOKEN(aux_sym_size_phrase_token3); END_STATE(); - case 2701: + case 2720: ACCEPT_TOKEN(aux_sym_button_tuning_token1); END_STATE(); - case 2702: + case 2721: ACCEPT_TOKEN(aux_sym_button_tuning_token2); END_STATE(); - case 2703: + case 2722: ACCEPT_TOKEN(aux_sym_button_tuning_token3); END_STATE(); - case 2704: + case 2723: ACCEPT_TOKEN(aux_sym_button_tuning_token4); END_STATE(); - case 2705: + case 2724: ACCEPT_TOKEN(aux_sym_button_tuning_token5); END_STATE(); - case 2706: + case 2725: ACCEPT_TOKEN(aux_sym_button_tuning_token6); END_STATE(); - case 2707: + case 2726: ACCEPT_TOKEN(aux_sym_button_tuning_token7); END_STATE(); - case 2708: + case 2727: ACCEPT_TOKEN(aux_sym_button_tuning_token8); END_STATE(); - case 2709: + case 2728: ACCEPT_TOKEN(aux_sym_button_tuning_token9); END_STATE(); - case 2710: + case 2729: ACCEPT_TOKEN(aux_sym_button_tuning_token10); END_STATE(); - case 2711: + case 2730: ACCEPT_TOKEN(aux_sym_button_tuning_token11); END_STATE(); - case 2712: + case 2731: ACCEPT_TOKEN(aux_sym_button_tuning_token12); END_STATE(); - case 2713: + case 2732: ACCEPT_TOKEN(aux_sym_button_tuning_token13); END_STATE(); - case 2714: + case 2733: ACCEPT_TOKEN(aux_sym_button_tuning_token14); END_STATE(); - case 2715: + case 2734: ACCEPT_TOKEN(aux_sym_button_tuning_token15); END_STATE(); - case 2716: + case 2735: ACCEPT_TOKEN(aux_sym_button_tuning_token16); END_STATE(); - case 2717: + case 2736: ACCEPT_TOKEN(aux_sym_button_tuning_token17); END_STATE(); - case 2718: + case 2737: ACCEPT_TOKEN(aux_sym_button_definition_token1); END_STATE(); - case 2719: + case 2738: ACCEPT_TOKEN(aux_sym_run_tuning_token1); END_STATE(); - case 2720: + case 2739: ACCEPT_TOKEN(aux_sym_run_tuning_token2); END_STATE(); - case 2721: + case 2740: ACCEPT_TOKEN(aux_sym_run_tuning_token3); END_STATE(); - case 2722: + case 2741: ACCEPT_TOKEN(aux_sym_run_tuning_token4); END_STATE(); - case 2723: + case 2742: ACCEPT_TOKEN(aux_sym_run_tuning_token5); END_STATE(); - case 2724: + case 2743: ACCEPT_TOKEN(aux_sym_run_tuning_token7); END_STATE(); + case 2744: + ACCEPT_TOKEN(aux_sym_enum_member_token1); + END_STATE(); + case 2745: + ACCEPT_TOKEN(aux_sym_enum_definition_token1); + END_STATE(); + case 2746: + ACCEPT_TOKEN(aux_sym_enum_tuning_token1); + END_STATE(); default: return false; } @@ -37420,84 +37748,84 @@ 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 = 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}, + [1] = {.lex_state = 1344}, + [2] = {.lex_state = 1342, .external_lex_state = 2}, + [3] = {.lex_state = 1342, .external_lex_state = 2}, + [4] = {.lex_state = 1342, .external_lex_state = 3}, + [5] = {.lex_state = 1342, .external_lex_state = 3}, + [6] = {.lex_state = 1342, .external_lex_state = 3}, + [7] = {.lex_state = 1342, .external_lex_state = 3}, + [8] = {.lex_state = 1342, .external_lex_state = 4}, + [9] = {.lex_state = 1342, .external_lex_state = 3}, + [10] = {.lex_state = 1342, .external_lex_state = 3}, + [11] = {.lex_state = 1342, .external_lex_state = 5}, + [12] = {.lex_state = 1342, .external_lex_state = 3}, + [13] = {.lex_state = 1342, .external_lex_state = 6}, + [14] = {.lex_state = 1342, .external_lex_state = 4}, + [15] = {.lex_state = 1342, .external_lex_state = 3}, + [16] = {.lex_state = 1342, .external_lex_state = 3}, + [17] = {.lex_state = 1342, .external_lex_state = 4}, + [18] = {.lex_state = 1342, .external_lex_state = 4}, + [19] = {.lex_state = 1342, .external_lex_state = 3}, + [20] = {.lex_state = 1342, .external_lex_state = 5}, + [21] = {.lex_state = 1342, .external_lex_state = 5}, + [22] = {.lex_state = 1342, .external_lex_state = 3}, + [23] = {.lex_state = 1342, .external_lex_state = 3}, + [24] = {.lex_state = 1342, .external_lex_state = 4}, + [25] = {.lex_state = 1342, .external_lex_state = 4}, + [26] = {.lex_state = 1342, .external_lex_state = 3}, + [27] = {.lex_state = 1342, .external_lex_state = 6}, + [28] = {.lex_state = 1342, .external_lex_state = 6}, + [29] = {.lex_state = 1342, .external_lex_state = 6}, + [30] = {.lex_state = 1342, .external_lex_state = 6}, + [31] = {.lex_state = 1342, .external_lex_state = 6}, + [32] = {.lex_state = 1342, .external_lex_state = 6}, + [33] = {.lex_state = 1342, .external_lex_state = 6}, + [34] = {.lex_state = 1342, .external_lex_state = 6}, + [35] = {.lex_state = 1342, .external_lex_state = 6}, + [36] = {.lex_state = 1342, .external_lex_state = 6}, + [37] = {.lex_state = 1342, .external_lex_state = 6}, + [38] = {.lex_state = 1342, .external_lex_state = 6}, + [39] = {.lex_state = 1342, .external_lex_state = 6}, + [40] = {.lex_state = 1342, .external_lex_state = 6}, + [41] = {.lex_state = 1342, .external_lex_state = 6}, + [42] = {.lex_state = 1342, .external_lex_state = 6}, + [43] = {.lex_state = 1342, .external_lex_state = 6}, + [44] = {.lex_state = 1342, .external_lex_state = 6}, + [45] = {.lex_state = 1342, .external_lex_state = 6}, + [46] = {.lex_state = 1342, .external_lex_state = 6}, + [47] = {.lex_state = 1342, .external_lex_state = 6}, + [48] = {.lex_state = 1342, .external_lex_state = 6}, + [49] = {.lex_state = 1342, .external_lex_state = 6}, + [50] = {.lex_state = 1342, .external_lex_state = 6}, + [51] = {.lex_state = 1342, .external_lex_state = 6}, + [52] = {.lex_state = 1342, .external_lex_state = 6}, + [53] = {.lex_state = 200}, [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}, + [55] = {.lex_state = 200}, + [56] = {.lex_state = 1344}, + [57] = {.lex_state = 1344}, + [58] = {.lex_state = 200}, + [59] = {.lex_state = 200}, + [60] = {.lex_state = 1344}, + [61] = {.lex_state = 1344}, + [62] = {.lex_state = 1344}, + [63] = {.lex_state = 1344}, + [64] = {.lex_state = 1344}, + [65] = {.lex_state = 36, .external_lex_state = 3}, + [66] = {.lex_state = 1344}, + [67] = {.lex_state = 1344}, + [68] = {.lex_state = 36, .external_lex_state = 3}, + [69] = {.lex_state = 36, .external_lex_state = 3}, + [70] = {.lex_state = 1344}, + [71] = {.lex_state = 36, .external_lex_state = 3}, + [72] = {.lex_state = 1344}, + [73] = {.lex_state = 1344}, + [74] = {.lex_state = 1344}, + [75] = {.lex_state = 1344}, + [76] = {.lex_state = 1344}, + [77] = {.lex_state = 1344}, + [78] = {.lex_state = 1344}, [79] = {.lex_state = 42, .external_lex_state = 7}, [80] = {.lex_state = 42, .external_lex_state = 7}, [81] = {.lex_state = 42, .external_lex_state = 7}, @@ -37577,233 +37905,233 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 43, .external_lex_state = 7}, [156] = {.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}, + [158] = {.lex_state = 43, .external_lex_state = 7}, + [159] = {.lex_state = 43, .external_lex_state = 7}, [160] = {.lex_state = 43, .external_lex_state = 7}, - [161] = {.lex_state = 67, .external_lex_state = 7}, + [161] = {.lex_state = 43, .external_lex_state = 7}, [162] = {.lex_state = 43, .external_lex_state = 7}, - [163] = {.lex_state = 43, .external_lex_state = 7}, + [163] = {.lex_state = 67, .external_lex_state = 7}, [164] = {.lex_state = 43, .external_lex_state = 7}, [165] = {.lex_state = 43, .external_lex_state = 7}, [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 = 66, .external_lex_state = 11}, - [170] = {.lex_state = 43, .external_lex_state = 7}, + [169] = {.lex_state = 43, .external_lex_state = 7}, + [170] = {.lex_state = 66, .external_lex_state = 11}, [171] = {.lex_state = 43, .external_lex_state = 7}, - [172] = {.lex_state = 43, .external_lex_state = 7}, + [172] = {.lex_state = 67, .external_lex_state = 7}, [173] = {.lex_state = 43, .external_lex_state = 7}, [174] = {.lex_state = 43, .external_lex_state = 7}, - [175] = {.lex_state = 43, .external_lex_state = 7}, + [175] = {.lex_state = 67, .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 = 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 = 66}, - [186] = {.lex_state = 37, .external_lex_state = 3}, + [180] = {.lex_state = 37, .external_lex_state = 3}, + [181] = {.lex_state = 66}, + [182] = {.lex_state = 37, .external_lex_state = 3}, + [183] = {.lex_state = 37, .external_lex_state = 3}, + [184] = {.lex_state = 51, .external_lex_state = 12}, + [185] = {.lex_state = 60, .external_lex_state = 10}, + [186] = {.lex_state = 43, .external_lex_state = 7}, [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 = 37, .external_lex_state = 6}, + [188] = {.lex_state = 66}, + [189] = {.lex_state = 51, .external_lex_state = 12}, + [190] = {.lex_state = 51, .external_lex_state = 12}, + [191] = {.lex_state = 37, .external_lex_state = 6}, + [192] = {.lex_state = 71, .external_lex_state = 7}, + [193] = {.lex_state = 71, .external_lex_state = 7}, [194] = {.lex_state = 51, .external_lex_state = 12}, - [195] = {.lex_state = 51, .external_lex_state = 12}, + [195] = {.lex_state = 71, .external_lex_state = 7}, [196] = {.lex_state = 51, .external_lex_state = 12}, - [197] = {.lex_state = 71, .external_lex_state = 7}, + [197] = {.lex_state = 51, .external_lex_state = 12}, [198] = {.lex_state = 51, .external_lex_state = 12}, [199] = {.lex_state = 51, .external_lex_state = 12}, - [200] = {.lex_state = 51, .external_lex_state = 12}, - [201] = {.lex_state = 51, .external_lex_state = 12}, + [200] = {.lex_state = 37, .external_lex_state = 3}, + [201] = {.lex_state = 37, .external_lex_state = 3}, [202] = {.lex_state = 51, .external_lex_state = 12}, - [203] = {.lex_state = 71, .external_lex_state = 7}, + [203] = {.lex_state = 51, .external_lex_state = 12}, [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}, + [206] = {.lex_state = 51, .external_lex_state = 12}, + [207] = {.lex_state = 37, .external_lex_state = 6}, + [208] = {.lex_state = 37, .external_lex_state = 3}, + [209] = {.lex_state = 72, .external_lex_state = 7}, + [210] = {.lex_state = 37, .external_lex_state = 3}, + [211] = {.lex_state = 37, .external_lex_state = 3}, + [212] = {.lex_state = 37, .external_lex_state = 3}, + [213] = {.lex_state = 72, .external_lex_state = 7}, [214] = {.lex_state = 37, .external_lex_state = 3}, - [215] = {.lex_state = 37, .external_lex_state = 4}, - [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}, + [215] = {.lex_state = 60, .external_lex_state = 12}, + [216] = {.lex_state = 37, .external_lex_state = 4}, + [217] = {.lex_state = 37, .external_lex_state = 5}, + [218] = {.lex_state = 72, .external_lex_state = 7}, + [219] = {.lex_state = 37, .external_lex_state = 4}, [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}, + [221] = {.lex_state = 37, .external_lex_state = 5}, + [222] = {.lex_state = 37, .external_lex_state = 4}, + [223] = {.lex_state = 60, .external_lex_state = 12}, + [224] = {.lex_state = 51, .external_lex_state = 13}, + [225] = {.lex_state = 49, .external_lex_state = 14}, + [226] = {.lex_state = 51, .external_lex_state = 13}, + [227] = {.lex_state = 49, .external_lex_state = 14}, + [228] = {.lex_state = 52, .external_lex_state = 14}, + [229] = {.lex_state = 51, .external_lex_state = 15}, + [230] = {.lex_state = 51, .external_lex_state = 15}, + [231] = {.lex_state = 51, .external_lex_state = 14}, + [232] = {.lex_state = 51, .external_lex_state = 14}, + [233] = {.lex_state = 60, .external_lex_state = 12}, + [234] = {.lex_state = 60, .external_lex_state = 12}, + [235] = {.lex_state = 51, .external_lex_state = 13}, + [236] = {.lex_state = 60, .external_lex_state = 12}, + [237] = {.lex_state = 49, .external_lex_state = 14}, + [238] = {.lex_state = 37, .external_lex_state = 3}, [239] = {.lex_state = 60, .external_lex_state = 12}, - [240] = {.lex_state = 60, .external_lex_state = 12}, + [240] = {.lex_state = 37, .external_lex_state = 5}, [241] = {.lex_state = 60, .external_lex_state = 12}, - [242] = {.lex_state = 37, .external_lex_state = 5}, + [242] = {.lex_state = 37, .external_lex_state = 4}, [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}, + [246] = {.lex_state = 37, .external_lex_state = 4}, + [247] = {.lex_state = 51, .external_lex_state = 14}, + [248] = {.lex_state = 37, .external_lex_state = 3}, [249] = {.lex_state = 60, .external_lex_state = 12}, [250] = {.lex_state = 60, .external_lex_state = 12}, - [251] = {.lex_state = 51, .external_lex_state = 14}, + [251] = {.lex_state = 60, .external_lex_state = 12}, [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}, + [253] = {.lex_state = 60, .external_lex_state = 12}, + [254] = {.lex_state = 52, .external_lex_state = 14}, + [255] = {.lex_state = 52, .external_lex_state = 14}, + [256] = {.lex_state = 37, .external_lex_state = 3}, + [257] = {.lex_state = 50, .external_lex_state = 12}, + [258] = {.lex_state = 52, .external_lex_state = 14}, + [259] = {.lex_state = 51, .external_lex_state = 14}, + [260] = {.lex_state = 51, .external_lex_state = 13}, [261] = {.lex_state = 51, .external_lex_state = 14}, - [262] = {.lex_state = 37, .external_lex_state = 6}, + [262] = {.lex_state = 69, .external_lex_state = 7}, [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}, + [265] = {.lex_state = 37, .external_lex_state = 6}, + [266] = {.lex_state = 51, .external_lex_state = 13}, + [267] = {.lex_state = 37, .external_lex_state = 6}, + [268] = {.lex_state = 37, .external_lex_state = 6}, + [269] = {.lex_state = 37, .external_lex_state = 6}, + [270] = {.lex_state = 37, .external_lex_state = 6}, [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}, + [274] = {.lex_state = 69, .external_lex_state = 7}, + [275] = {.lex_state = 37, .external_lex_state = 6}, [276] = {.lex_state = 69, .external_lex_state = 7}, [277] = {.lex_state = 69, .external_lex_state = 7}, - [278] = {.lex_state = 69, .external_lex_state = 7}, + [278] = {.lex_state = 37, .external_lex_state = 6}, [279] = {.lex_state = 69, .external_lex_state = 7}, - [280] = {.lex_state = 69, .external_lex_state = 7}, + [280] = {.lex_state = 37, .external_lex_state = 6}, [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}, + [282] = {.lex_state = 69, .external_lex_state = 7}, + [283] = {.lex_state = 37, .external_lex_state = 6}, + [284] = {.lex_state = 37, .external_lex_state = 6}, [285] = {.lex_state = 69, .external_lex_state = 7}, - [286] = {.lex_state = 69, .external_lex_state = 7}, + [286] = {.lex_state = 37, .external_lex_state = 6}, [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}, + [291] = {.lex_state = 51, .external_lex_state = 14}, + [292] = {.lex_state = 37, .external_lex_state = 6}, + [293] = {.lex_state = 51, .external_lex_state = 14}, [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 = 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}, + [295] = {.lex_state = 37, .external_lex_state = 6}, + [296] = {.lex_state = 37, .external_lex_state = 6}, + [297] = {.lex_state = 69, .external_lex_state = 7}, + [298] = {.lex_state = 37, .external_lex_state = 6}, + [299] = {.lex_state = 37, .external_lex_state = 6}, + [300] = {.lex_state = 51, .external_lex_state = 14}, + [301] = {.lex_state = 51, .external_lex_state = 15}, + [302] = {.lex_state = 37, .external_lex_state = 6}, + [303] = {.lex_state = 37, .external_lex_state = 6}, [304] = {.lex_state = 69, .external_lex_state = 7}, - [305] = {.lex_state = 69, .external_lex_state = 7}, + [305] = {.lex_state = 51, .external_lex_state = 13}, [306] = {.lex_state = 69, .external_lex_state = 7}, - [307] = {.lex_state = 51, .external_lex_state = 12}, - [308] = {.lex_state = 37, .external_lex_state = 6}, + [307] = {.lex_state = 37, .external_lex_state = 6}, + [308] = {.lex_state = 69, .external_lex_state = 7}, [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}, + [311] = {.lex_state = 69, .external_lex_state = 7}, + [312] = {.lex_state = 47, .external_lex_state = 10}, + [313] = {.lex_state = 69, .external_lex_state = 7}, + [314] = {.lex_state = 69, .external_lex_state = 7}, + [315] = {.lex_state = 69, .external_lex_state = 7}, + [316] = {.lex_state = 69, .external_lex_state = 7}, + [317] = {.lex_state = 69, .external_lex_state = 7}, [318] = {.lex_state = 37, .external_lex_state = 6}, - [319] = {.lex_state = 37, .external_lex_state = 6}, + [319] = {.lex_state = 69, .external_lex_state = 7}, [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}, + [322] = {.lex_state = 69, .external_lex_state = 7}, + [323] = {.lex_state = 69, .external_lex_state = 7}, + [324] = {.lex_state = 51, .external_lex_state = 12}, + [325] = {.lex_state = 69, .external_lex_state = 7}, + [326] = {.lex_state = 69, .external_lex_state = 7}, + [327] = {.lex_state = 51, .external_lex_state = 12}, [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 = 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}, + [329] = {.lex_state = 69, .external_lex_state = 7}, + [330] = {.lex_state = 47, .external_lex_state = 10}, + [331] = {.lex_state = 69, .external_lex_state = 7}, + [332] = {.lex_state = 51, .external_lex_state = 12}, + [333] = {.lex_state = 51, .external_lex_state = 12}, + [334] = {.lex_state = 69, .external_lex_state = 7}, + [335] = {.lex_state = 51, .external_lex_state = 12}, + [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 = 51, .external_lex_state = 12}, + [341] = {.lex_state = 51, .external_lex_state = 12}, + [342] = {.lex_state = 51, .external_lex_state = 12}, + [343] = {.lex_state = 51, .external_lex_state = 12}, + [344] = {.lex_state = 51, .external_lex_state = 12}, + [345] = {.lex_state = 51, .external_lex_state = 12}, + [346] = {.lex_state = 51, .external_lex_state = 12}, + [347] = {.lex_state = 51, .external_lex_state = 12}, + [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 = 51, .external_lex_state = 12}, + [352] = {.lex_state = 51, .external_lex_state = 12}, + [353] = {.lex_state = 51, .external_lex_state = 12}, + [354] = {.lex_state = 64, .external_lex_state = 10}, + [355] = {.lex_state = 51, .external_lex_state = 12}, + [356] = {.lex_state = 64, .external_lex_state = 10}, [357] = {.lex_state = 51, .external_lex_state = 12}, - [358] = {.lex_state = 69, .external_lex_state = 7}, + [358] = {.lex_state = 51, .external_lex_state = 12}, [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}, + [361] = {.lex_state = 60, .external_lex_state = 14}, + [362] = {.lex_state = 60, .external_lex_state = 14}, + [363] = {.lex_state = 60, .external_lex_state = 13}, + [364] = {.lex_state = 60, .external_lex_state = 13}, + [365] = {.lex_state = 61, .external_lex_state = 14}, + [366] = {.lex_state = 60, .external_lex_state = 15}, + [367] = {.lex_state = 60, .external_lex_state = 15}, + [368] = {.lex_state = 60, .external_lex_state = 14}, + [369] = {.lex_state = 60, .external_lex_state = 14}, + [370] = {.lex_state = 60, .external_lex_state = 14}, + [371] = {.lex_state = 60, .external_lex_state = 14}, + [372] = {.lex_state = 58, .external_lex_state = 14}, + [373] = {.lex_state = 60, .external_lex_state = 13}, + [374] = {.lex_state = 60, .external_lex_state = 13}, + [375] = {.lex_state = 61, .external_lex_state = 14}, + [376] = {.lex_state = 61, .external_lex_state = 14}, + [377] = {.lex_state = 61, .external_lex_state = 14}, + [378] = {.lex_state = 58, .external_lex_state = 14}, + [379] = {.lex_state = 58, .external_lex_state = 14}, + [380] = {.lex_state = 58, .external_lex_state = 14}, + [381] = {.lex_state = 59, .external_lex_state = 12}, + [382] = {.lex_state = 69, .external_lex_state = 7}, + [383] = {.lex_state = 69, .external_lex_state = 7}, + [384] = {.lex_state = 69, .external_lex_state = 7}, [385] = {.lex_state = 69, .external_lex_state = 7}, [386] = {.lex_state = 69, .external_lex_state = 7}, [387] = {.lex_state = 69, .external_lex_state = 7}, @@ -37811,11 +38139,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [392] = {.lex_state = 69, .external_lex_state = 7}, [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}, + [396] = {.lex_state = 39, .external_lex_state = 11}, [397] = {.lex_state = 69, .external_lex_state = 7}, [398] = {.lex_state = 69, .external_lex_state = 7}, [399] = {.lex_state = 69, .external_lex_state = 7}, @@ -37835,7 +38163,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [416] = {.lex_state = 69, .external_lex_state = 7}, [417] = {.lex_state = 69, .external_lex_state = 7}, [418] = {.lex_state = 69, .external_lex_state = 7}, [419] = {.lex_state = 69, .external_lex_state = 7}, @@ -38063,11 +38391,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [644] = {.lex_state = 60, .external_lex_state = 12}, [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}, + [648] = {.lex_state = 60, .external_lex_state = 12}, [649] = {.lex_state = 69, .external_lex_state = 7}, [650] = {.lex_state = 69, .external_lex_state = 7}, [651] = {.lex_state = 69, .external_lex_state = 7}, @@ -38087,13 +38415,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [668] = {.lex_state = 69, .external_lex_state = 7}, [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}, + [674] = {.lex_state = 69, .external_lex_state = 7}, [675] = {.lex_state = 69, .external_lex_state = 7}, [676] = {.lex_state = 69, .external_lex_state = 7}, [677] = {.lex_state = 69, .external_lex_state = 7}, @@ -38115,16 +38443,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [696] = {.lex_state = 60, .external_lex_state = 13}, + [697] = {.lex_state = 39, .external_lex_state = 11}, [698] = {.lex_state = 69, .external_lex_state = 7}, - [699] = {.lex_state = 69, .external_lex_state = 7}, + [699] = {.lex_state = 60, .external_lex_state = 15}, [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}, + [705] = {.lex_state = 60, .external_lex_state = 14}, [706] = {.lex_state = 69, .external_lex_state = 7}, [707] = {.lex_state = 69, .external_lex_state = 7}, [708] = {.lex_state = 69, .external_lex_state = 7}, @@ -38148,10 +38476,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [729] = {.lex_state = 69, .external_lex_state = 7}, [730] = {.lex_state = 69, .external_lex_state = 7}, [731] = {.lex_state = 69, .external_lex_state = 7}, - [732] = {.lex_state = 69, .external_lex_state = 7}, + [732] = {.lex_state = 60, .external_lex_state = 14}, [733] = {.lex_state = 69, .external_lex_state = 7}, [734] = {.lex_state = 69, .external_lex_state = 7}, [735] = {.lex_state = 69, .external_lex_state = 7}, @@ -38179,7 +38507,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [760] = {.lex_state = 69, .external_lex_state = 7}, [761] = {.lex_state = 69, .external_lex_state = 7}, [762] = {.lex_state = 69, .external_lex_state = 7}, [763] = {.lex_state = 69, .external_lex_state = 7}, @@ -38194,7 +38522,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [775] = {.lex_state = 69, .external_lex_state = 7}, [776] = {.lex_state = 69, .external_lex_state = 7}, [777] = {.lex_state = 69, .external_lex_state = 7}, [778] = {.lex_state = 69, .external_lex_state = 7}, @@ -38264,7 +38592,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [845] = {.lex_state = 60, .external_lex_state = 12}, [846] = {.lex_state = 69, .external_lex_state = 7}, [847] = {.lex_state = 69, .external_lex_state = 7}, [848] = {.lex_state = 69, .external_lex_state = 7}, @@ -38275,7 +38603,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [856] = {.lex_state = 69, .external_lex_state = 7}, [857] = {.lex_state = 69, .external_lex_state = 7}, [858] = {.lex_state = 69, .external_lex_state = 7}, [859] = {.lex_state = 69, .external_lex_state = 7}, @@ -38293,7 +38621,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [874] = {.lex_state = 69, .external_lex_state = 7}, [875] = {.lex_state = 69, .external_lex_state = 7}, [876] = {.lex_state = 69, .external_lex_state = 7}, [877] = {.lex_state = 69, .external_lex_state = 7}, @@ -38388,7 +38716,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [969] = {.lex_state = 69, .external_lex_state = 7}, [970] = {.lex_state = 69, .external_lex_state = 7}, [971] = {.lex_state = 69, .external_lex_state = 7}, [972] = {.lex_state = 69, .external_lex_state = 7}, @@ -38397,7 +38725,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [978] = {.lex_state = 60, .external_lex_state = 13}, [979] = {.lex_state = 69, .external_lex_state = 7}, [980] = {.lex_state = 69, .external_lex_state = 7}, [981] = {.lex_state = 69, .external_lex_state = 7}, @@ -38406,45 +38734,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [987] = {.lex_state = 47, .external_lex_state = 12}, + [988] = {.lex_state = 47, .external_lex_state = 12}, + [989] = {.lex_state = 39, .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 = 60, .external_lex_state = 12}, + [992] = {.lex_state = 60, .external_lex_state = 12}, + [993] = {.lex_state = 47, .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}, + [996] = {.lex_state = 47, .external_lex_state = 12}, [997] = {.lex_state = 60, .external_lex_state = 12}, - [998] = {.lex_state = 60, .external_lex_state = 12}, + [998] = {.lex_state = 47, .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}, + [1000] = {.lex_state = 47, .external_lex_state = 12}, + [1001] = {.lex_state = 47, .external_lex_state = 12}, + [1002] = {.lex_state = 60, .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 = 47, .external_lex_state = 12}, + [1007] = {.lex_state = 60, .external_lex_state = 12}, + [1008] = {.lex_state = 60, .external_lex_state = 12}, + [1009] = {.lex_state = 60, .external_lex_state = 12}, + [1010] = {.lex_state = 60, .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}, + [1012] = {.lex_state = 60, .external_lex_state = 12}, + [1013] = {.lex_state = 60, .external_lex_state = 12}, + [1014] = {.lex_state = 47, .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}, + [1017] = {.lex_state = 47, .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}, + [1021] = {.lex_state = 60, .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}, + [1025] = {.lex_state = 37}, [1026] = {.lex_state = 64, .external_lex_state = 12}, [1027] = {.lex_state = 64, .external_lex_state = 12}, [1028] = {.lex_state = 64, .external_lex_state = 12}, @@ -38456,107 +38784,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 64, .external_lex_state = 13}, - [1063] = {.lex_state = 65, .external_lex_state = 14}, + [1037] = {.lex_state = 47, .external_lex_state = 12}, + [1038] = {.lex_state = 64, .external_lex_state = 12}, + [1039] = {.lex_state = 64, .external_lex_state = 12}, + [1040] = {.lex_state = 47, .external_lex_state = 14}, + [1041] = {.lex_state = 47, .external_lex_state = 13}, + [1042] = {.lex_state = 47, .external_lex_state = 13}, + [1043] = {.lex_state = 45, .external_lex_state = 14}, + [1044] = {.lex_state = 47, .external_lex_state = 13}, + [1045] = {.lex_state = 47, .external_lex_state = 14}, + [1046] = {.lex_state = 47, .external_lex_state = 12}, + [1047] = {.lex_state = 47, .external_lex_state = 14}, + [1048] = {.lex_state = 47, .external_lex_state = 15}, + [1049] = {.lex_state = 48, .external_lex_state = 14}, + [1050] = {.lex_state = 47, .external_lex_state = 14}, + [1051] = {.lex_state = 45, .external_lex_state = 14}, + [1052] = {.lex_state = 45, .external_lex_state = 14}, + [1053] = {.lex_state = 47, .external_lex_state = 14}, + [1054] = {.lex_state = 46, .external_lex_state = 12}, + [1055] = {.lex_state = 48, .external_lex_state = 14}, + [1056] = {.lex_state = 47, .external_lex_state = 13}, + [1057] = {.lex_state = 47, .external_lex_state = 15}, + [1058] = {.lex_state = 47, .external_lex_state = 14}, + [1059] = {.lex_state = 48, .external_lex_state = 14}, + [1060] = {.lex_state = 48, .external_lex_state = 14}, + [1061] = {.lex_state = 45, .external_lex_state = 14}, + [1062] = {.lex_state = 65, .external_lex_state = 14}, + [1063] = {.lex_state = 64, .external_lex_state = 13}, [1064] = {.lex_state = 64, .external_lex_state = 14}, - [1065] = {.lex_state = 47, .external_lex_state = 12}, - [1066] = {.lex_state = 62, .external_lex_state = 14}, + [1065] = {.lex_state = 62, .external_lex_state = 14}, + [1066] = {.lex_state = 65, .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}, + [1068] = {.lex_state = 47, .external_lex_state = 13}, + [1069] = {.lex_state = 47, .external_lex_state = 14}, + [1070] = {.lex_state = 47, .external_lex_state = 14}, + [1071] = {.lex_state = 64, .external_lex_state = 14}, [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 = 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}, + [1073] = {.lex_state = 62, .external_lex_state = 14}, + [1074] = {.lex_state = 64, .external_lex_state = 14}, + [1075] = {.lex_state = 64, .external_lex_state = 14}, + [1076] = {.lex_state = 65, .external_lex_state = 14}, + [1077] = {.lex_state = 64, .external_lex_state = 13}, + [1078] = {.lex_state = 47, .external_lex_state = 12}, + [1079] = {.lex_state = 64, .external_lex_state = 15}, + [1080] = {.lex_state = 64, .external_lex_state = 13}, + [1081] = {.lex_state = 47, .external_lex_state = 12}, + [1082] = {.lex_state = 62, .external_lex_state = 14}, + [1083] = {.lex_state = 47, .external_lex_state = 12}, + [1084] = {.lex_state = 47, .external_lex_state = 15}, + [1085] = {.lex_state = 64, .external_lex_state = 14}, + [1086] = {.lex_state = 47, .external_lex_state = 14}, + [1087] = {.lex_state = 47, .external_lex_state = 13}, + [1088] = {.lex_state = 64, .external_lex_state = 13}, + [1089] = {.lex_state = 65, .external_lex_state = 14}, + [1090] = {.lex_state = 64, .external_lex_state = 15}, + [1091] = {.lex_state = 63, .external_lex_state = 12}, [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}, + [1094] = {.lex_state = 47, .external_lex_state = 12}, + [1095] = {.lex_state = 64, .external_lex_state = 13}, [1096] = {.lex_state = 47, .external_lex_state = 12}, [1097] = {.lex_state = 47, .external_lex_state = 12}, - [1098] = {.lex_state = 64, .external_lex_state = 15}, + [1098] = {.lex_state = 47, .external_lex_state = 12}, [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}, + [1102] = {.lex_state = 64, .external_lex_state = 15}, [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}, + [1106] = {.lex_state = 64, .external_lex_state = 12}, [1107] = {.lex_state = 47, .external_lex_state = 12}, [1108] = {.lex_state = 47, .external_lex_state = 12}, - [1109] = {.lex_state = 47, .external_lex_state = 12}, + [1109] = {.lex_state = 64, .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}, + [1113] = {.lex_state = 47, .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}, + [1115] = {.lex_state = 47, .external_lex_state = 12}, + [1116] = {.lex_state = 64, .external_lex_state = 14}, [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}, + [1122] = {.lex_state = 64, .external_lex_state = 13}, + [1123] = {.lex_state = 47, .external_lex_state = 12}, + [1124] = {.lex_state = 64, .external_lex_state = 14}, [1125] = {.lex_state = 47, .external_lex_state = 12}, - [1126] = {.lex_state = 64, .external_lex_state = 12}, + [1126] = {.lex_state = 37, .external_lex_state = 6}, [1127] = {.lex_state = 64, .external_lex_state = 12}, - [1128] = {.lex_state = 37, .external_lex_state = 6}, + [1128] = {.lex_state = 64, .external_lex_state = 12}, [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}, + [1132] = {.lex_state = 37, .external_lex_state = 6}, + [1133] = {.lex_state = 64, .external_lex_state = 12}, [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}, + [1136] = {.lex_state = 64, .external_lex_state = 12}, + [1137] = {.lex_state = 37, .external_lex_state = 6}, [1138] = {.lex_state = 37, .external_lex_state = 6}, [1139] = {.lex_state = 64, .external_lex_state = 12}, [1140] = {.lex_state = 64, .external_lex_state = 12}, @@ -38565,399 +38893,399 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1146] = {.lex_state = 64, .external_lex_state = 12}, + [1147] = {.lex_state = 37, .external_lex_state = 6}, + [1148] = {.lex_state = 64, .external_lex_state = 12}, [1149] = {.lex_state = 64, .external_lex_state = 12}, [1150] = {.lex_state = 64, .external_lex_state = 12}, - [1151] = {.lex_state = 37, .external_lex_state = 6}, + [1151] = {.lex_state = 64, .external_lex_state = 12}, [1152] = {.lex_state = 64, .external_lex_state = 12}, - [1153] = {.lex_state = 37, .external_lex_state = 6}, + [1153] = {.lex_state = 64, .external_lex_state = 12}, [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}, + [1157] = {.lex_state = 37, .external_lex_state = 6}, + [1158] = {.lex_state = 37, .external_lex_state = 6}, + [1159] = {.lex_state = 37, .external_lex_state = 6}, [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}, + [1165] = {.lex_state = 38, .external_lex_state = 3}, + [1166] = {.lex_state = 97, .external_lex_state = 6}, [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}, + [1170] = {.lex_state = 1342, .external_lex_state = 6}, + [1171] = {.lex_state = 1342, .external_lex_state = 6}, + [1172] = {.lex_state = 1342, .external_lex_state = 6}, + [1173] = {.lex_state = 1342, .external_lex_state = 6}, + [1174] = {.lex_state = 1342, .external_lex_state = 6}, + [1175] = {.lex_state = 1342, .external_lex_state = 6}, + [1176] = {.lex_state = 1342, .external_lex_state = 6}, + [1177] = {.lex_state = 1342, .external_lex_state = 6}, + [1178] = {.lex_state = 1342, .external_lex_state = 6}, + [1179] = {.lex_state = 1342, .external_lex_state = 6}, + [1180] = {.lex_state = 1342, .external_lex_state = 6}, + [1181] = {.lex_state = 1342, .external_lex_state = 6}, + [1182] = {.lex_state = 1342, .external_lex_state = 6}, + [1183] = {.lex_state = 1342, .external_lex_state = 6}, + [1184] = {.lex_state = 1342, .external_lex_state = 6}, + [1185] = {.lex_state = 1342, .external_lex_state = 6}, + [1186] = {.lex_state = 1342, .external_lex_state = 6}, + [1187] = {.lex_state = 1342, .external_lex_state = 6}, + [1188] = {.lex_state = 1342, .external_lex_state = 6}, + [1189] = {.lex_state = 1342, .external_lex_state = 6}, + [1190] = {.lex_state = 1342, .external_lex_state = 6}, + [1191] = {.lex_state = 1342, .external_lex_state = 6}, + [1192] = {.lex_state = 1342, .external_lex_state = 6}, + [1193] = {.lex_state = 1342, .external_lex_state = 6}, + [1194] = {.lex_state = 1342, .external_lex_state = 6}, + [1195] = {.lex_state = 92, .external_lex_state = 6}, + [1196] = {.lex_state = 1342, .external_lex_state = 6}, + [1197] = {.lex_state = 1342, .external_lex_state = 6}, + [1198] = {.lex_state = 1342, .external_lex_state = 6}, + [1199] = {.lex_state = 1342, .external_lex_state = 6}, + [1200] = {.lex_state = 1342, .external_lex_state = 6}, + [1201] = {.lex_state = 1342, .external_lex_state = 6}, + [1202] = {.lex_state = 1342, .external_lex_state = 6}, + [1203] = {.lex_state = 1342, .external_lex_state = 6}, + [1204] = {.lex_state = 66, .external_lex_state = 2}, + [1205] = {.lex_state = 1342, .external_lex_state = 6}, + [1206] = {.lex_state = 1342, .external_lex_state = 6}, + [1207] = {.lex_state = 1342, .external_lex_state = 6}, + [1208] = {.lex_state = 1342, .external_lex_state = 6}, + [1209] = {.lex_state = 1342, .external_lex_state = 6}, + [1210] = {.lex_state = 1342, .external_lex_state = 6}, + [1211] = {.lex_state = 1342, .external_lex_state = 6}, + [1212] = {.lex_state = 94, .external_lex_state = 6}, + [1213] = {.lex_state = 1342, .external_lex_state = 6}, + [1214] = {.lex_state = 1342, .external_lex_state = 6}, + [1215] = {.lex_state = 1342, .external_lex_state = 6}, + [1216] = {.lex_state = 1342, .external_lex_state = 6}, + [1217] = {.lex_state = 93, .external_lex_state = 6}, + [1218] = {.lex_state = 1342, .external_lex_state = 6}, + [1219] = {.lex_state = 1342, .external_lex_state = 6}, + [1220] = {.lex_state = 1342, .external_lex_state = 6}, + [1221] = {.lex_state = 1342, .external_lex_state = 6}, + [1222] = {.lex_state = 1342, .external_lex_state = 6}, + [1223] = {.lex_state = 1342, .external_lex_state = 6}, + [1224] = {.lex_state = 66, .external_lex_state = 2}, + [1225] = {.lex_state = 1342, .external_lex_state = 6}, + [1226] = {.lex_state = 1342, .external_lex_state = 6}, + [1227] = {.lex_state = 1342, .external_lex_state = 6}, + [1228] = {.lex_state = 102, .external_lex_state = 6}, + [1229] = {.lex_state = 1342, .external_lex_state = 6}, + [1230] = {.lex_state = 1342, .external_lex_state = 6}, + [1231] = {.lex_state = 1342, .external_lex_state = 6}, + [1232] = {.lex_state = 1342, .external_lex_state = 6}, + [1233] = {.lex_state = 1342, .external_lex_state = 6}, + [1234] = {.lex_state = 1342, .external_lex_state = 6}, + [1235] = {.lex_state = 1342, .external_lex_state = 6}, + [1236] = {.lex_state = 1342, .external_lex_state = 6}, + [1237] = {.lex_state = 1342, .external_lex_state = 6}, + [1238] = {.lex_state = 95, .external_lex_state = 6}, + [1239] = {.lex_state = 1342, .external_lex_state = 6}, + [1240] = {.lex_state = 1342, .external_lex_state = 6}, + [1241] = {.lex_state = 1342, .external_lex_state = 6}, + [1242] = {.lex_state = 1342, .external_lex_state = 6}, + [1243] = {.lex_state = 1342, .external_lex_state = 6}, + [1244] = {.lex_state = 1342, .external_lex_state = 6}, + [1245] = {.lex_state = 1342, .external_lex_state = 6}, + [1246] = {.lex_state = 1342, .external_lex_state = 6}, + [1247] = {.lex_state = 1342, .external_lex_state = 6}, + [1248] = {.lex_state = 1342, .external_lex_state = 6}, + [1249] = {.lex_state = 105, .external_lex_state = 6}, + [1250] = {.lex_state = 1342, .external_lex_state = 6}, + [1251] = {.lex_state = 103, .external_lex_state = 6}, + [1252] = {.lex_state = 1342, .external_lex_state = 6}, + [1253] = {.lex_state = 1342, .external_lex_state = 6}, + [1254] = {.lex_state = 1342, .external_lex_state = 6}, + [1255] = {.lex_state = 1342, .external_lex_state = 6}, + [1256] = {.lex_state = 1342, .external_lex_state = 6}, + [1257] = {.lex_state = 1342, .external_lex_state = 6}, + [1258] = {.lex_state = 1342, .external_lex_state = 6}, + [1259] = {.lex_state = 1342, .external_lex_state = 6}, + [1260] = {.lex_state = 1342, .external_lex_state = 6}, + [1261] = {.lex_state = 1342, .external_lex_state = 6}, + [1262] = {.lex_state = 1342, .external_lex_state = 6}, + [1263] = {.lex_state = 1342, .external_lex_state = 6}, + [1264] = {.lex_state = 1342, .external_lex_state = 6}, + [1265] = {.lex_state = 1342, .external_lex_state = 6}, + [1266] = {.lex_state = 1342, .external_lex_state = 6}, + [1267] = {.lex_state = 1342, .external_lex_state = 6}, + [1268] = {.lex_state = 1342, .external_lex_state = 6}, + [1269] = {.lex_state = 201, .external_lex_state = 7}, + [1270] = {.lex_state = 201, .external_lex_state = 7}, + [1271] = {.lex_state = 198}, [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}, + [1275] = {.lex_state = 198}, [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}, + [1278] = {.lex_state = 66, .external_lex_state = 6}, + [1279] = {.lex_state = 66, .external_lex_state = 6}, [1280] = {.lex_state = 66, .external_lex_state = 6}, - [1281] = {.lex_state = 66, .external_lex_state = 6}, + [1281] = {.lex_state = 66, .external_lex_state = 3}, [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}, + [1284] = {.lex_state = 66, .external_lex_state = 3}, + [1285] = {.lex_state = 66, .external_lex_state = 6}, [1286] = {.lex_state = 66, .external_lex_state = 6}, - [1287] = {.lex_state = 66, .external_lex_state = 6}, + [1287] = {.lex_state = 66, .external_lex_state = 3}, [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}, + [1293] = {.lex_state = 1342, .external_lex_state = 6}, + [1294] = {.lex_state = 66, .external_lex_state = 3}, [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}, + [1297] = {.lex_state = 1342, .external_lex_state = 6}, + [1298] = {.lex_state = 66, .external_lex_state = 6}, + [1299] = {.lex_state = 37, .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}, + [1301] = {.lex_state = 1342, .external_lex_state = 6}, + [1302] = {.lex_state = 1342, .external_lex_state = 6}, + [1303] = {.lex_state = 37, .external_lex_state = 6}, + [1304] = {.lex_state = 66, .external_lex_state = 3}, + [1305] = {.lex_state = 1342, .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}, + [1307] = {.lex_state = 1342, .external_lex_state = 6}, + [1308] = {.lex_state = 108, .external_lex_state = 6}, + [1309] = {.lex_state = 37, .external_lex_state = 6}, + [1310] = {.lex_state = 37, .external_lex_state = 6}, + [1311] = {.lex_state = 1342, .external_lex_state = 6}, + [1312] = {.lex_state = 1342, .external_lex_state = 6}, + [1313] = {.lex_state = 37, .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}, + [1315] = {.lex_state = 1342, .external_lex_state = 6}, + [1316] = {.lex_state = 37, .external_lex_state = 6}, + [1317] = {.lex_state = 1342, .external_lex_state = 6}, + [1318] = {.lex_state = 37, .external_lex_state = 6}, + [1319] = {.lex_state = 37, .external_lex_state = 6}, + [1320] = {.lex_state = 66, .external_lex_state = 5}, + [1321] = {.lex_state = 1342, .external_lex_state = 6}, + [1322] = {.lex_state = 1342, .external_lex_state = 6}, + [1323] = {.lex_state = 66, .external_lex_state = 4}, + [1324] = {.lex_state = 1342, .external_lex_state = 6}, + [1325] = {.lex_state = 1342, .external_lex_state = 6}, + [1326] = {.lex_state = 44, .external_lex_state = 8}, + [1327] = {.lex_state = 1342, .external_lex_state = 6}, + [1328] = {.lex_state = 1342, .external_lex_state = 6}, + [1329] = {.lex_state = 1342, .external_lex_state = 6}, + [1330] = {.lex_state = 66, .external_lex_state = 3}, + [1331] = {.lex_state = 66, .external_lex_state = 4}, + [1332] = {.lex_state = 1342, .external_lex_state = 6}, + [1333] = {.lex_state = 1342, .external_lex_state = 6}, + [1334] = {.lex_state = 66, .external_lex_state = 5}, + [1335] = {.lex_state = 1342, .external_lex_state = 6}, + [1336] = {.lex_state = 1342, .external_lex_state = 6}, + [1337] = {.lex_state = 1342, .external_lex_state = 6}, + [1338] = {.lex_state = 66, .external_lex_state = 4}, + [1339] = {.lex_state = 44, .external_lex_state = 8}, + [1340] = {.lex_state = 66, .external_lex_state = 4}, + [1341] = {.lex_state = 1342, .external_lex_state = 6}, + [1342] = {.lex_state = 39, .external_lex_state = 3}, + [1343] = {.lex_state = 39, .external_lex_state = 3}, + [1344] = {.lex_state = 109, .external_lex_state = 6}, + [1345] = {.lex_state = 39, .external_lex_state = 3}, + [1346] = {.lex_state = 66, .external_lex_state = 6}, [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}, + [1348] = {.lex_state = 66, .external_lex_state = 3}, + [1349] = {.lex_state = 39, .external_lex_state = 3}, + [1350] = {.lex_state = 82, .external_lex_state = 6}, + [1351] = {.lex_state = 66, .external_lex_state = 3}, + [1352] = {.lex_state = 66, .external_lex_state = 3}, + [1353] = {.lex_state = 66, .external_lex_state = 3}, + [1354] = {.lex_state = 57, .external_lex_state = 6}, + [1355] = {.lex_state = 57, .external_lex_state = 6}, + [1356] = {.lex_state = 37, .external_lex_state = 3}, + [1357] = {.lex_state = 66, .external_lex_state = 5}, + [1358] = {.lex_state = 66, .external_lex_state = 4}, + [1359] = {.lex_state = 1342, .external_lex_state = 6}, + [1360] = {.lex_state = 53, .external_lex_state = 2}, + [1361] = {.lex_state = 57, .external_lex_state = 6}, + [1362] = {.lex_state = 57, .external_lex_state = 6}, + [1363] = {.lex_state = 57, .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}, + [1365] = {.lex_state = 1342, .external_lex_state = 6}, + [1366] = {.lex_state = 57, .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}, + [1369] = {.lex_state = 57, .external_lex_state = 6}, + [1370] = {.lex_state = 1342, .external_lex_state = 6}, + [1371] = {.lex_state = 1342, .external_lex_state = 6}, + [1372] = {.lex_state = 57, .external_lex_state = 6}, + [1373] = {.lex_state = 1342, .external_lex_state = 6}, + [1374] = {.lex_state = 1342, .external_lex_state = 6}, + [1375] = {.lex_state = 1342, .external_lex_state = 6}, + [1376] = {.lex_state = 44, .external_lex_state = 8}, + [1377] = {.lex_state = 1342, .external_lex_state = 6}, + [1378] = {.lex_state = 1342, .external_lex_state = 6}, + [1379] = {.lex_state = 1342, .external_lex_state = 6}, + [1380] = {.lex_state = 55, .external_lex_state = 2}, [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}, + [1382] = {.lex_state = 57, .external_lex_state = 2}, + [1383] = {.lex_state = 198}, + [1384] = {.lex_state = 1342, .external_lex_state = 6}, + [1385] = {.lex_state = 1342, .external_lex_state = 6}, + [1386] = {.lex_state = 1342, .external_lex_state = 6}, + [1387] = {.lex_state = 66, .external_lex_state = 4}, + [1388] = {.lex_state = 57, .external_lex_state = 6}, + [1389] = {.lex_state = 66, .external_lex_state = 3}, + [1390] = {.lex_state = 98, .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}, + [1392] = {.lex_state = 1342, .external_lex_state = 6}, + [1393] = {.lex_state = 1342, .external_lex_state = 6}, + [1394] = {.lex_state = 1342, .external_lex_state = 6}, + [1395] = {.lex_state = 66, .external_lex_state = 3}, + [1396] = {.lex_state = 57, .external_lex_state = 6}, + [1397] = {.lex_state = 1342, .external_lex_state = 6}, + [1398] = {.lex_state = 1342, .external_lex_state = 6}, + [1399] = {.lex_state = 1342, .external_lex_state = 6}, + [1400] = {.lex_state = 1342, .external_lex_state = 6}, + [1401] = {.lex_state = 1342, .external_lex_state = 6}, + [1402] = {.lex_state = 1342, .external_lex_state = 6}, + [1403] = {.lex_state = 1342, .external_lex_state = 6}, + [1404] = {.lex_state = 1342, .external_lex_state = 6}, + [1405] = {.lex_state = 1342, .external_lex_state = 6}, + [1406] = {.lex_state = 1342, .external_lex_state = 6}, + [1407] = {.lex_state = 1342, .external_lex_state = 6}, + [1408] = {.lex_state = 57, .external_lex_state = 6}, + [1409] = {.lex_state = 1342, .external_lex_state = 6}, + [1410] = {.lex_state = 66, .external_lex_state = 6}, + [1411] = {.lex_state = 1342, .external_lex_state = 6}, + [1412] = {.lex_state = 99, .external_lex_state = 6}, + [1413] = {.lex_state = 66, .external_lex_state = 6}, + [1414] = {.lex_state = 28, .external_lex_state = 2}, + [1415] = {.lex_state = 54, .external_lex_state = 2}, + [1416] = {.lex_state = 56, .external_lex_state = 2}, + [1417] = {.lex_state = 66, .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}, + [1419] = {.lex_state = 66, .external_lex_state = 6}, + [1420] = {.lex_state = 53, .external_lex_state = 2}, [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}, + [1425] = {.lex_state = 66, .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}, + [1431] = {.lex_state = 57, .external_lex_state = 2}, + [1432] = {.lex_state = 1342, .external_lex_state = 6}, + [1433] = {.lex_state = 66, .external_lex_state = 6}, + [1434] = {.lex_state = 66, .external_lex_state = 6}, + [1435] = {.lex_state = 66, .external_lex_state = 6}, + [1436] = {.lex_state = 66, .external_lex_state = 6}, + [1437] = {.lex_state = 55, .external_lex_state = 2}, + [1438] = {.lex_state = 1342, .external_lex_state = 6}, + [1439] = {.lex_state = 1342, .external_lex_state = 6}, + [1440] = {.lex_state = 1342, .external_lex_state = 6}, + [1441] = {.lex_state = 66, .external_lex_state = 6}, + [1442] = {.lex_state = 1342, .external_lex_state = 6}, + [1443] = {.lex_state = 1342, .external_lex_state = 6}, + [1444] = {.lex_state = 1342, .external_lex_state = 6}, + [1445] = {.lex_state = 1342, .external_lex_state = 6}, + [1446] = {.lex_state = 1342, .external_lex_state = 6}, + [1447] = {.lex_state = 1342, .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}, + [1450] = {.lex_state = 1342, .external_lex_state = 6}, [1451] = {.lex_state = 66, .external_lex_state = 6}, - [1452] = {.lex_state = 66, .external_lex_state = 6}, + [1452] = {.lex_state = 1342, .external_lex_state = 6}, [1453] = {.lex_state = 66, .external_lex_state = 6}, - [1454] = {.lex_state = 66, .external_lex_state = 6}, + [1454] = {.lex_state = 1342, .external_lex_state = 3}, [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}, + [1456] = {.lex_state = 74, .external_lex_state = 6}, + [1457] = {.lex_state = 100, .external_lex_state = 6}, + [1458] = {.lex_state = 1342, .external_lex_state = 6}, + [1459] = {.lex_state = 1342, .external_lex_state = 6}, + [1460] = {.lex_state = 101, .external_lex_state = 6}, + [1461] = {.lex_state = 1343}, + [1462] = {.lex_state = 1343}, + [1463] = {.lex_state = 1343}, + [1464] = {.lex_state = 1342, .external_lex_state = 6}, + [1465] = {.lex_state = 199}, + [1466] = {.lex_state = 199}, + [1467] = {.lex_state = 1343}, + [1468] = {.lex_state = 1343}, + [1469] = {.lex_state = 199}, + [1470] = {.lex_state = 1342, .external_lex_state = 6}, + [1471] = {.lex_state = 1343}, + [1472] = {.lex_state = 199}, + [1473] = {.lex_state = 1343}, + [1474] = {.lex_state = 1343}, + [1475] = {.lex_state = 1342, .external_lex_state = 6}, + [1476] = {.lex_state = 54, .external_lex_state = 2}, + [1477] = {.lex_state = 75, .external_lex_state = 6}, [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}, + [1480] = {.lex_state = 1342, .external_lex_state = 6}, + [1481] = {.lex_state = 1342, .external_lex_state = 6}, + [1482] = {.lex_state = 1342, .external_lex_state = 6}, + [1483] = {.lex_state = 1342, .external_lex_state = 6}, + [1484] = {.lex_state = 1342, .external_lex_state = 6}, + [1485] = {.lex_state = 1342, .external_lex_state = 6}, + [1486] = {.lex_state = 1342, .external_lex_state = 6}, + [1487] = {.lex_state = 1342, .external_lex_state = 6}, [1488] = {.lex_state = 199}, - [1489] = {.lex_state = 1330}, - [1490] = {.lex_state = 112, .external_lex_state = 6}, - [1491] = {.lex_state = 1330}, + [1489] = {.lex_state = 56, .external_lex_state = 2}, + [1490] = {.lex_state = 199}, + [1491] = {.lex_state = 104, .external_lex_state = 6}, [1492] = {.lex_state = 199}, - [1493] = {.lex_state = 1330}, - [1494] = {.lex_state = 1330}, - [1495] = {.lex_state = 1330}, + [1493] = {.lex_state = 28, .external_lex_state = 2}, + [1494] = {.lex_state = 1343}, + [1495] = {.lex_state = 112, .external_lex_state = 6}, [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}, + [1497] = {.lex_state = 199}, + [1498] = {.lex_state = 1342, .external_lex_state = 6}, + [1499] = {.lex_state = 1343}, + [1500] = {.lex_state = 1343}, + [1501] = {.lex_state = 199}, + [1502] = {.lex_state = 1343}, + [1503] = {.lex_state = 1343}, + [1504] = {.lex_state = 199}, + [1505] = {.lex_state = 1343}, + [1506] = {.lex_state = 1343}, + [1507] = {.lex_state = 199}, + [1508] = {.lex_state = 199}, + [1509] = {.lex_state = 199}, + [1510] = {.lex_state = 199}, + [1511] = {.lex_state = 199}, + [1512] = {.lex_state = 199}, + [1513] = {.lex_state = 199}, + [1514] = {.lex_state = 199}, + [1515] = {.lex_state = 199}, + [1516] = {.lex_state = 199}, + [1517] = {.lex_state = 199}, + [1518] = {.lex_state = 199}, + [1519] = {.lex_state = 199}, + [1520] = {.lex_state = 199}, + [1521] = {.lex_state = 199}, + [1522] = {.lex_state = 199}, + [1523] = {.lex_state = 199}, + [1524] = {.lex_state = 199}, + [1525] = {.lex_state = 199}, + [1526] = {.lex_state = 199}, + [1527] = {.lex_state = 199}, + [1528] = {.lex_state = 199}, + [1529] = {.lex_state = 199}, + [1530] = {.lex_state = 1343}, + [1531] = {.lex_state = 199}, [1532] = {.lex_state = 199}, - [1533] = {.lex_state = 199}, - [1534] = {.lex_state = 1330}, - [1535] = {.lex_state = 199}, + [1533] = {.lex_state = 1343}, + [1534] = {.lex_state = 1343}, + [1535] = {.lex_state = 1343}, [1536] = {.lex_state = 199}, - [1537] = {.lex_state = 53, .external_lex_state = 6}, - [1538] = {.lex_state = 199}, + [1537] = {.lex_state = 1343}, + [1538] = {.lex_state = 1343}, [1539] = {.lex_state = 199}, [1540] = {.lex_state = 199}, [1541] = {.lex_state = 199}, @@ -38977,34 +39305,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1555] = {.lex_state = 199}, [1556] = {.lex_state = 199}, [1557] = {.lex_state = 199}, - [1558] = {.lex_state = 1330}, + [1558] = {.lex_state = 199}, [1559] = {.lex_state = 199}, [1560] = {.lex_state = 199}, - [1561] = {.lex_state = 1330}, - [1562] = {.lex_state = 1330}, - [1563] = {.lex_state = 1330}, + [1561] = {.lex_state = 199}, + [1562] = {.lex_state = 199}, + [1563] = {.lex_state = 199}, [1564] = {.lex_state = 199}, - [1565] = {.lex_state = 1330}, - [1566] = {.lex_state = 1330}, + [1565] = {.lex_state = 199}, + [1566] = {.lex_state = 199}, [1567] = {.lex_state = 199}, [1568] = {.lex_state = 199}, - [1569] = {.lex_state = 1330}, - [1570] = {.lex_state = 199}, + [1569] = {.lex_state = 1343}, + [1570] = {.lex_state = 1343}, [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}, + [1577] = {.lex_state = 199}, [1578] = {.lex_state = 199}, - [1579] = {.lex_state = 1330}, + [1579] = {.lex_state = 199}, [1580] = {.lex_state = 199}, - [1581] = {.lex_state = 1330}, + [1581] = {.lex_state = 199}, [1582] = {.lex_state = 199}, [1583] = {.lex_state = 199}, - [1584] = {.lex_state = 1330}, - [1585] = {.lex_state = 1330}, + [1584] = {.lex_state = 199}, + [1585] = {.lex_state = 199}, [1586] = {.lex_state = 199}, [1587] = {.lex_state = 199}, [1588] = {.lex_state = 199}, @@ -39012,9 +39340,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1590] = {.lex_state = 199}, [1591] = {.lex_state = 199}, [1592] = {.lex_state = 199}, - [1593] = {.lex_state = 1329, .external_lex_state = 2}, + [1593] = {.lex_state = 199}, [1594] = {.lex_state = 199}, - [1595] = {.lex_state = 199}, + [1595] = {.lex_state = 1343}, [1596] = {.lex_state = 199}, [1597] = {.lex_state = 199}, [1598] = {.lex_state = 199}, @@ -39034,44 +39362,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1615] = {.lex_state = 199}, + [1616] = {.lex_state = 199}, + [1617] = {.lex_state = 199}, + [1618] = {.lex_state = 199}, + [1619] = {.lex_state = 199}, + [1620] = {.lex_state = 199}, [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}, + [1622] = {.lex_state = 199}, + [1623] = {.lex_state = 1343}, + [1624] = {.lex_state = 1343}, + [1625] = {.lex_state = 199}, + [1626] = {.lex_state = 199}, + [1627] = {.lex_state = 199}, + [1628] = {.lex_state = 199}, [1629] = {.lex_state = 199}, [1630] = {.lex_state = 199}, - [1631] = {.lex_state = 40}, + [1631] = {.lex_state = 199}, [1632] = {.lex_state = 199}, - [1633] = {.lex_state = 1329, .external_lex_state = 2}, + [1633] = {.lex_state = 199}, [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}, + [1640] = {.lex_state = 70, .external_lex_state = 7}, + [1641] = {.lex_state = 199}, [1642] = {.lex_state = 199}, [1643] = {.lex_state = 199}, - [1644] = {.lex_state = 1330}, + [1644] = {.lex_state = 199}, [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}, + [1646] = {.lex_state = 1343}, + [1647] = {.lex_state = 53, .external_lex_state = 6}, + [1648] = {.lex_state = 1343}, + [1649] = {.lex_state = 1343}, + [1650] = {.lex_state = 199}, + [1651] = {.lex_state = 1343}, + [1652] = {.lex_state = 1343}, [1653] = {.lex_state = 199}, [1654] = {.lex_state = 199}, [1655] = {.lex_state = 199}, @@ -39085,380 +39413,380 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1666] = {.lex_state = 1343}, + [1667] = {.lex_state = 1343}, + [1668] = {.lex_state = 1343}, + [1669] = {.lex_state = 113, .external_lex_state = 6}, + [1670] = {.lex_state = 1343}, + [1671] = {.lex_state = 1343}, + [1672] = {.lex_state = 199}, + [1673] = {.lex_state = 73, .external_lex_state = 6}, + [1674] = {.lex_state = 199}, + [1675] = {.lex_state = 199}, + [1676] = {.lex_state = 199}, [1677] = {.lex_state = 199}, - [1678] = {.lex_state = 1330}, + [1678] = {.lex_state = 1343}, [1679] = {.lex_state = 199}, - [1680] = {.lex_state = 199}, + [1680] = {.lex_state = 1342, .external_lex_state = 6}, [1681] = {.lex_state = 199}, - [1682] = {.lex_state = 1330}, + [1682] = {.lex_state = 199}, [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}, + [1684] = {.lex_state = 1343}, + [1685] = {.lex_state = 1343}, + [1686] = {.lex_state = 1343}, + [1687] = {.lex_state = 1343}, + [1688] = {.lex_state = 1343}, + [1689] = {.lex_state = 1343}, + [1690] = {.lex_state = 1343}, + [1691] = {.lex_state = 1343}, + [1692] = {.lex_state = 1343}, + [1693] = {.lex_state = 1343}, + [1694] = {.lex_state = 1343}, + [1695] = {.lex_state = 1343}, + [1696] = {.lex_state = 1343}, + [1697] = {.lex_state = 198}, + [1698] = {.lex_state = 1343}, + [1699] = {.lex_state = 198}, [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}, + [1701] = {.lex_state = 1343}, + [1702] = {.lex_state = 1343}, + [1703] = {.lex_state = 1343}, + [1704] = {.lex_state = 1343}, + [1705] = {.lex_state = 1343}, + [1706] = {.lex_state = 1343}, + [1707] = {.lex_state = 1343}, + [1708] = {.lex_state = 1343}, + [1709] = {.lex_state = 1343}, + [1710] = {.lex_state = 1343}, + [1711] = {.lex_state = 1343}, + [1712] = {.lex_state = 1343}, + [1713] = {.lex_state = 1343}, + [1714] = {.lex_state = 1343}, + [1715] = {.lex_state = 1343}, [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}, + [1718] = {.lex_state = 1343}, + [1719] = {.lex_state = 1343}, + [1720] = {.lex_state = 1343}, + [1721] = {.lex_state = 1343}, + [1722] = {.lex_state = 1343}, + [1723] = {.lex_state = 1343}, + [1724] = {.lex_state = 1343}, + [1725] = {.lex_state = 1343}, + [1726] = {.lex_state = 199}, + [1727] = {.lex_state = 1343}, + [1728] = {.lex_state = 1343}, + [1729] = {.lex_state = 1343}, + [1730] = {.lex_state = 1343}, + [1731] = {.lex_state = 1343}, + [1732] = {.lex_state = 1343}, + [1733] = {.lex_state = 1343}, + [1734] = {.lex_state = 1343}, + [1735] = {.lex_state = 1343}, + [1736] = {.lex_state = 1343}, + [1737] = {.lex_state = 1343}, + [1738] = {.lex_state = 1343}, + [1739] = {.lex_state = 1343}, [1740] = {.lex_state = 199}, - [1741] = {.lex_state = 199}, - [1742] = {.lex_state = 199}, - [1743] = {.lex_state = 199}, + [1741] = {.lex_state = 1343}, + [1742] = {.lex_state = 1343}, + [1743] = {.lex_state = 1343}, [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}, + [1745] = {.lex_state = 199}, + [1746] = {.lex_state = 1343}, + [1747] = {.lex_state = 1343}, + [1748] = {.lex_state = 1343}, + [1749] = {.lex_state = 1343}, + [1750] = {.lex_state = 1343}, + [1751] = {.lex_state = 1343}, + [1752] = {.lex_state = 1343}, + [1753] = {.lex_state = 1343}, + [1754] = {.lex_state = 1343}, + [1755] = {.lex_state = 1343}, + [1756] = {.lex_state = 1343}, + [1757] = {.lex_state = 1343}, [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}, + [1759] = {.lex_state = 1343}, + [1760] = {.lex_state = 1343}, + [1761] = {.lex_state = 1343}, + [1762] = {.lex_state = 1343}, + [1763] = {.lex_state = 199}, + [1764] = {.lex_state = 199}, + [1765] = {.lex_state = 1343}, + [1766] = {.lex_state = 1343}, + [1767] = {.lex_state = 1343}, + [1768] = {.lex_state = 1343}, + [1769] = {.lex_state = 1343}, + [1770] = {.lex_state = 1343}, + [1771] = {.lex_state = 1343}, + [1772] = {.lex_state = 1343}, + [1773] = {.lex_state = 1343}, + [1774] = {.lex_state = 1343}, + [1775] = {.lex_state = 1343}, + [1776] = {.lex_state = 1343}, + [1777] = {.lex_state = 1343}, [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}, + [1779] = {.lex_state = 1343}, + [1780] = {.lex_state = 1343}, + [1781] = {.lex_state = 1343}, + [1782] = {.lex_state = 1343}, + [1783] = {.lex_state = 1343}, + [1784] = {.lex_state = 1343}, + [1785] = {.lex_state = 1343}, + [1786] = {.lex_state = 1343}, + [1787] = {.lex_state = 1343}, + [1788] = {.lex_state = 199}, + [1789] = {.lex_state = 199}, + [1790] = {.lex_state = 199}, + [1791] = {.lex_state = 1342, .external_lex_state = 6}, + [1792] = {.lex_state = 1343}, + [1793] = {.lex_state = 1343}, + [1794] = {.lex_state = 1343}, + [1795] = {.lex_state = 1343}, + [1796] = {.lex_state = 1343}, + [1797] = {.lex_state = 1343}, + [1798] = {.lex_state = 1343}, + [1799] = {.lex_state = 1343}, + [1800] = {.lex_state = 1343}, + [1801] = {.lex_state = 1343}, + [1802] = {.lex_state = 1343}, [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}, + [1804] = {.lex_state = 1343}, + [1805] = {.lex_state = 1343}, + [1806] = {.lex_state = 1342, .external_lex_state = 6}, + [1807] = {.lex_state = 1343}, + [1808] = {.lex_state = 1343}, + [1809] = {.lex_state = 199}, + [1810] = {.lex_state = 199}, [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}, + [1812] = {.lex_state = 1343}, + [1813] = {.lex_state = 1343}, + [1814] = {.lex_state = 1343}, + [1815] = {.lex_state = 1343}, + [1816] = {.lex_state = 1343}, + [1817] = {.lex_state = 1343}, + [1818] = {.lex_state = 1343}, + [1819] = {.lex_state = 1343}, + [1820] = {.lex_state = 1342, .external_lex_state = 6}, + [1821] = {.lex_state = 1343}, + [1822] = {.lex_state = 1343}, + [1823] = {.lex_state = 1343}, + [1824] = {.lex_state = 1343}, + [1825] = {.lex_state = 1343}, + [1826] = {.lex_state = 1343}, + [1827] = {.lex_state = 1343}, + [1828] = {.lex_state = 1343}, + [1829] = {.lex_state = 1343}, + [1830] = {.lex_state = 1343}, + [1831] = {.lex_state = 1343}, + [1832] = {.lex_state = 1343}, + [1833] = {.lex_state = 1343}, + [1834] = {.lex_state = 1343}, + [1835] = {.lex_state = 1342, .external_lex_state = 6}, + [1836] = {.lex_state = 1342, .external_lex_state = 6}, + [1837] = {.lex_state = 1342, .external_lex_state = 6}, + [1838] = {.lex_state = 1343}, + [1839] = {.lex_state = 199}, + [1840] = {.lex_state = 199}, + [1841] = {.lex_state = 1343}, + [1842] = {.lex_state = 1343}, + [1843] = {.lex_state = 1343}, + [1844] = {.lex_state = 1343}, + [1845] = {.lex_state = 1342, .external_lex_state = 6}, + [1846] = {.lex_state = 1343}, + [1847] = {.lex_state = 1342, .external_lex_state = 6}, + [1848] = {.lex_state = 1343}, + [1849] = {.lex_state = 1343}, + [1850] = {.lex_state = 1343}, + [1851] = {.lex_state = 1343}, + [1852] = {.lex_state = 1343}, + [1853] = {.lex_state = 1343}, + [1854] = {.lex_state = 1343}, + [1855] = {.lex_state = 1343}, + [1856] = {.lex_state = 1343}, + [1857] = {.lex_state = 1343}, + [1858] = {.lex_state = 1343}, + [1859] = {.lex_state = 1343}, + [1860] = {.lex_state = 1343}, + [1861] = {.lex_state = 1342, .external_lex_state = 6}, + [1862] = {.lex_state = 1343}, + [1863] = {.lex_state = 1343}, + [1864] = {.lex_state = 1342, .external_lex_state = 6}, + [1865] = {.lex_state = 1342, .external_lex_state = 6}, + [1866] = {.lex_state = 1342, .external_lex_state = 6}, + [1867] = {.lex_state = 1343}, + [1868] = {.lex_state = 1342, .external_lex_state = 6}, + [1869] = {.lex_state = 1342, .external_lex_state = 6}, + [1870] = {.lex_state = 1342, .external_lex_state = 6}, + [1871] = {.lex_state = 1342, .external_lex_state = 6}, + [1872] = {.lex_state = 1342, .external_lex_state = 6}, + [1873] = {.lex_state = 1342, .external_lex_state = 6}, + [1874] = {.lex_state = 199}, + [1875] = {.lex_state = 55, .external_lex_state = 6}, + [1876] = {.lex_state = 1342, .external_lex_state = 6}, + [1877] = {.lex_state = 1342, .external_lex_state = 6}, + [1878] = {.lex_state = 1342, .external_lex_state = 6}, + [1879] = {.lex_state = 1342, .external_lex_state = 6}, + [1880] = {.lex_state = 1342, .external_lex_state = 6}, + [1881] = {.lex_state = 1343}, + [1882] = {.lex_state = 1343}, + [1883] = {.lex_state = 1343}, + [1884] = {.lex_state = 1343}, + [1885] = {.lex_state = 1343}, + [1886] = {.lex_state = 198}, + [1887] = {.lex_state = 198}, + [1888] = {.lex_state = 1342, .external_lex_state = 6}, + [1889] = {.lex_state = 199}, + [1890] = {.lex_state = 199}, + [1891] = {.lex_state = 199}, + [1892] = {.lex_state = 199}, [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}, + [1899] = {.lex_state = 199}, + [1900] = {.lex_state = 1343}, + [1901] = {.lex_state = 199}, + [1902] = {.lex_state = 1343}, + [1903] = {.lex_state = 1343}, + [1904] = {.lex_state = 1343}, + [1905] = {.lex_state = 199}, + [1906] = {.lex_state = 57, .external_lex_state = 6}, + [1907] = {.lex_state = 1344}, + [1908] = {.lex_state = 200}, + [1909] = {.lex_state = 200}, + [1910] = {.lex_state = 200}, + [1911] = {.lex_state = 200}, + [1912] = {.lex_state = 200}, + [1913] = {.lex_state = 200}, + [1914] = {.lex_state = 200}, + [1915] = {.lex_state = 200}, + [1916] = {.lex_state = 200}, + [1917] = {.lex_state = 200}, + [1918] = {.lex_state = 200}, + [1919] = {.lex_state = 200}, + [1920] = {.lex_state = 200}, + [1921] = {.lex_state = 200}, + [1922] = {.lex_state = 200}, + [1923] = {.lex_state = 200}, + [1924] = {.lex_state = 1344}, + [1925] = {.lex_state = 1344}, + [1926] = {.lex_state = 1344}, + [1927] = {.lex_state = 1344}, + [1928] = {.lex_state = 200}, + [1929] = {.lex_state = 200}, + [1930] = {.lex_state = 200}, + [1931] = {.lex_state = 200}, + [1932] = {.lex_state = 200}, + [1933] = {.lex_state = 200}, + [1934] = {.lex_state = 1344}, + [1935] = {.lex_state = 1344}, + [1936] = {.lex_state = 76}, + [1937] = {.lex_state = 200}, + [1938] = {.lex_state = 1344}, + [1939] = {.lex_state = 1344}, + [1940] = {.lex_state = 200}, + [1941] = {.lex_state = 200}, + [1942] = {.lex_state = 200}, + [1943] = {.lex_state = 200}, + [1944] = {.lex_state = 200}, + [1945] = {.lex_state = 200}, + [1946] = {.lex_state = 200}, + [1947] = {.lex_state = 200}, + [1948] = {.lex_state = 1344}, + [1949] = {.lex_state = 1344}, + [1950] = {.lex_state = 1344}, + [1951] = {.lex_state = 200}, + [1952] = {.lex_state = 200}, + [1953] = {.lex_state = 200}, + [1954] = {.lex_state = 200}, + [1955] = {.lex_state = 200}, + [1956] = {.lex_state = 200}, + [1957] = {.lex_state = 200}, + [1958] = {.lex_state = 200}, + [1959] = {.lex_state = 1344}, + [1960] = {.lex_state = 1344}, + [1961] = {.lex_state = 200}, + [1962] = {.lex_state = 1344}, + [1963] = {.lex_state = 55, .external_lex_state = 3}, + [1964] = {.lex_state = 1342, .external_lex_state = 2}, + [1965] = {.lex_state = 1344}, [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}, + [1971] = {.lex_state = 57, .external_lex_state = 6}, + [1972] = {.lex_state = 1344}, + [1973] = {.lex_state = 1344}, + [1974] = {.lex_state = 200}, + [1975] = {.lex_state = 1344}, + [1976] = {.lex_state = 200}, + [1977] = {.lex_state = 200}, + [1978] = {.lex_state = 200}, + [1979] = {.lex_state = 200}, + [1980] = {.lex_state = 200}, + [1981] = {.lex_state = 200}, + [1982] = {.lex_state = 200}, + [1983] = {.lex_state = 200}, + [1984] = {.lex_state = 200}, + [1985] = {.lex_state = 200}, + [1986] = {.lex_state = 200}, + [1987] = {.lex_state = 200}, + [1988] = {.lex_state = 200}, + [1989] = {.lex_state = 200}, + [1990] = {.lex_state = 200}, + [1991] = {.lex_state = 76}, + [1992] = {.lex_state = 1344}, + [1993] = {.lex_state = 1344}, + [1994] = {.lex_state = 1344}, + [1995] = {.lex_state = 200}, + [1996] = {.lex_state = 1344}, + [1997] = {.lex_state = 1344}, + [1998] = {.lex_state = 1344}, + [1999] = {.lex_state = 200}, + [2000] = {.lex_state = 200}, + [2001] = {.lex_state = 1344}, + [2002] = {.lex_state = 1344}, + [2003] = {.lex_state = 200}, + [2004] = {.lex_state = 200}, + [2005] = {.lex_state = 200}, + [2006] = {.lex_state = 1344}, + [2007] = {.lex_state = 76}, + [2008] = {.lex_state = 1344}, + [2009] = {.lex_state = 1344}, + [2010] = {.lex_state = 55, .external_lex_state = 3}, + [2011] = {.lex_state = 55, .external_lex_state = 3}, + [2012] = {.lex_state = 57, .external_lex_state = 6}, + [2013] = {.lex_state = 57, .external_lex_state = 6}, + [2014] = {.lex_state = 57, .external_lex_state = 6}, + [2015] = {.lex_state = 57, .external_lex_state = 6}, + [2016] = {.lex_state = 57, .external_lex_state = 6}, + [2017] = {.lex_state = 200}, [2018] = {.lex_state = 200}, - [2019] = {.lex_state = 200}, + [2019] = {.lex_state = 1344}, [2020] = {.lex_state = 200}, [2021] = {.lex_state = 200}, - [2022] = {.lex_state = 117, .external_lex_state = 6}, - [2023] = {.lex_state = 56, .external_lex_state = 6}, + [2022] = {.lex_state = 200}, + [2023] = {.lex_state = 200}, [2024] = {.lex_state = 200}, [2025] = {.lex_state = 200}, [2026] = {.lex_state = 200}, - [2027] = {.lex_state = 200}, + [2027] = {.lex_state = 1344}, [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}, + [2029] = {.lex_state = 1342, .external_lex_state = 2}, + [2030] = {.lex_state = 1344}, + [2031] = {.lex_state = 1342, .external_lex_state = 6}, + [2032] = {.lex_state = 200}, + [2033] = {.lex_state = 1344}, + [2034] = {.lex_state = 200}, [2035] = {.lex_state = 200}, - [2036] = {.lex_state = 200}, + [2036] = {.lex_state = 1344}, [2037] = {.lex_state = 200}, [2038] = {.lex_state = 200}, - [2039] = {.lex_state = 56, .external_lex_state = 6}, + [2039] = {.lex_state = 200}, [2040] = {.lex_state = 200}, [2041] = {.lex_state = 200}, [2042] = {.lex_state = 200}, @@ -39466,37 +39794,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2047] = {.lex_state = 1344}, + [2048] = {.lex_state = 1344}, + [2049] = {.lex_state = 1342, .external_lex_state = 2}, + [2050] = {.lex_state = 1344}, + [2051] = {.lex_state = 1344}, + [2052] = {.lex_state = 1344}, [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}, + [2056] = {.lex_state = 1344}, + [2057] = {.lex_state = 1344}, + [2058] = {.lex_state = 53, .external_lex_state = 6}, [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}, + [2061] = {.lex_state = 1344}, + [2062] = {.lex_state = 1342, .external_lex_state = 2}, + [2063] = {.lex_state = 1344}, + [2064] = {.lex_state = 200}, + [2065] = {.lex_state = 200}, + [2066] = {.lex_state = 1344}, + [2067] = {.lex_state = 1342, .external_lex_state = 2}, + [2068] = {.lex_state = 1344}, + [2069] = {.lex_state = 1344}, [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}, + [2073] = {.lex_state = 200}, + [2074] = {.lex_state = 1344}, + [2075] = {.lex_state = 200}, + [2076] = {.lex_state = 200}, + [2077] = {.lex_state = 200}, [2078] = {.lex_state = 200}, [2079] = {.lex_state = 200}, [2080] = {.lex_state = 200}, @@ -39510,963 +39838,963 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2091] = {.lex_state = 200}, + [2092] = {.lex_state = 1344}, + [2093] = {.lex_state = 57, .external_lex_state = 3}, + [2094] = {.lex_state = 1344}, + [2095] = {.lex_state = 200}, + [2096] = {.lex_state = 200}, + [2097] = {.lex_state = 55, .external_lex_state = 6}, + [2098] = {.lex_state = 55, .external_lex_state = 6}, [2099] = {.lex_state = 200}, - [2100] = {.lex_state = 200}, - [2101] = {.lex_state = 28, .external_lex_state = 3}, - [2102] = {.lex_state = 1331}, + [2100] = {.lex_state = 55, .external_lex_state = 6}, + [2101] = {.lex_state = 55, .external_lex_state = 6}, + [2102] = {.lex_state = 55, .external_lex_state = 6}, [2103] = {.lex_state = 200}, - [2104] = {.lex_state = 1331}, - [2105] = {.lex_state = 1329, .external_lex_state = 6}, + [2104] = {.lex_state = 200}, + [2105] = {.lex_state = 55, .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}, + [2107] = {.lex_state = 200}, + [2108] = {.lex_state = 200}, + [2109] = {.lex_state = 1344}, + [2110] = {.lex_state = 1344}, + [2111] = {.lex_state = 1344}, + [2112] = {.lex_state = 1344}, + [2113] = {.lex_state = 1344}, + [2114] = {.lex_state = 200}, + [2115] = {.lex_state = 55, .external_lex_state = 6}, [2116] = {.lex_state = 200}, [2117] = {.lex_state = 200}, [2118] = {.lex_state = 200}, - [2119] = {.lex_state = 200}, + [2119] = {.lex_state = 55, .external_lex_state = 6}, [2120] = {.lex_state = 200}, [2121] = {.lex_state = 200}, [2122] = {.lex_state = 200}, [2123] = {.lex_state = 200}, - [2124] = {.lex_state = 200}, + [2124] = {.lex_state = 55, .external_lex_state = 6}, [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}, + [2129] = {.lex_state = 200}, + [2130] = {.lex_state = 200}, + [2131] = {.lex_state = 200}, + [2132] = {.lex_state = 57, .external_lex_state = 6}, + [2133] = {.lex_state = 55, .external_lex_state = 6}, + [2134] = {.lex_state = 55, .external_lex_state = 6}, + [2135] = {.lex_state = 55, .external_lex_state = 6}, [2136] = {.lex_state = 200}, [2137] = {.lex_state = 200}, - [2138] = {.lex_state = 200}, - [2139] = {.lex_state = 200}, + [2138] = {.lex_state = 57, .external_lex_state = 3}, + [2139] = {.lex_state = 1344}, [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}, + [2141] = {.lex_state = 1344}, + [2142] = {.lex_state = 1344}, + [2143] = {.lex_state = 1344}, + [2144] = {.lex_state = 76}, + [2145] = {.lex_state = 1344}, + [2146] = {.lex_state = 1344}, + [2147] = {.lex_state = 1344}, + [2148] = {.lex_state = 200}, + [2149] = {.lex_state = 200}, + [2150] = {.lex_state = 200}, + [2151] = {.lex_state = 1344}, + [2152] = {.lex_state = 1344}, [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}, + [2154] = {.lex_state = 200}, + [2155] = {.lex_state = 200}, + [2156] = {.lex_state = 200}, + [2157] = {.lex_state = 200}, + [2158] = {.lex_state = 200}, + [2159] = {.lex_state = 1344}, [2160] = {.lex_state = 200}, - [2161] = {.lex_state = 1331}, - [2162] = {.lex_state = 1331}, - [2163] = {.lex_state = 1331}, - [2164] = {.lex_state = 1331}, + [2161] = {.lex_state = 200}, + [2162] = {.lex_state = 1344}, + [2163] = {.lex_state = 1344}, + [2164] = {.lex_state = 200}, [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}, + [2166] = {.lex_state = 1344}, + [2167] = {.lex_state = 1344}, + [2168] = {.lex_state = 1344}, + [2169] = {.lex_state = 1344}, + [2170] = {.lex_state = 1344}, + [2171] = {.lex_state = 1344}, + [2172] = {.lex_state = 1344}, + [2173] = {.lex_state = 1344}, + [2174] = {.lex_state = 1344}, [2175] = {.lex_state = 200}, - [2176] = {.lex_state = 200}, + [2176] = {.lex_state = 1344}, [2177] = {.lex_state = 200}, - [2178] = {.lex_state = 1331}, - [2179] = {.lex_state = 1331}, + [2178] = {.lex_state = 200}, + [2179] = {.lex_state = 200}, [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}, + [2182] = {.lex_state = 200}, + [2183] = {.lex_state = 200}, + [2184] = {.lex_state = 1344}, + [2185] = {.lex_state = 1344}, + [2186] = {.lex_state = 1344}, + [2187] = {.lex_state = 1342, .external_lex_state = 6}, + [2188] = {.lex_state = 1344}, + [2189] = {.lex_state = 1344}, + [2190] = {.lex_state = 1342, .external_lex_state = 6}, + [2191] = {.lex_state = 1342, .external_lex_state = 6}, + [2192] = {.lex_state = 1342, .external_lex_state = 6}, + [2193] = {.lex_state = 1342, .external_lex_state = 6}, + [2194] = {.lex_state = 1344}, + [2195] = {.lex_state = 53, .external_lex_state = 3}, + [2196] = {.lex_state = 1344}, + [2197] = {.lex_state = 1344}, [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}, + [2199] = {.lex_state = 200}, + [2200] = {.lex_state = 1344}, + [2201] = {.lex_state = 114, .external_lex_state = 6}, + [2202] = {.lex_state = 1344}, + [2203] = {.lex_state = 1344}, + [2204] = {.lex_state = 200}, + [2205] = {.lex_state = 1344}, + [2206] = {.lex_state = 200}, + [2207] = {.lex_state = 200}, + [2208] = {.lex_state = 200}, [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}, + [2211] = {.lex_state = 200}, + [2212] = {.lex_state = 1344}, + [2213] = {.lex_state = 1344}, + [2214] = {.lex_state = 1344}, + [2215] = {.lex_state = 200}, + [2216] = {.lex_state = 57, .external_lex_state = 3}, + [2217] = {.lex_state = 1344}, + [2218] = {.lex_state = 200}, + [2219] = {.lex_state = 200}, + [2220] = {.lex_state = 1344}, + [2221] = {.lex_state = 53, .external_lex_state = 3}, + [2222] = {.lex_state = 1344}, + [2223] = {.lex_state = 53, .external_lex_state = 3}, [2224] = {.lex_state = 200}, - [2225] = {.lex_state = 200}, - [2226] = {.lex_state = 28, .external_lex_state = 6}, + [2225] = {.lex_state = 1344}, + [2226] = {.lex_state = 1344}, [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}, + [2229] = {.lex_state = 1344}, + [2230] = {.lex_state = 1344}, + [2231] = {.lex_state = 1344}, + [2232] = {.lex_state = 1344}, + [2233] = {.lex_state = 1344}, + [2234] = {.lex_state = 1344}, + [2235] = {.lex_state = 1344}, + [2236] = {.lex_state = 1342, .external_lex_state = 6}, + [2237] = {.lex_state = 1344}, + [2238] = {.lex_state = 1344}, + [2239] = {.lex_state = 1344}, + [2240] = {.lex_state = 1344}, + [2241] = {.lex_state = 1342, .external_lex_state = 6}, + [2242] = {.lex_state = 1342, .external_lex_state = 6}, + [2243] = {.lex_state = 1342, .external_lex_state = 6}, + [2244] = {.lex_state = 1344}, + [2245] = {.lex_state = 1344}, + [2246] = {.lex_state = 1344}, + [2247] = {.lex_state = 1342, .external_lex_state = 6}, + [2248] = {.lex_state = 1342, .external_lex_state = 6}, + [2249] = {.lex_state = 1344}, + [2250] = {.lex_state = 1344}, [2251] = {.lex_state = 200}, - [2252] = {.lex_state = 54, .external_lex_state = 6}, - [2253] = {.lex_state = 200}, - [2254] = {.lex_state = 200}, + [2252] = {.lex_state = 1344}, + [2253] = {.lex_state = 1344}, + [2254] = {.lex_state = 1344}, [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}, + [2256] = {.lex_state = 1344}, + [2257] = {.lex_state = 1344}, + [2258] = {.lex_state = 1344}, + [2259] = {.lex_state = 1344}, + [2260] = {.lex_state = 1344}, + [2261] = {.lex_state = 53, .external_lex_state = 6}, + [2262] = {.lex_state = 53, .external_lex_state = 6}, + [2263] = {.lex_state = 53, .external_lex_state = 6}, + [2264] = {.lex_state = 53, .external_lex_state = 6}, + [2265] = {.lex_state = 53, .external_lex_state = 6}, + [2266] = {.lex_state = 53, .external_lex_state = 6}, + [2267] = {.lex_state = 1344}, + [2268] = {.lex_state = 1344}, + [2269] = {.lex_state = 1344}, + [2270] = {.lex_state = 1344}, + [2271] = {.lex_state = 1344}, + [2272] = {.lex_state = 1344}, [2273] = {.lex_state = 200}, - [2274] = {.lex_state = 1331}, + [2274] = {.lex_state = 200}, [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}, + [2276] = {.lex_state = 1344}, + [2277] = {.lex_state = 1344}, + [2278] = {.lex_state = 1344}, + [2279] = {.lex_state = 1344}, + [2280] = {.lex_state = 1344}, + [2281] = {.lex_state = 1344}, + [2282] = {.lex_state = 1344}, + [2283] = {.lex_state = 1344}, [2284] = {.lex_state = 200}, - [2285] = {.lex_state = 1331}, - [2286] = {.lex_state = 1331}, - [2287] = {.lex_state = 200}, - [2288] = {.lex_state = 200}, - [2289] = {.lex_state = 1331}, + [2285] = {.lex_state = 200}, + [2286] = {.lex_state = 116, .external_lex_state = 6}, + [2287] = {.lex_state = 1344}, + [2288] = {.lex_state = 1344}, + [2289] = {.lex_state = 1344}, [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}, + [2291] = {.lex_state = 200}, + [2292] = {.lex_state = 200}, + [2293] = {.lex_state = 1344}, + [2294] = {.lex_state = 1344}, + [2295] = {.lex_state = 1344}, + [2296] = {.lex_state = 1344}, + [2297] = {.lex_state = 1344}, + [2298] = {.lex_state = 1344}, + [2299] = {.lex_state = 1344}, + [2300] = {.lex_state = 1344}, + [2301] = {.lex_state = 1344}, + [2302] = {.lex_state = 1344}, + [2303] = {.lex_state = 1344}, + [2304] = {.lex_state = 1344}, + [2305] = {.lex_state = 1344}, + [2306] = {.lex_state = 53, .external_lex_state = 6}, + [2307] = {.lex_state = 53, .external_lex_state = 6}, + [2308] = {.lex_state = 53, .external_lex_state = 6}, + [2309] = {.lex_state = 53, .external_lex_state = 6}, + [2310] = {.lex_state = 53, .external_lex_state = 6}, + [2311] = {.lex_state = 1344}, + [2312] = {.lex_state = 1344}, + [2313] = {.lex_state = 1344}, + [2314] = {.lex_state = 1344}, + [2315] = {.lex_state = 1344}, + [2316] = {.lex_state = 1344}, + [2317] = {.lex_state = 1344}, + [2318] = {.lex_state = 1344}, + [2319] = {.lex_state = 1344}, + [2320] = {.lex_state = 1344}, + [2321] = {.lex_state = 1344}, + [2322] = {.lex_state = 1344}, + [2323] = {.lex_state = 76}, + [2324] = {.lex_state = 1344}, + [2325] = {.lex_state = 1344}, + [2326] = {.lex_state = 1344}, + [2327] = {.lex_state = 1344}, + [2328] = {.lex_state = 1344}, + [2329] = {.lex_state = 1344}, + [2330] = {.lex_state = 1344}, + [2331] = {.lex_state = 1344}, + [2332] = {.lex_state = 1344}, + [2333] = {.lex_state = 1344}, + [2334] = {.lex_state = 1344}, + [2335] = {.lex_state = 1344}, + [2336] = {.lex_state = 76}, + [2337] = {.lex_state = 1344}, + [2338] = {.lex_state = 1344}, + [2339] = {.lex_state = 1344}, + [2340] = {.lex_state = 1344}, + [2341] = {.lex_state = 1344}, + [2342] = {.lex_state = 1344}, + [2343] = {.lex_state = 1344}, + [2344] = {.lex_state = 1344}, + [2345] = {.lex_state = 1344}, + [2346] = {.lex_state = 1344}, + [2347] = {.lex_state = 1342, .external_lex_state = 6}, + [2348] = {.lex_state = 28, .external_lex_state = 6}, + [2349] = {.lex_state = 70, .external_lex_state = 7}, + [2350] = {.lex_state = 1342, .external_lex_state = 6}, + [2351] = {.lex_state = 1342, .external_lex_state = 6}, + [2352] = {.lex_state = 1342, .external_lex_state = 6}, + [2353] = {.lex_state = 1342, .external_lex_state = 6}, + [2354] = {.lex_state = 1342, .external_lex_state = 6}, + [2355] = {.lex_state = 1342, .external_lex_state = 6}, + [2356] = {.lex_state = 1342, .external_lex_state = 6}, + [2357] = {.lex_state = 1342, .external_lex_state = 6}, + [2358] = {.lex_state = 1342, .external_lex_state = 6}, + [2359] = {.lex_state = 1342, .external_lex_state = 6}, + [2360] = {.lex_state = 1342, .external_lex_state = 6}, + [2361] = {.lex_state = 1342, .external_lex_state = 6}, + [2362] = {.lex_state = 1342, .external_lex_state = 6}, + [2363] = {.lex_state = 1342, .external_lex_state = 6}, + [2364] = {.lex_state = 1342, .external_lex_state = 6}, + [2365] = {.lex_state = 1342, .external_lex_state = 6}, + [2366] = {.lex_state = 1342, .external_lex_state = 6}, + [2367] = {.lex_state = 1342, .external_lex_state = 6}, + [2368] = {.lex_state = 1342, .external_lex_state = 6}, + [2369] = {.lex_state = 1342, .external_lex_state = 6}, + [2370] = {.lex_state = 1342, .external_lex_state = 6}, + [2371] = {.lex_state = 1342, .external_lex_state = 6}, + [2372] = {.lex_state = 1342, .external_lex_state = 6}, + [2373] = {.lex_state = 1342, .external_lex_state = 6}, + [2374] = {.lex_state = 1342, .external_lex_state = 6}, + [2375] = {.lex_state = 1342, .external_lex_state = 6}, + [2376] = {.lex_state = 67, .external_lex_state = 7}, + [2377] = {.lex_state = 67, .external_lex_state = 7}, + [2378] = {.lex_state = 117, .external_lex_state = 6}, + [2379] = {.lex_state = 29, .external_lex_state = 6}, + [2380] = {.lex_state = 56, .external_lex_state = 3}, + [2381] = {.lex_state = 56, .external_lex_state = 3}, + [2382] = {.lex_state = 1342, .external_lex_state = 6}, + [2383] = {.lex_state = 56, .external_lex_state = 3}, + [2384] = {.lex_state = 115, .external_lex_state = 6}, + [2385] = {.lex_state = 54, .external_lex_state = 3}, + [2386] = {.lex_state = 53, .external_lex_state = 6}, + [2387] = {.lex_state = 70, .external_lex_state = 7}, + [2388] = {.lex_state = 53, .external_lex_state = 3}, + [2389] = {.lex_state = 53, .external_lex_state = 3}, + [2390] = {.lex_state = 54, .external_lex_state = 3}, + [2391] = {.lex_state = 54, .external_lex_state = 3}, + [2392] = {.lex_state = 28, .external_lex_state = 3}, + [2393] = {.lex_state = 56, .external_lex_state = 6}, + [2394] = {.lex_state = 56, .external_lex_state = 6}, + [2395] = {.lex_state = 1342, .external_lex_state = 6}, + [2396] = {.lex_state = 56, .external_lex_state = 6}, + [2397] = {.lex_state = 56, .external_lex_state = 6}, + [2398] = {.lex_state = 56, .external_lex_state = 6}, + [2399] = {.lex_state = 56, .external_lex_state = 6}, + [2400] = {.lex_state = 55, .external_lex_state = 6}, + [2401] = {.lex_state = 1342, .external_lex_state = 6}, + [2402] = {.lex_state = 56, .external_lex_state = 6}, + [2403] = {.lex_state = 54, .external_lex_state = 6}, + [2404] = {.lex_state = 56, .external_lex_state = 6}, + [2405] = {.lex_state = 57, .external_lex_state = 3}, + [2406] = {.lex_state = 56, .external_lex_state = 6}, + [2407] = {.lex_state = 57, .external_lex_state = 3}, + [2408] = {.lex_state = 56, .external_lex_state = 6}, + [2409] = {.lex_state = 56, .external_lex_state = 6}, + [2410] = {.lex_state = 56, .external_lex_state = 6}, + [2411] = {.lex_state = 28, .external_lex_state = 6}, + [2412] = {.lex_state = 28, .external_lex_state = 6}, + [2413] = {.lex_state = 28, .external_lex_state = 6}, + [2414] = {.lex_state = 28, .external_lex_state = 6}, + [2415] = {.lex_state = 28, .external_lex_state = 6}, + [2416] = {.lex_state = 28, .external_lex_state = 6}, + [2417] = {.lex_state = 54, .external_lex_state = 6}, + [2418] = {.lex_state = 28, .external_lex_state = 6}, + [2419] = {.lex_state = 28, .external_lex_state = 6}, + [2420] = {.lex_state = 28, .external_lex_state = 6}, + [2421] = {.lex_state = 28, .external_lex_state = 6}, + [2422] = {.lex_state = 1342, .external_lex_state = 6}, + [2423] = {.lex_state = 28, .external_lex_state = 6}, + [2424] = {.lex_state = 28, .external_lex_state = 6}, + [2425] = {.lex_state = 56, .external_lex_state = 6}, + [2426] = {.lex_state = 55, .external_lex_state = 3}, + [2427] = {.lex_state = 67, .external_lex_state = 7}, + [2428] = {.lex_state = 55, .external_lex_state = 3}, + [2429] = {.lex_state = 54, .external_lex_state = 6}, + [2430] = {.lex_state = 54, .external_lex_state = 6}, + [2431] = {.lex_state = 54, .external_lex_state = 6}, + [2432] = {.lex_state = 54, .external_lex_state = 6}, + [2433] = {.lex_state = 54, .external_lex_state = 6}, + [2434] = {.lex_state = 28, .external_lex_state = 3}, + [2435] = {.lex_state = 54, .external_lex_state = 6}, + [2436] = {.lex_state = 57, .external_lex_state = 6}, + [2437] = {.lex_state = 54, .external_lex_state = 6}, + [2438] = {.lex_state = 54, .external_lex_state = 6}, + [2439] = {.lex_state = 54, .external_lex_state = 6}, + [2440] = {.lex_state = 54, .external_lex_state = 6}, + [2441] = {.lex_state = 54, .external_lex_state = 6}, + [2442] = {.lex_state = 76}, + [2443] = {.lex_state = 28, .external_lex_state = 3}, + [2444] = {.lex_state = 1342, .external_lex_state = 6}, + [2445] = {.lex_state = 57, .external_lex_state = 3}, + [2446] = {.lex_state = 80, .external_lex_state = 3}, + [2447] = {.lex_state = 78, .external_lex_state = 6}, + [2448] = {.lex_state = 90, .external_lex_state = 3}, + [2449] = {.lex_state = 118, .external_lex_state = 6}, + [2450] = {.lex_state = 53, .external_lex_state = 4}, + [2451] = {.lex_state = 53, .external_lex_state = 4}, + [2452] = {.lex_state = 37, .external_lex_state = 11}, + [2453] = {.lex_state = 1342, .external_lex_state = 6}, + [2454] = {.lex_state = 37, .external_lex_state = 11}, + [2455] = {.lex_state = 37, .external_lex_state = 11}, + [2456] = {.lex_state = 120, .external_lex_state = 6}, + [2457] = {.lex_state = 57, .external_lex_state = 4}, + [2458] = {.lex_state = 88, .external_lex_state = 6}, + [2459] = {.lex_state = 55, .external_lex_state = 4}, + [2460] = {.lex_state = 54, .external_lex_state = 6}, + [2461] = {.lex_state = 80, .external_lex_state = 3}, + [2462] = {.lex_state = 57, .external_lex_state = 6}, + [2463] = {.lex_state = 56, .external_lex_state = 6}, + [2464] = {.lex_state = 53, .external_lex_state = 4}, + [2465] = {.lex_state = 1342, .external_lex_state = 6}, + [2466] = {.lex_state = 84, .external_lex_state = 3}, + [2467] = {.lex_state = 57, .external_lex_state = 3}, + [2468] = {.lex_state = 80, .external_lex_state = 3}, + [2469] = {.lex_state = 55, .external_lex_state = 4}, + [2470] = {.lex_state = 80, .external_lex_state = 3}, + [2471] = {.lex_state = 90, .external_lex_state = 3}, + [2472] = {.lex_state = 55, .external_lex_state = 6}, + [2473] = {.lex_state = 37, .external_lex_state = 11}, + [2474] = {.lex_state = 55, .external_lex_state = 3}, + [2475] = {.lex_state = 53, .external_lex_state = 3}, + [2476] = {.lex_state = 55, .external_lex_state = 3}, + [2477] = {.lex_state = 37, .external_lex_state = 11}, + [2478] = {.lex_state = 57, .external_lex_state = 4}, + [2479] = {.lex_state = 53, .external_lex_state = 3}, + [2480] = {.lex_state = 84, .external_lex_state = 3}, + [2481] = {.lex_state = 28, .external_lex_state = 6}, + [2482] = {.lex_state = 53, .external_lex_state = 3}, + [2483] = {.lex_state = 37, .external_lex_state = 11}, + [2484] = {.lex_state = 57, .external_lex_state = 4}, + [2485] = {.lex_state = 84, .external_lex_state = 3}, + [2486] = {.lex_state = 37, .external_lex_state = 11}, + [2487] = {.lex_state = 53, .external_lex_state = 3}, + [2488] = {.lex_state = 55, .external_lex_state = 5}, + [2489] = {.lex_state = 84, .external_lex_state = 3}, + [2490] = {.lex_state = 57, .external_lex_state = 5}, + [2491] = {.lex_state = 28, .external_lex_state = 6}, + [2492] = {.lex_state = 87, .external_lex_state = 3}, + [2493] = {.lex_state = 87, .external_lex_state = 3}, + [2494] = {.lex_state = 55, .external_lex_state = 4}, [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}, + [2496] = {.lex_state = 1342, .external_lex_state = 6}, + [2497] = {.lex_state = 1342, .external_lex_state = 6}, + [2498] = {.lex_state = 1342, .external_lex_state = 6}, + [2499] = {.lex_state = 37, .external_lex_state = 11}, + [2500] = {.lex_state = 53, .external_lex_state = 6}, + [2501] = {.lex_state = 53, .external_lex_state = 3}, + [2502] = {.lex_state = 1342, .external_lex_state = 6}, + [2503] = {.lex_state = 1342, .external_lex_state = 6}, + [2504] = {.lex_state = 1342, .external_lex_state = 6}, + [2505] = {.lex_state = 1342, .external_lex_state = 6}, + [2506] = {.lex_state = 54, .external_lex_state = 3}, + [2507] = {.lex_state = 54, .external_lex_state = 3}, + [2508] = {.lex_state = 1342, .external_lex_state = 6}, + [2509] = {.lex_state = 53, .external_lex_state = 5}, + [2510] = {.lex_state = 56, .external_lex_state = 3}, + [2511] = {.lex_state = 1342, .external_lex_state = 6}, + [2512] = {.lex_state = 1342, .external_lex_state = 6}, + [2513] = {.lex_state = 56, .external_lex_state = 3}, + [2514] = {.lex_state = 28, .external_lex_state = 3}, + [2515] = {.lex_state = 90, .external_lex_state = 3}, + [2516] = {.lex_state = 1342, .external_lex_state = 6}, + [2517] = {.lex_state = 1342, .external_lex_state = 6}, + [2518] = {.lex_state = 28, .external_lex_state = 3}, + [2519] = {.lex_state = 37, .external_lex_state = 11}, + [2520] = {.lex_state = 53, .external_lex_state = 5}, + [2521] = {.lex_state = 55, .external_lex_state = 4}, + [2522] = {.lex_state = 90, .external_lex_state = 3}, + [2523] = {.lex_state = 87, .external_lex_state = 3}, + [2524] = {.lex_state = 53, .external_lex_state = 3}, + [2525] = {.lex_state = 57, .external_lex_state = 5}, + [2526] = {.lex_state = 37, .external_lex_state = 11}, + [2527] = {.lex_state = 55, .external_lex_state = 5}, + [2528] = {.lex_state = 87, .external_lex_state = 3}, + [2529] = {.lex_state = 57, .external_lex_state = 4}, + [2530] = {.lex_state = 28, .external_lex_state = 3}, + [2531] = {.lex_state = 56, .external_lex_state = 4}, + [2532] = {.lex_state = 56, .external_lex_state = 5}, + [2533] = {.lex_state = 31, .external_lex_state = 3}, + [2534] = {.lex_state = 71, .external_lex_state = 7}, + [2535] = {.lex_state = 53, .external_lex_state = 5}, + [2536] = {.lex_state = 1342, .external_lex_state = 6}, + [2537] = {.lex_state = 1342, .external_lex_state = 6}, + [2538] = {.lex_state = 1342, .external_lex_state = 6}, + [2539] = {.lex_state = 1342, .external_lex_state = 6}, + [2540] = {.lex_state = 1342, .external_lex_state = 6}, + [2541] = {.lex_state = 1342, .external_lex_state = 6}, + [2542] = {.lex_state = 71, .external_lex_state = 7}, + [2543] = {.lex_state = 1342, .external_lex_state = 6}, + [2544] = {.lex_state = 119, .external_lex_state = 6}, + [2545] = {.lex_state = 57, .external_lex_state = 6}, + [2546] = {.lex_state = 1342, .external_lex_state = 6}, + [2547] = {.lex_state = 54, .external_lex_state = 3}, + [2548] = {.lex_state = 1342, .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}, + [2550] = {.lex_state = 57, .external_lex_state = 5}, + [2551] = {.lex_state = 85, .external_lex_state = 6}, + [2552] = {.lex_state = 55, .external_lex_state = 4}, + [2553] = {.lex_state = 1342, .external_lex_state = 6}, + [2554] = {.lex_state = 1342, .external_lex_state = 6}, + [2555] = {.lex_state = 1342, .external_lex_state = 6}, + [2556] = {.lex_state = 1342, .external_lex_state = 6}, + [2557] = {.lex_state = 55, .external_lex_state = 3}, + [2558] = {.lex_state = 53, .external_lex_state = 4}, + [2559] = {.lex_state = 1342, .external_lex_state = 6}, + [2560] = {.lex_state = 28, .external_lex_state = 3}, + [2561] = {.lex_state = 56, .external_lex_state = 5}, + [2562] = {.lex_state = 1342, .external_lex_state = 6}, + [2563] = {.lex_state = 81, .external_lex_state = 3}, + [2564] = {.lex_state = 1342, .external_lex_state = 6}, + [2565] = {.lex_state = 55, .external_lex_state = 3}, + [2566] = {.lex_state = 28, .external_lex_state = 4}, + [2567] = {.lex_state = 54, .external_lex_state = 4}, + [2568] = {.lex_state = 1342, .external_lex_state = 6}, + [2569] = {.lex_state = 28, .external_lex_state = 6}, + [2570] = {.lex_state = 1342, .external_lex_state = 6}, + [2571] = {.lex_state = 57, .external_lex_state = 3}, + [2572] = {.lex_state = 57, .external_lex_state = 6}, + [2573] = {.lex_state = 1342, .external_lex_state = 6}, + [2574] = {.lex_state = 122, .external_lex_state = 6}, + [2575] = {.lex_state = 31, .external_lex_state = 3}, + [2576] = {.lex_state = 55, .external_lex_state = 5}, + [2577] = {.lex_state = 1342, .external_lex_state = 6}, + [2578] = {.lex_state = 28, .external_lex_state = 4}, + [2579] = {.lex_state = 28, .external_lex_state = 4}, + [2580] = {.lex_state = 57, .external_lex_state = 4}, + [2581] = {.lex_state = 28, .external_lex_state = 4}, + [2582] = {.lex_state = 57, .external_lex_state = 4}, + [2583] = {.lex_state = 56, .external_lex_state = 4}, + [2584] = {.lex_state = 53, .external_lex_state = 3}, + [2585] = {.lex_state = 1342, .external_lex_state = 6}, + [2586] = {.lex_state = 54, .external_lex_state = 5}, + [2587] = {.lex_state = 54, .external_lex_state = 6}, + [2588] = {.lex_state = 1342, .external_lex_state = 6}, + [2589] = {.lex_state = 54, .external_lex_state = 3}, + [2590] = {.lex_state = 79, .external_lex_state = 6}, + [2591] = {.lex_state = 54, .external_lex_state = 3}, + [2592] = {.lex_state = 71, .external_lex_state = 7}, + [2593] = {.lex_state = 28, .external_lex_state = 5}, + [2594] = {.lex_state = 56, .external_lex_state = 6}, + [2595] = {.lex_state = 56, .external_lex_state = 3}, + [2596] = {.lex_state = 53, .external_lex_state = 3}, + [2597] = {.lex_state = 54, .external_lex_state = 5}, + [2598] = {.lex_state = 89, .external_lex_state = 6}, + [2599] = {.lex_state = 1342, .external_lex_state = 6}, [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 = 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}, + [2601] = {.lex_state = 91, .external_lex_state = 3}, + [2602] = {.lex_state = 1342, .external_lex_state = 6}, + [2603] = {.lex_state = 54, .external_lex_state = 4}, + [2604] = {.lex_state = 1342, .external_lex_state = 6}, + [2605] = {.lex_state = 32, .external_lex_state = 3}, + [2606] = {.lex_state = 54, .external_lex_state = 4}, + [2607] = {.lex_state = 32, .external_lex_state = 3}, + [2608] = {.lex_state = 1342, .external_lex_state = 6}, + [2609] = {.lex_state = 1342, .external_lex_state = 6}, + [2610] = {.lex_state = 1342, .external_lex_state = 6}, + [2611] = {.lex_state = 1342, .external_lex_state = 6}, + [2612] = {.lex_state = 1342, .external_lex_state = 6}, + [2613] = {.lex_state = 1342, .external_lex_state = 6}, + [2614] = {.lex_state = 1342, .external_lex_state = 6}, + [2615] = {.lex_state = 53, .external_lex_state = 6}, + [2616] = {.lex_state = 32, .external_lex_state = 3}, + [2617] = {.lex_state = 32, .external_lex_state = 3}, + [2618] = {.lex_state = 56, .external_lex_state = 4}, + [2619] = {.lex_state = 1342, .external_lex_state = 6}, + [2620] = {.lex_state = 1342, .external_lex_state = 6}, + [2621] = {.lex_state = 56, .external_lex_state = 4}, + [2622] = {.lex_state = 1342, .external_lex_state = 6}, + [2623] = {.lex_state = 28, .external_lex_state = 5}, + [2624] = {.lex_state = 55, .external_lex_state = 4}, + [2625] = {.lex_state = 54, .external_lex_state = 4}, + [2626] = {.lex_state = 57, .external_lex_state = 3}, + [2627] = {.lex_state = 53, .external_lex_state = 4}, + [2628] = {.lex_state = 1342, .external_lex_state = 6}, + [2629] = {.lex_state = 1342, .external_lex_state = 6}, + [2630] = {.lex_state = 81, .external_lex_state = 3}, + [2631] = {.lex_state = 91, .external_lex_state = 3}, + [2632] = {.lex_state = 81, .external_lex_state = 3}, + [2633] = {.lex_state = 81, .external_lex_state = 3}, + [2634] = {.lex_state = 29, .external_lex_state = 6}, + [2635] = {.lex_state = 1342, .external_lex_state = 6}, + [2636] = {.lex_state = 54, .external_lex_state = 3}, + [2637] = {.lex_state = 55, .external_lex_state = 6}, + [2638] = {.lex_state = 54, .external_lex_state = 3}, + [2639] = {.lex_state = 31, .external_lex_state = 3}, + [2640] = {.lex_state = 54, .external_lex_state = 3}, + [2641] = {.lex_state = 1342, .external_lex_state = 6}, + [2642] = {.lex_state = 31, .external_lex_state = 3}, + [2643] = {.lex_state = 91, .external_lex_state = 3}, + [2644] = {.lex_state = 91, .external_lex_state = 3}, + [2645] = {.lex_state = 1342, .external_lex_state = 6}, + [2646] = {.lex_state = 1342, .external_lex_state = 6}, + [2647] = {.lex_state = 1342, .external_lex_state = 6}, + [2648] = {.lex_state = 1342, .external_lex_state = 6}, + [2649] = {.lex_state = 1342, .external_lex_state = 6}, + [2650] = {.lex_state = 1342, .external_lex_state = 6}, + [2651] = {.lex_state = 1342, .external_lex_state = 6}, + [2652] = {.lex_state = 1342, .external_lex_state = 6}, + [2653] = {.lex_state = 1342, .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}, + [2655] = {.lex_state = 53, .external_lex_state = 6}, + [2656] = {.lex_state = 28, .external_lex_state = 5}, + [2657] = {.lex_state = 57, .external_lex_state = 6}, + [2658] = {.lex_state = 28, .external_lex_state = 6}, + [2659] = {.lex_state = 1342, .external_lex_state = 6}, + [2660] = {.lex_state = 1342, .external_lex_state = 6}, + [2661] = {.lex_state = 1342, .external_lex_state = 6}, + [2662] = {.lex_state = 1342, .external_lex_state = 6}, + [2663] = {.lex_state = 1342, .external_lex_state = 6}, + [2664] = {.lex_state = 1342, .external_lex_state = 6}, + [2665] = {.lex_state = 1342, .external_lex_state = 6}, + [2666] = {.lex_state = 86, .external_lex_state = 6}, + [2667] = {.lex_state = 1342, .external_lex_state = 6}, + [2668] = {.lex_state = 1342, .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}, + [2670] = {.lex_state = 1342, .external_lex_state = 6}, + [2671] = {.lex_state = 1342, .external_lex_state = 6}, + [2672] = {.lex_state = 53, .external_lex_state = 6}, + [2673] = {.lex_state = 57, .external_lex_state = 6}, + [2674] = {.lex_state = 53, .external_lex_state = 6}, + [2675] = {.lex_state = 53, .external_lex_state = 6}, + [2676] = {.lex_state = 1342, .external_lex_state = 6}, + [2677] = {.lex_state = 53, .external_lex_state = 6}, + [2678] = {.lex_state = 1342, .external_lex_state = 6}, + [2679] = {.lex_state = 53, .external_lex_state = 6}, + [2680] = {.lex_state = 1342, .external_lex_state = 6}, + [2681] = {.lex_state = 56, .external_lex_state = 4}, + [2682] = {.lex_state = 28, .external_lex_state = 3}, + [2683] = {.lex_state = 1342, .external_lex_state = 6}, + [2684] = {.lex_state = 1342, .external_lex_state = 6}, + [2685] = {.lex_state = 57, .external_lex_state = 6}, + [2686] = {.lex_state = 37}, + [2687] = {.lex_state = 1342, .external_lex_state = 6}, + [2688] = {.lex_state = 37}, + [2689] = {.lex_state = 1342, .external_lex_state = 6}, + [2690] = {.lex_state = 1342, .external_lex_state = 6}, + [2691] = {.lex_state = 1342, .external_lex_state = 6}, + [2692] = {.lex_state = 1342, .external_lex_state = 6}, + [2693] = {.lex_state = 72, .external_lex_state = 7}, + [2694] = {.lex_state = 54, .external_lex_state = 4}, + [2695] = {.lex_state = 57, .external_lex_state = 6}, + [2696] = {.lex_state = 28, .external_lex_state = 4}, + [2697] = {.lex_state = 57, .external_lex_state = 6}, + [2698] = {.lex_state = 28, .external_lex_state = 3}, + [2699] = {.lex_state = 37, .external_lex_state = 11}, + [2700] = {.lex_state = 1342, .external_lex_state = 6}, + [2701] = {.lex_state = 1342, .external_lex_state = 6}, + [2702] = {.lex_state = 1342, .external_lex_state = 6}, + [2703] = {.lex_state = 1342, .external_lex_state = 6}, + [2704] = {.lex_state = 39, .external_lex_state = 11}, + [2705] = {.lex_state = 1342, .external_lex_state = 6}, + [2706] = {.lex_state = 54, .external_lex_state = 6}, + [2707] = {.lex_state = 1342, .external_lex_state = 6}, + [2708] = {.lex_state = 57, .external_lex_state = 6}, + [2709] = {.lex_state = 55, .external_lex_state = 6}, + [2710] = {.lex_state = 37}, + [2711] = {.lex_state = 1342, .external_lex_state = 6}, + [2712] = {.lex_state = 37}, + [2713] = {.lex_state = 1342, .external_lex_state = 6}, + [2714] = {.lex_state = 1342, .external_lex_state = 6}, + [2715] = {.lex_state = 37}, + [2716] = {.lex_state = 57, .external_lex_state = 6}, + [2717] = {.lex_state = 54, .external_lex_state = 3}, + [2718] = {.lex_state = 56, .external_lex_state = 6}, + [2719] = {.lex_state = 1342, .external_lex_state = 6}, + [2720] = {.lex_state = 1342, .external_lex_state = 6}, + [2721] = {.lex_state = 57, .external_lex_state = 6}, + [2722] = {.lex_state = 28, .external_lex_state = 4}, + [2723] = {.lex_state = 1342, .external_lex_state = 6}, + [2724] = {.lex_state = 1342, .external_lex_state = 6}, + [2725] = {.lex_state = 1342, .external_lex_state = 6}, + [2726] = {.lex_state = 1342, .external_lex_state = 6}, + [2727] = {.lex_state = 1342, .external_lex_state = 6}, + [2728] = {.lex_state = 1342, .external_lex_state = 6}, + [2729] = {.lex_state = 1342, .external_lex_state = 6}, + [2730] = {.lex_state = 1342, .external_lex_state = 6}, + [2731] = {.lex_state = 1342, .external_lex_state = 6}, + [2732] = {.lex_state = 57, .external_lex_state = 6}, + [2733] = {.lex_state = 56, .external_lex_state = 3}, + [2734] = {.lex_state = 57, .external_lex_state = 6}, + [2735] = {.lex_state = 57, .external_lex_state = 6}, + [2736] = {.lex_state = 1342, .external_lex_state = 6}, + [2737] = {.lex_state = 53, .external_lex_state = 6}, + [2738] = {.lex_state = 1342, .external_lex_state = 6}, + [2739] = {.lex_state = 53, .external_lex_state = 6}, + [2740] = {.lex_state = 1342, .external_lex_state = 6}, + [2741] = {.lex_state = 1342, .external_lex_state = 6}, + [2742] = {.lex_state = 53, .external_lex_state = 6}, + [2743] = {.lex_state = 57, .external_lex_state = 6}, + [2744] = {.lex_state = 1342, .external_lex_state = 6}, + [2745] = {.lex_state = 37}, + [2746] = {.lex_state = 1342, .external_lex_state = 6}, + [2747] = {.lex_state = 1342, .external_lex_state = 6}, + [2748] = {.lex_state = 53, .external_lex_state = 6}, + [2749] = {.lex_state = 53, .external_lex_state = 6}, + [2750] = {.lex_state = 1342, .external_lex_state = 6}, + [2751] = {.lex_state = 1342, .external_lex_state = 6}, + [2752] = {.lex_state = 1342, .external_lex_state = 6}, + [2753] = {.lex_state = 1342, .external_lex_state = 6}, + [2754] = {.lex_state = 53, .external_lex_state = 6}, + [2755] = {.lex_state = 1342, .external_lex_state = 6}, + [2756] = {.lex_state = 1342, .external_lex_state = 6}, + [2757] = {.lex_state = 1342, .external_lex_state = 6}, + [2758] = {.lex_state = 55, .external_lex_state = 6}, + [2759] = {.lex_state = 1342, .external_lex_state = 6}, + [2760] = {.lex_state = 1342, .external_lex_state = 6}, + [2761] = {.lex_state = 37}, + [2762] = {.lex_state = 1342, .external_lex_state = 6}, + [2763] = {.lex_state = 1342, .external_lex_state = 6}, + [2764] = {.lex_state = 1342, .external_lex_state = 6}, + [2765] = {.lex_state = 57, .external_lex_state = 6}, [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}, + [2767] = {.lex_state = 1342, .external_lex_state = 6}, + [2768] = {.lex_state = 1342, .external_lex_state = 6}, + [2769] = {.lex_state = 54, .external_lex_state = 3}, + [2770] = {.lex_state = 1342, .external_lex_state = 6}, + [2771] = {.lex_state = 53, .external_lex_state = 6}, + [2772] = {.lex_state = 1342, .external_lex_state = 6}, + [2773] = {.lex_state = 57, .external_lex_state = 6}, + [2774] = {.lex_state = 1342, .external_lex_state = 6}, + [2775] = {.lex_state = 1342, .external_lex_state = 6}, + [2776] = {.lex_state = 1342, .external_lex_state = 6}, + [2777] = {.lex_state = 39, .external_lex_state = 11}, + [2778] = {.lex_state = 1342, .external_lex_state = 6}, + [2779] = {.lex_state = 56, .external_lex_state = 3}, + [2780] = {.lex_state = 1342, .external_lex_state = 6}, + [2781] = {.lex_state = 37}, + [2782] = {.lex_state = 1342, .external_lex_state = 6}, + [2783] = {.lex_state = 76}, + [2784] = {.lex_state = 53, .external_lex_state = 6}, + [2785] = {.lex_state = 53, .external_lex_state = 6}, + [2786] = {.lex_state = 1342, .external_lex_state = 6}, + [2787] = {.lex_state = 1342, .external_lex_state = 6}, + [2788] = {.lex_state = 55, .external_lex_state = 6}, + [2789] = {.lex_state = 1342, .external_lex_state = 6}, + [2790] = {.lex_state = 110, .external_lex_state = 6}, + [2791] = {.lex_state = 1342, .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}, + [2793] = {.lex_state = 53, .external_lex_state = 6}, + [2794] = {.lex_state = 53, .external_lex_state = 6}, + [2795] = {.lex_state = 1342, .external_lex_state = 6}, + [2796] = {.lex_state = 56, .external_lex_state = 5}, + [2797] = {.lex_state = 1342, .external_lex_state = 6}, + [2798] = {.lex_state = 1342, .external_lex_state = 6}, + [2799] = {.lex_state = 1342, .external_lex_state = 6}, + [2800] = {.lex_state = 1342, .external_lex_state = 6}, + [2801] = {.lex_state = 1342, .external_lex_state = 6}, + [2802] = {.lex_state = 1342, .external_lex_state = 6}, + [2803] = {.lex_state = 1342, .external_lex_state = 6}, + [2804] = {.lex_state = 1342, .external_lex_state = 6}, + [2805] = {.lex_state = 1342, .external_lex_state = 6}, + [2806] = {.lex_state = 1342, .external_lex_state = 6}, + [2807] = {.lex_state = 1342, .external_lex_state = 6}, + [2808] = {.lex_state = 1342, .external_lex_state = 6}, + [2809] = {.lex_state = 53, .external_lex_state = 6}, + [2810] = {.lex_state = 56, .external_lex_state = 4}, + [2811] = {.lex_state = 57, .external_lex_state = 6}, [2812] = {.lex_state = 37}, - [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}, + [2813] = {.lex_state = 1342, .external_lex_state = 6}, + [2814] = {.lex_state = 1342, .external_lex_state = 6}, + [2815] = {.lex_state = 57, .external_lex_state = 6}, + [2816] = {.lex_state = 1342, .external_lex_state = 6}, + [2817] = {.lex_state = 57, .external_lex_state = 6}, + [2818] = {.lex_state = 57, .external_lex_state = 6}, + [2819] = {.lex_state = 1342, .external_lex_state = 6}, + [2820] = {.lex_state = 57, .external_lex_state = 6}, + [2821] = {.lex_state = 1342, .external_lex_state = 6}, + [2822] = {.lex_state = 53, .external_lex_state = 6}, + [2823] = {.lex_state = 1342, .external_lex_state = 6}, + [2824] = {.lex_state = 1342, .external_lex_state = 6}, + [2825] = {.lex_state = 1342, .external_lex_state = 6}, + [2826] = {.lex_state = 53, .external_lex_state = 6}, + [2827] = {.lex_state = 1342, .external_lex_state = 6}, + [2828] = {.lex_state = 1342, .external_lex_state = 6}, + [2829] = {.lex_state = 121, .external_lex_state = 6}, + [2830] = {.lex_state = 1342, .external_lex_state = 6}, + [2831] = {.lex_state = 54, .external_lex_state = 4}, + [2832] = {.lex_state = 1342, .external_lex_state = 6}, + [2833] = {.lex_state = 1342, .external_lex_state = 6}, + [2834] = {.lex_state = 1342, .external_lex_state = 6}, + [2835] = {.lex_state = 1342, .external_lex_state = 6}, + [2836] = {.lex_state = 53, .external_lex_state = 6}, + [2837] = {.lex_state = 1342, .external_lex_state = 6}, + [2838] = {.lex_state = 1342, .external_lex_state = 6}, + [2839] = {.lex_state = 1342, .external_lex_state = 6}, + [2840] = {.lex_state = 1342, .external_lex_state = 6}, + [2841] = {.lex_state = 57, .external_lex_state = 6}, + [2842] = {.lex_state = 1342, .external_lex_state = 6}, + [2843] = {.lex_state = 1342, .external_lex_state = 6}, + [2844] = {.lex_state = 1342, .external_lex_state = 6}, + [2845] = {.lex_state = 1342, .external_lex_state = 6}, + [2846] = {.lex_state = 1342, .external_lex_state = 6}, + [2847] = {.lex_state = 1342, .external_lex_state = 6}, + [2848] = {.lex_state = 1342, .external_lex_state = 6}, + [2849] = {.lex_state = 1342, .external_lex_state = 6}, + [2850] = {.lex_state = 55, .external_lex_state = 6}, + [2851] = {.lex_state = 55, .external_lex_state = 6}, + [2852] = {.lex_state = 37}, + [2853] = {.lex_state = 1342, .external_lex_state = 6}, + [2854] = {.lex_state = 57, .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}, + [2856] = {.lex_state = 1342, .external_lex_state = 6}, + [2857] = {.lex_state = 54, .external_lex_state = 3}, + [2858] = {.lex_state = 1342, .external_lex_state = 6}, + [2859] = {.lex_state = 1342, .external_lex_state = 6}, + [2860] = {.lex_state = 1342, .external_lex_state = 6}, + [2861] = {.lex_state = 55, .external_lex_state = 6}, + [2862] = {.lex_state = 37}, + [2863] = {.lex_state = 55, .external_lex_state = 6}, + [2864] = {.lex_state = 55, .external_lex_state = 6}, + [2865] = {.lex_state = 1342, .external_lex_state = 6}, + [2866] = {.lex_state = 1342, .external_lex_state = 6}, + [2867] = {.lex_state = 57, .external_lex_state = 6}, + [2868] = {.lex_state = 57, .external_lex_state = 6}, + [2869] = {.lex_state = 57, .external_lex_state = 6}, + [2870] = {.lex_state = 1342, .external_lex_state = 6}, + [2871] = {.lex_state = 1342, .external_lex_state = 6}, + [2872] = {.lex_state = 1342, .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}, + [2874] = {.lex_state = 1342, .external_lex_state = 6}, + [2875] = {.lex_state = 55, .external_lex_state = 6}, + [2876] = {.lex_state = 1342, .external_lex_state = 6}, + [2877] = {.lex_state = 37, .external_lex_state = 11}, + [2878] = {.lex_state = 1342, .external_lex_state = 6}, + [2879] = {.lex_state = 1342, .external_lex_state = 6}, + [2880] = {.lex_state = 1342, .external_lex_state = 6}, + [2881] = {.lex_state = 1342, .external_lex_state = 6}, + [2882] = {.lex_state = 53, .external_lex_state = 6}, + [2883] = {.lex_state = 54, .external_lex_state = 5}, + [2884] = {.lex_state = 55, .external_lex_state = 6}, + [2885] = {.lex_state = 1342, .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}, + [2887] = {.lex_state = 1342, .external_lex_state = 6}, + [2888] = {.lex_state = 1342, .external_lex_state = 6}, + [2889] = {.lex_state = 1342, .external_lex_state = 6}, + [2890] = {.lex_state = 1342, .external_lex_state = 6}, + [2891] = {.lex_state = 1342, .external_lex_state = 6}, + [2892] = {.lex_state = 1342, .external_lex_state = 6}, + [2893] = {.lex_state = 55, .external_lex_state = 6}, + [2894] = {.lex_state = 1342, .external_lex_state = 6}, + [2895] = {.lex_state = 1342, .external_lex_state = 6}, + [2896] = {.lex_state = 55, .external_lex_state = 6}, + [2897] = {.lex_state = 55, .external_lex_state = 6}, + [2898] = {.lex_state = 55, .external_lex_state = 6}, + [2899] = {.lex_state = 55, .external_lex_state = 6}, + [2900] = {.lex_state = 55, .external_lex_state = 6}, + [2901] = {.lex_state = 1342, .external_lex_state = 6}, + [2902] = {.lex_state = 55, .external_lex_state = 6}, + [2903] = {.lex_state = 55, .external_lex_state = 6}, + [2904] = {.lex_state = 55, .external_lex_state = 6}, + [2905] = {.lex_state = 55, .external_lex_state = 6}, + [2906] = {.lex_state = 126, .external_lex_state = 6}, + [2907] = {.lex_state = 1342, .external_lex_state = 6}, + [2908] = {.lex_state = 53, .external_lex_state = 6}, + [2909] = {.lex_state = 55, .external_lex_state = 6}, + [2910] = {.lex_state = 1342, .external_lex_state = 6}, + [2911] = {.lex_state = 54, .external_lex_state = 6}, + [2912] = {.lex_state = 28, .external_lex_state = 6}, + [2913] = {.lex_state = 56, .external_lex_state = 6}, + [2914] = {.lex_state = 56, .external_lex_state = 6}, + [2915] = {.lex_state = 56, .external_lex_state = 6}, + [2916] = {.lex_state = 37}, [2917] = {.lex_state = 54, .external_lex_state = 6}, - [2918] = {.lex_state = 37}, + [2918] = {.lex_state = 56, .external_lex_state = 6}, [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}, + [2920] = {.lex_state = 56, .external_lex_state = 6}, + [2921] = {.lex_state = 37}, + [2922] = {.lex_state = 54, .external_lex_state = 6}, [2923] = {.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}, + [2924] = {.lex_state = 28, .external_lex_state = 6}, + [2925] = {.lex_state = 28, .external_lex_state = 6}, + [2926] = {.lex_state = 37}, + [2927] = {.lex_state = 129, .external_lex_state = 6}, + [2928] = {.lex_state = 56, .external_lex_state = 6}, [2929] = {.lex_state = 28, .external_lex_state = 6}, - [2930] = {.lex_state = 54, .external_lex_state = 6}, + [2930] = {.lex_state = 56, .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}, + [2932] = {.lex_state = 56, .external_lex_state = 6}, + [2933] = {.lex_state = 37}, + [2934] = {.lex_state = 56, .external_lex_state = 6}, + [2935] = {.lex_state = 56, .external_lex_state = 6}, + [2936] = {.lex_state = 69, .external_lex_state = 7}, + [2937] = {.lex_state = 56, .external_lex_state = 6}, + [2938] = {.lex_state = 56, .external_lex_state = 6}, + [2939] = {.lex_state = 28, .external_lex_state = 6}, + [2940] = {.lex_state = 56, .external_lex_state = 6}, [2941] = {.lex_state = 28, .external_lex_state = 6}, - [2942] = {.lex_state = 28, .external_lex_state = 6}, + [2942] = {.lex_state = 56, .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}, + [2946] = {.lex_state = 56, .external_lex_state = 6}, + [2947] = {.lex_state = 56, .external_lex_state = 6}, + [2948] = {.lex_state = 37}, + [2949] = {.lex_state = 54, .external_lex_state = 6}, + [2950] = {.lex_state = 37}, + [2951] = {.lex_state = 202, .external_lex_state = 7}, [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}, + [2953] = {.lex_state = 56, .external_lex_state = 6}, + [2954] = {.lex_state = 56, .external_lex_state = 6}, + [2955] = {.lex_state = 37}, [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}, + [2958] = {.lex_state = 54, .external_lex_state = 6}, + [2959] = {.lex_state = 28, .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}, + [2961] = {.lex_state = 54, .external_lex_state = 6}, + [2962] = {.lex_state = 54, .external_lex_state = 6}, + [2963] = {.lex_state = 54, .external_lex_state = 6}, [2964] = {.lex_state = 37}, - [2965] = {.lex_state = 54, .external_lex_state = 6}, + [2965] = {.lex_state = 37}, [2966] = {.lex_state = 54, .external_lex_state = 6}, [2967] = {.lex_state = 56, .external_lex_state = 6}, - [2968] = {.lex_state = 37}, - [2969] = {.lex_state = 37}, + [2968] = {.lex_state = 54, .external_lex_state = 6}, + [2969] = {.lex_state = 54, .external_lex_state = 6}, [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}, + [2971] = {.lex_state = 28, .external_lex_state = 6}, + [2972] = {.lex_state = 54, .external_lex_state = 6}, + [2973] = {.lex_state = 28, .external_lex_state = 6}, + [2974] = {.lex_state = 128, .external_lex_state = 6}, [2975] = {.lex_state = 37}, - [2976] = {.lex_state = 56, .external_lex_state = 6}, - [2977] = {.lex_state = 56, .external_lex_state = 6}, - [2978] = {.lex_state = 37}, + [2976] = {.lex_state = 37}, + [2977] = {.lex_state = 37}, + [2978] = {.lex_state = 56, .external_lex_state = 6}, [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}, + [2980] = {.lex_state = 202, .external_lex_state = 7}, + [2981] = {.lex_state = 54, .external_lex_state = 6}, + [2982] = {.lex_state = 28, .external_lex_state = 6}, + [2983] = {.lex_state = 202, .external_lex_state = 7}, [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 = 37}, - [2989] = {.lex_state = 37}, - [2990] = {.lex_state = 56, .external_lex_state = 6}, + [2985] = {.lex_state = 28, .external_lex_state = 6}, + [2986] = {.lex_state = 28, .external_lex_state = 6}, + [2987] = {.lex_state = 54, .external_lex_state = 6}, + [2988] = {.lex_state = 28, .external_lex_state = 6}, + [2989] = {.lex_state = 28, .external_lex_state = 6}, + [2990] = {.lex_state = 28, .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}, + [2992] = {.lex_state = 28, .external_lex_state = 6}, + [2993] = {.lex_state = 28, .external_lex_state = 6}, + [2994] = {.lex_state = 37}, + [2995] = {.lex_state = 28, .external_lex_state = 6}, + [2996] = {.lex_state = 37}, + [2997] = {.lex_state = 54, .external_lex_state = 6}, + [2998] = {.lex_state = 202, .external_lex_state = 7}, + [2999] = {.lex_state = 54, .external_lex_state = 6}, + [3000] = {.lex_state = 111, .external_lex_state = 6}, + [3001] = {.lex_state = 28, .external_lex_state = 6}, + [3002] = {.lex_state = 28, .external_lex_state = 6}, + [3003] = {.lex_state = 28, .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}, + [3005] = {.lex_state = 54, .external_lex_state = 6}, + [3006] = {.lex_state = 54, .external_lex_state = 6}, + [3007] = {.lex_state = 124, .external_lex_state = 6}, [3008] = {.lex_state = 37}, - [3009] = {.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 = 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 = 69, .external_lex_state = 7}, - [3019] = {.lex_state = 69, .external_lex_state = 7}, - [3020] = {.lex_state = 69, .external_lex_state = 7}, + [3009] = {.lex_state = 54, .external_lex_state = 6}, + [3010] = {.lex_state = 123, .external_lex_state = 6}, + [3011] = {.lex_state = 127, .external_lex_state = 6}, + [3012] = {.lex_state = 202, .external_lex_state = 7}, + [3013] = {.lex_state = 37}, + [3014] = {.lex_state = 28, .external_lex_state = 6}, + [3015] = {.lex_state = 37}, + [3016] = {.lex_state = 54, .external_lex_state = 6}, + [3017] = {.lex_state = 54, .external_lex_state = 6}, + [3018] = {.lex_state = 37}, + [3019] = {.lex_state = 37}, + [3020] = {.lex_state = 37}, [3021] = {.lex_state = 37}, - [3022] = {.lex_state = 40}, + [3022] = {.lex_state = 37}, [3023] = {.lex_state = 37}, - [3024] = {.lex_state = 37}, - [3025] = {.lex_state = 40}, + [3024] = {.lex_state = 39}, + [3025] = {.lex_state = 39}, [3026] = {.lex_state = 37}, [3027] = {.lex_state = 37}, - [3028] = {.lex_state = 40}, - [3029] = {.lex_state = 37}, + [3028] = {.lex_state = 76}, + [3029] = {.lex_state = 69, .external_lex_state = 7}, [3030] = {.lex_state = 37}, - [3031] = {.lex_state = 37}, - [3032] = {.lex_state = 202}, + [3031] = {.lex_state = 69, .external_lex_state = 7}, + [3032] = {.lex_state = 69, .external_lex_state = 7}, [3033] = {.lex_state = 37}, - [3034] = {.lex_state = 37}, - [3035] = {.lex_state = 37}, - [3036] = {.lex_state = 37}, - [3037] = {.lex_state = 202}, + [3034] = {.lex_state = 131, .external_lex_state = 6}, + [3035] = {.lex_state = 125, .external_lex_state = 6}, + [3036] = {.lex_state = 130, .external_lex_state = 6}, + [3037] = {.lex_state = 39}, [3038] = {.lex_state = 37}, - [3039] = {.lex_state = 37}, + [3039] = {.lex_state = 69, .external_lex_state = 7}, [3040] = {.lex_state = 37}, - [3041] = {.lex_state = 37}, + [3041] = {.lex_state = 69, .external_lex_state = 7}, [3042] = {.lex_state = 37}, [3043] = {.lex_state = 37}, - [3044] = {.lex_state = 37}, - [3045] = {.lex_state = 202}, + [3044] = {.lex_state = 202}, + [3045] = {.lex_state = 37}, [3046] = {.lex_state = 37}, - [3047] = {.lex_state = 40}, + [3047] = {.lex_state = 76}, [3048] = {.lex_state = 37}, [3049] = {.lex_state = 37}, [3050] = {.lex_state = 37}, @@ -40478,53 +40806,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3056] = {.lex_state = 37}, [3057] = {.lex_state = 37}, [3058] = {.lex_state = 37}, - [3059] = {.lex_state = 40}, + [3059] = {.lex_state = 37}, [3060] = {.lex_state = 37}, [3061] = {.lex_state = 37}, [3062] = {.lex_state = 37}, - [3063] = {.lex_state = 37}, + [3063] = {.lex_state = 202}, [3064] = {.lex_state = 37}, [3065] = {.lex_state = 37}, [3066] = {.lex_state = 37}, - [3067] = {.lex_state = 37}, + [3067] = {.lex_state = 202}, [3068] = {.lex_state = 37}, [3069] = {.lex_state = 37}, - [3070] = {.lex_state = 194}, + [3070] = {.lex_state = 37}, [3071] = {.lex_state = 37}, [3072] = {.lex_state = 37}, - [3073] = {.lex_state = 197}, - [3074] = {.lex_state = 37}, + [3073] = {.lex_state = 37}, + [3074] = {.lex_state = 76}, [3075] = {.lex_state = 37}, [3076] = {.lex_state = 37}, [3077] = {.lex_state = 37}, - [3078] = {.lex_state = 194}, + [3078] = {.lex_state = 37}, [3079] = {.lex_state = 37}, - [3080] = {.lex_state = 37}, - [3081] = {.lex_state = 197}, + [3080] = {.lex_state = 194}, + [3081] = {.lex_state = 37}, [3082] = {.lex_state = 194}, [3083] = {.lex_state = 37}, - [3084] = {.lex_state = 194}, + [3084] = {.lex_state = 37}, [3085] = {.lex_state = 197}, [3086] = {.lex_state = 37}, [3087] = {.lex_state = 37}, [3088] = {.lex_state = 37}, [3089] = {.lex_state = 197}, - [3090] = {.lex_state = 197}, - [3091] = {.lex_state = 37}, - [3092] = {.lex_state = 37}, - [3093] = {.lex_state = 37}, + [3090] = {.lex_state = 37}, + [3091] = {.lex_state = 194}, + [3092] = {.lex_state = 194}, + [3093] = {.lex_state = 197}, [3094] = {.lex_state = 37}, [3095] = {.lex_state = 37}, [3096] = {.lex_state = 37}, [3097] = {.lex_state = 37}, - [3098] = {.lex_state = 197}, - [3099] = {.lex_state = 37}, + [3098] = {.lex_state = 37}, + [3099] = {.lex_state = 197}, [3100] = {.lex_state = 37}, - [3101] = {.lex_state = 194}, + [3101] = {.lex_state = 37}, [3102] = {.lex_state = 37}, [3103] = {.lex_state = 37}, - [3104] = {.lex_state = 194}, - [3105] = {.lex_state = 37}, + [3104] = {.lex_state = 37}, + [3105] = {.lex_state = 197}, [3106] = {.lex_state = 37}, [3107] = {.lex_state = 37}, [3108] = {.lex_state = 37}, @@ -40533,30 +40861,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3111] = {.lex_state = 37}, [3112] = {.lex_state = 37}, [3113] = {.lex_state = 37}, - [3114] = {.lex_state = 37}, - [3115] = {.lex_state = 37}, - [3116] = {.lex_state = 37}, + [3114] = {.lex_state = 197}, + [3115] = {.lex_state = 194}, + [3116] = {.lex_state = 194}, [3117] = {.lex_state = 37}, [3118] = {.lex_state = 197}, - [3119] = {.lex_state = 194}, - [3120] = {.lex_state = 197}, - [3121] = {.lex_state = 194}, + [3119] = {.lex_state = 197}, + [3120] = {.lex_state = 37}, + [3121] = {.lex_state = 37}, [3122] = {.lex_state = 37}, [3123] = {.lex_state = 37}, [3124] = {.lex_state = 37}, - [3125] = {.lex_state = 37}, + [3125] = {.lex_state = 194}, [3126] = {.lex_state = 37}, [3127] = {.lex_state = 37}, - [3128] = {.lex_state = 37}, + [3128] = {.lex_state = 194}, [3129] = {.lex_state = 37}, - [3130] = {.lex_state = 40}, + [3130] = {.lex_state = 76}, [3131] = {.lex_state = 37}, [3132] = {.lex_state = 37}, [3133] = {.lex_state = 37}, [3134] = {.lex_state = 194}, [3135] = {.lex_state = 37}, - [3136] = {.lex_state = 37}, - [3137] = {.lex_state = 194}, + [3136] = {.lex_state = 197}, + [3137] = {.lex_state = 37}, [3138] = {.lex_state = 37}, [3139] = {.lex_state = 37}, [3140] = {.lex_state = 37}, @@ -40568,3675 +40896,3760 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3146] = {.lex_state = 37}, [3147] = {.lex_state = 37}, [3148] = {.lex_state = 37}, - [3149] = {.lex_state = 37}, + [3149] = {.lex_state = 197}, [3150] = {.lex_state = 37}, [3151] = {.lex_state = 37}, [3152] = {.lex_state = 37}, - [3153] = {.lex_state = 197}, + [3153] = {.lex_state = 37}, [3154] = {.lex_state = 37}, - [3155] = {.lex_state = 197}, + [3155] = {.lex_state = 37}, [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}, + [3162] = {.lex_state = 37}, + [3163] = {.lex_state = 194}, + [3164] = {.lex_state = 37}, + [3165] = {.lex_state = 37}, + [3166] = {.lex_state = 37}, + [3167] = {.lex_state = 37}, [3168] = {.lex_state = 37}, - [3169] = {.lex_state = 1329}, - [3170] = {.lex_state = 1329}, + [3169] = {.lex_state = 37}, + [3170] = {.lex_state = 37}, [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}, + [3173] = {.lex_state = 37}, + [3174] = {.lex_state = 202, .external_lex_state = 7}, + [3175] = {.lex_state = 202, .external_lex_state = 7}, + [3176] = {.lex_state = 202, .external_lex_state = 7}, + [3177] = {.lex_state = 37}, + [3178] = {.lex_state = 1342}, + [3179] = {.lex_state = 37}, + [3180] = {.lex_state = 1342}, + [3181] = {.lex_state = 1342}, + [3182] = {.lex_state = 37}, + [3183] = {.lex_state = 37}, + [3184] = {.lex_state = 1342}, + [3185] = {.lex_state = 76}, [3186] = {.lex_state = 37}, - [3187] = {.lex_state = 1329}, - [3188] = {.lex_state = 1329}, - [3189] = {.lex_state = 40}, - [3190] = {.lex_state = 37}, - [3191] = {.lex_state = 41, .external_lex_state = 11}, - [3192] = {.lex_state = 1329}, - [3193] = {.lex_state = 37}, - [3194] = {.lex_state = 40}, + [3187] = {.lex_state = 41, .external_lex_state = 11}, + [3188] = {.lex_state = 1342}, + [3189] = {.lex_state = 76}, + [3190] = {.lex_state = 1342}, + [3191] = {.lex_state = 37}, + [3192] = {.lex_state = 1342}, + [3193] = {.lex_state = 1342}, + [3194] = {.lex_state = 76}, [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 = 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 = 1329}, - [3225] = {.lex_state = 1329, .external_lex_state = 11}, - [3226] = {.lex_state = 37}, - [3227] = {.lex_state = 1329, .external_lex_state = 11}, + [3196] = {.lex_state = 1342}, + [3197] = {.lex_state = 41, .external_lex_state = 11}, + [3198] = {.lex_state = 37}, + [3199] = {.lex_state = 37}, + [3200] = {.lex_state = 76}, + [3201] = {.lex_state = 37}, + [3202] = {.lex_state = 76}, + [3203] = {.lex_state = 37}, + [3204] = {.lex_state = 37}, + [3205] = {.lex_state = 37}, + [3206] = {.lex_state = 1342}, + [3207] = {.lex_state = 1342}, + [3208] = {.lex_state = 1342}, + [3209] = {.lex_state = 37}, + [3210] = {.lex_state = 66}, + [3211] = {.lex_state = 66}, + [3212] = {.lex_state = 76}, + [3213] = {.lex_state = 1342}, + [3214] = {.lex_state = 37, .external_lex_state = 11}, + [3215] = {.lex_state = 37, .external_lex_state = 11}, + [3216] = {.lex_state = 76}, + [3217] = {.lex_state = 41, .external_lex_state = 11}, + [3218] = {.lex_state = 66}, + [3219] = {.lex_state = 76}, + [3220] = {.lex_state = 1342}, + [3221] = {.lex_state = 1342}, + [3222] = {.lex_state = 66}, + [3223] = {.lex_state = 1342, .external_lex_state = 11}, + [3224] = {.lex_state = 1342, .external_lex_state = 11}, + [3225] = {.lex_state = 1342, .external_lex_state = 11}, + [3226] = {.lex_state = 1342}, + [3227] = {.lex_state = 1342, .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 = 41, .external_lex_state = 16}, - [3248] = {.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}, + [3229] = {.lex_state = 76}, + [3230] = {.lex_state = 41, .external_lex_state = 16}, + [3231] = {.lex_state = 1342, .external_lex_state = 11}, + [3232] = {.lex_state = 1342, .external_lex_state = 11}, + [3233] = {.lex_state = 1342}, + [3234] = {.lex_state = 76}, + [3235] = {.lex_state = 76}, + [3236] = {.lex_state = 1342, .external_lex_state = 11}, + [3237] = {.lex_state = 1342, .external_lex_state = 11}, + [3238] = {.lex_state = 1342, .external_lex_state = 11}, + [3239] = {.lex_state = 76}, + [3240] = {.lex_state = 1342, .external_lex_state = 11}, + [3241] = {.lex_state = 1342, .external_lex_state = 11}, + [3242] = {.lex_state = 37, .external_lex_state = 11}, + [3243] = {.lex_state = 41, .external_lex_state = 16}, + [3244] = {.lex_state = 37}, + [3245] = {.lex_state = 1342}, + [3246] = {.lex_state = 1342}, + [3247] = {.lex_state = 37}, + [3248] = {.lex_state = 76}, + [3249] = {.lex_state = 1342, .external_lex_state = 11}, + [3250] = {.lex_state = 1342}, + [3251] = {.lex_state = 41, .external_lex_state = 16}, + [3252] = {.lex_state = 41, .external_lex_state = 16}, + [3253] = {.lex_state = 1342}, + [3254] = {.lex_state = 1342}, + [3255] = {.lex_state = 1342, .external_lex_state = 11}, [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}, + [3257] = {.lex_state = 76}, + [3258] = {.lex_state = 1342}, + [3259] = {.lex_state = 1342, .external_lex_state = 11}, + [3260] = {.lex_state = 1342, .external_lex_state = 11}, + [3261] = {.lex_state = 1342}, + [3262] = {.lex_state = 1342}, + [3263] = {.lex_state = 37}, + [3264] = {.lex_state = 37}, + [3265] = {.lex_state = 39}, + [3266] = {.lex_state = 76}, + [3267] = {.lex_state = 37}, + [3268] = {.lex_state = 39}, + [3269] = {.lex_state = 76}, + [3270] = {.lex_state = 76}, + [3271] = {.lex_state = 39}, + [3272] = {.lex_state = 39}, + [3273] = {.lex_state = 39}, + [3274] = {.lex_state = 1342}, + [3275] = {.lex_state = 37}, + [3276] = {.lex_state = 76}, + [3277] = {.lex_state = 37}, + [3278] = {.lex_state = 41, .external_lex_state = 17}, + [3279] = {.lex_state = 1342}, + [3280] = {.lex_state = 1342}, + [3281] = {.lex_state = 1342}, + [3282] = {.lex_state = 38, .external_lex_state = 16}, [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 = 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 = 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 = 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 = 68}, - [3497] = {.lex_state = 37}, - [3498] = {.lex_state = 37}, + [3284] = {.lex_state = 1342}, + [3285] = {.lex_state = 1342}, + [3286] = {.lex_state = 41, .external_lex_state = 17}, + [3287] = {.lex_state = 1342}, + [3288] = {.lex_state = 1342}, + [3289] = {.lex_state = 41, .external_lex_state = 17}, + [3290] = {.lex_state = 1342}, + [3291] = {.lex_state = 1342}, + [3292] = {.lex_state = 1342}, + [3293] = {.lex_state = 1342}, + [3294] = {.lex_state = 1342}, + [3295] = {.lex_state = 1342}, + [3296] = {.lex_state = 76}, + [3297] = {.lex_state = 37}, + [3298] = {.lex_state = 76}, + [3299] = {.lex_state = 41, .external_lex_state = 17}, + [3300] = {.lex_state = 1342}, + [3301] = {.lex_state = 1342}, + [3302] = {.lex_state = 1342}, + [3303] = {.lex_state = 1342}, + [3304] = {.lex_state = 1342}, + [3305] = {.lex_state = 1342}, + [3306] = {.lex_state = 41, .external_lex_state = 17}, + [3307] = {.lex_state = 1342}, + [3308] = {.lex_state = 1342}, + [3309] = {.lex_state = 1342}, + [3310] = {.lex_state = 76}, + [3311] = {.lex_state = 76}, + [3312] = {.lex_state = 1342}, + [3313] = {.lex_state = 76}, + [3314] = {.lex_state = 1342}, + [3315] = {.lex_state = 1342}, + [3316] = {.lex_state = 1342}, + [3317] = {.lex_state = 1342}, + [3318] = {.lex_state = 1342}, + [3319] = {.lex_state = 1342}, + [3320] = {.lex_state = 1342}, + [3321] = {.lex_state = 1342}, + [3322] = {.lex_state = 1342}, + [3323] = {.lex_state = 1342}, + [3324] = {.lex_state = 1342}, + [3325] = {.lex_state = 1342}, + [3326] = {.lex_state = 1342}, + [3327] = {.lex_state = 1342}, + [3328] = {.lex_state = 1342}, + [3329] = {.lex_state = 1342}, + [3330] = {.lex_state = 1342}, + [3331] = {.lex_state = 1342}, + [3332] = {.lex_state = 1342}, + [3333] = {.lex_state = 1342}, + [3334] = {.lex_state = 1342}, + [3335] = {.lex_state = 1342}, + [3336] = {.lex_state = 1342}, + [3337] = {.lex_state = 1342}, + [3338] = {.lex_state = 1342}, + [3339] = {.lex_state = 1342}, + [3340] = {.lex_state = 1342}, + [3341] = {.lex_state = 1342}, + [3342] = {.lex_state = 1342}, + [3343] = {.lex_state = 1342}, + [3344] = {.lex_state = 1342}, + [3345] = {.lex_state = 1342}, + [3346] = {.lex_state = 1342}, + [3347] = {.lex_state = 1342}, + [3348] = {.lex_state = 1342}, + [3349] = {.lex_state = 1342}, + [3350] = {.lex_state = 1342}, + [3351] = {.lex_state = 1342}, + [3352] = {.lex_state = 1342}, + [3353] = {.lex_state = 1342}, + [3354] = {.lex_state = 1342}, + [3355] = {.lex_state = 1342}, + [3356] = {.lex_state = 66}, + [3357] = {.lex_state = 76}, + [3358] = {.lex_state = 1342}, + [3359] = {.lex_state = 1342}, + [3360] = {.lex_state = 1342}, + [3361] = {.lex_state = 76}, + [3362] = {.lex_state = 76}, + [3363] = {.lex_state = 1342}, + [3364] = {.lex_state = 76}, + [3365] = {.lex_state = 1342}, + [3366] = {.lex_state = 76}, + [3367] = {.lex_state = 1342}, + [3368] = {.lex_state = 1342}, + [3369] = {.lex_state = 1342}, + [3370] = {.lex_state = 1342}, + [3371] = {.lex_state = 40, .external_lex_state = 11}, + [3372] = {.lex_state = 76}, + [3373] = {.lex_state = 76}, + [3374] = {.lex_state = 41}, + [3375] = {.lex_state = 41}, + [3376] = {.lex_state = 76}, + [3377] = {.lex_state = 76}, + [3378] = {.lex_state = 1342}, + [3379] = {.lex_state = 1342}, + [3380] = {.lex_state = 1342}, + [3381] = {.lex_state = 76}, + [3382] = {.lex_state = 40, .external_lex_state = 11}, + [3383] = {.lex_state = 76}, + [3384] = {.lex_state = 1342}, + [3385] = {.lex_state = 41}, + [3386] = {.lex_state = 37}, + [3387] = {.lex_state = 1342}, + [3388] = {.lex_state = 76}, + [3389] = {.lex_state = 1342}, + [3390] = {.lex_state = 41}, + [3391] = {.lex_state = 68, .external_lex_state = 18}, + [3392] = {.lex_state = 1342}, + [3393] = {.lex_state = 41}, + [3394] = {.lex_state = 76}, + [3395] = {.lex_state = 41}, + [3396] = {.lex_state = 41}, + [3397] = {.lex_state = 41}, + [3398] = {.lex_state = 1342}, + [3399] = {.lex_state = 1342}, + [3400] = {.lex_state = 1342}, + [3401] = {.lex_state = 41}, + [3402] = {.lex_state = 41}, + [3403] = {.lex_state = 1342}, + [3404] = {.lex_state = 1342}, + [3405] = {.lex_state = 68}, + [3406] = {.lex_state = 1342}, + [3407] = {.lex_state = 1342}, + [3408] = {.lex_state = 1342}, + [3409] = {.lex_state = 68}, + [3410] = {.lex_state = 1342}, + [3411] = {.lex_state = 1342}, + [3412] = {.lex_state = 39}, + [3413] = {.lex_state = 76}, + [3414] = {.lex_state = 1342}, + [3415] = {.lex_state = 1342}, + [3416] = {.lex_state = 66}, + [3417] = {.lex_state = 1342}, + [3418] = {.lex_state = 1342}, + [3419] = {.lex_state = 1342}, + [3420] = {.lex_state = 1342}, + [3421] = {.lex_state = 1342}, + [3422] = {.lex_state = 1342}, + [3423] = {.lex_state = 1342}, + [3424] = {.lex_state = 1342}, + [3425] = {.lex_state = 1342}, + [3426] = {.lex_state = 1342}, + [3427] = {.lex_state = 1342}, + [3428] = {.lex_state = 1342}, + [3429] = {.lex_state = 1342}, + [3430] = {.lex_state = 1342}, + [3431] = {.lex_state = 1342}, + [3432] = {.lex_state = 1342}, + [3433] = {.lex_state = 68}, + [3434] = {.lex_state = 1342}, + [3435] = {.lex_state = 1342}, + [3436] = {.lex_state = 41}, + [3437] = {.lex_state = 1342}, + [3438] = {.lex_state = 68}, + [3439] = {.lex_state = 68}, + [3440] = {.lex_state = 213}, + [3441] = {.lex_state = 39}, + [3442] = {.lex_state = 39}, + [3443] = {.lex_state = 1342}, + [3444] = {.lex_state = 1342}, + [3445] = {.lex_state = 213}, + [3446] = {.lex_state = 1342}, + [3447] = {.lex_state = 39}, + [3448] = {.lex_state = 1342}, + [3449] = {.lex_state = 39}, + [3450] = {.lex_state = 68}, + [3451] = {.lex_state = 68}, + [3452] = {.lex_state = 1342}, + [3453] = {.lex_state = 68}, + [3454] = {.lex_state = 213}, + [3455] = {.lex_state = 1342}, + [3456] = {.lex_state = 68}, + [3457] = {.lex_state = 1342}, + [3458] = {.lex_state = 39}, + [3459] = {.lex_state = 1342}, + [3460] = {.lex_state = 1342}, + [3461] = {.lex_state = 1342}, + [3462] = {.lex_state = 39}, + [3463] = {.lex_state = 1342}, + [3464] = {.lex_state = 68}, + [3465] = {.lex_state = 1342}, + [3466] = {.lex_state = 40, .external_lex_state = 11}, + [3467] = {.lex_state = 1342}, + [3468] = {.lex_state = 1342}, + [3469] = {.lex_state = 1342}, + [3470] = {.lex_state = 39}, + [3471] = {.lex_state = 1342}, + [3472] = {.lex_state = 68}, + [3473] = {.lex_state = 1342}, + [3474] = {.lex_state = 37}, + [3475] = {.lex_state = 1342}, + [3476] = {.lex_state = 66}, + [3477] = {.lex_state = 1342}, + [3478] = {.lex_state = 39}, + [3479] = {.lex_state = 1342}, + [3480] = {.lex_state = 1342}, + [3481] = {.lex_state = 1342}, + [3482] = {.lex_state = 68}, + [3483] = {.lex_state = 1342}, + [3484] = {.lex_state = 1342}, + [3485] = {.lex_state = 68}, + [3486] = {.lex_state = 1342}, + [3487] = {.lex_state = 1342}, + [3488] = {.lex_state = 1342}, + [3489] = {.lex_state = 39}, + [3490] = {.lex_state = 1342}, + [3491] = {.lex_state = 66}, + [3492] = {.lex_state = 39}, + [3493] = {.lex_state = 1342}, + [3494] = {.lex_state = 1342}, + [3495] = {.lex_state = 39}, + [3496] = {.lex_state = 39}, + [3497] = {.lex_state = 1342}, + [3498] = {.lex_state = 1342}, [3499] = {.lex_state = 37}, [3500] = {.lex_state = 37}, [3501] = {.lex_state = 37}, - [3502] = {.lex_state = 1329}, - [3503] = {.lex_state = 37}, + [3502] = {.lex_state = 76}, + [3503] = {.lex_state = 1342}, [3504] = {.lex_state = 37}, [3505] = {.lex_state = 37}, - [3506] = {.lex_state = 41, .external_lex_state = 17}, - [3507] = {.lex_state = 37}, + [3506] = {.lex_state = 37}, + [3507] = {.lex_state = 1342}, [3508] = {.lex_state = 37}, - [3509] = {.lex_state = 1329}, - [3510] = {.lex_state = 1329}, + [3509] = {.lex_state = 37}, + [3510] = {.lex_state = 37}, [3511] = {.lex_state = 37}, - [3512] = {.lex_state = 38, .external_lex_state = 17}, + [3512] = {.lex_state = 1342}, [3513] = {.lex_state = 37}, - [3514] = {.lex_state = 37}, - [3515] = {.lex_state = 37}, + [3514] = {.lex_state = 68}, + [3515] = {.lex_state = 1342}, [3516] = {.lex_state = 37}, - [3517] = {.lex_state = 37}, + [3517] = {.lex_state = 1342}, [3518] = {.lex_state = 37}, [3519] = {.lex_state = 37}, [3520] = {.lex_state = 37}, [3521] = {.lex_state = 37}, - [3522] = {.lex_state = 38, .external_lex_state = 17}, + [3522] = {.lex_state = 37}, [3523] = {.lex_state = 37}, [3524] = {.lex_state = 37}, [3525] = {.lex_state = 37}, [3526] = {.lex_state = 37}, - [3527] = {.lex_state = 37}, + [3527] = {.lex_state = 1342}, [3528] = {.lex_state = 37}, - [3529] = {.lex_state = 68}, + [3529] = {.lex_state = 37}, [3530] = {.lex_state = 37}, - [3531] = {.lex_state = 41, .external_lex_state = 17}, + [3531] = {.lex_state = 37}, [3532] = {.lex_state = 37}, - [3533] = {.lex_state = 68}, - [3534] = {.lex_state = 1329}, + [3533] = {.lex_state = 37}, + [3534] = {.lex_state = 37}, [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}, + [3536] = {.lex_state = 37}, + [3537] = {.lex_state = 38, .external_lex_state = 17}, + [3538] = {.lex_state = 68}, + [3539] = {.lex_state = 37}, + [3540] = {.lex_state = 76}, + [3541] = {.lex_state = 37}, + [3542] = {.lex_state = 37}, + [3543] = {.lex_state = 38, .external_lex_state = 17}, + [3544] = {.lex_state = 38, .external_lex_state = 17}, [3545] = {.lex_state = 37}, - [3546] = {.lex_state = 68}, + [3546] = {.lex_state = 37}, [3547] = {.lex_state = 68}, - [3548] = {.lex_state = 1329}, - [3549] = {.lex_state = 68}, - [3550] = {.lex_state = 37}, - [3551] = {.lex_state = 37}, + [3548] = {.lex_state = 37}, + [3549] = {.lex_state = 37}, + [3550] = {.lex_state = 1342}, + [3551] = {.lex_state = 1342}, [3552] = {.lex_state = 37}, - [3553] = {.lex_state = 37}, - [3554] = {.lex_state = 37}, + [3553] = {.lex_state = 68}, + [3554] = {.lex_state = 68}, [3555] = {.lex_state = 37}, - [3556] = {.lex_state = 68}, - [3557] = {.lex_state = 68}, - [3558] = {.lex_state = 37}, + [3556] = {.lex_state = 41, .external_lex_state = 17}, + [3557] = {.lex_state = 1342}, + [3558] = {.lex_state = 1342}, [3559] = {.lex_state = 37}, - [3560] = {.lex_state = 1329}, - [3561] = {.lex_state = 1329}, + [3560] = {.lex_state = 37}, + [3561] = {.lex_state = 41, .external_lex_state = 17}, [3562] = {.lex_state = 37}, [3563] = {.lex_state = 37}, - [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}, + [3564] = {.lex_state = 41, .external_lex_state = 17}, + [3565] = {.lex_state = 41, .external_lex_state = 17}, + [3566] = {.lex_state = 68}, + [3567] = {.lex_state = 1342}, + [3568] = {.lex_state = 37}, + [3569] = {.lex_state = 68}, + [3570] = {.lex_state = 68}, + [3571] = {.lex_state = 37}, + [3572] = {.lex_state = 37}, + [3573] = {.lex_state = 37}, + [3574] = {.lex_state = 38}, + [3575] = {.lex_state = 37}, + [3576] = {.lex_state = 68}, + [3577] = {.lex_state = 41, .external_lex_state = 17}, [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 = 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}, + [3580] = {.lex_state = 68}, + [3581] = {.lex_state = 41, .external_lex_state = 17}, + [3582] = {.lex_state = 1342}, + [3583] = {.lex_state = 1342}, + [3584] = {.lex_state = 68}, + [3585] = {.lex_state = 68}, + [3586] = {.lex_state = 1342}, + [3587] = {.lex_state = 1342}, + [3588] = {.lex_state = 37}, + [3589] = {.lex_state = 37}, + [3590] = {.lex_state = 1342}, + [3591] = {.lex_state = 1342}, + [3592] = {.lex_state = 1342}, + [3593] = {.lex_state = 1342}, + [3594] = {.lex_state = 1342}, + [3595] = {.lex_state = 68}, + [3596] = {.lex_state = 1342}, + [3597] = {.lex_state = 1342}, + [3598] = {.lex_state = 1342}, + [3599] = {.lex_state = 1342}, + [3600] = {.lex_state = 1342}, + [3601] = {.lex_state = 1342}, + [3602] = {.lex_state = 1342}, + [3603] = {.lex_state = 1342}, [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 = 1329}, - [3611] = {.lex_state = 1329}, + [3605] = {.lex_state = 1342}, + [3606] = {.lex_state = 1342}, + [3607] = {.lex_state = 1342}, + [3608] = {.lex_state = 37}, + [3609] = {.lex_state = 1342}, + [3610] = {.lex_state = 38}, + [3611] = {.lex_state = 38}, [3612] = {.lex_state = 37}, - [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 = 1329}, - [3631] = {.lex_state = 1329}, - [3632] = {.lex_state = 68}, + [3613] = {.lex_state = 191}, + [3614] = {.lex_state = 1342}, + [3615] = {.lex_state = 1342}, + [3616] = {.lex_state = 191}, + [3617] = {.lex_state = 1342, .external_lex_state = 11}, + [3618] = {.lex_state = 1342}, + [3619] = {.lex_state = 1342}, + [3620] = {.lex_state = 1342}, + [3621] = {.lex_state = 191}, + [3622] = {.lex_state = 1342}, + [3623] = {.lex_state = 1342}, + [3624] = {.lex_state = 38}, + [3625] = {.lex_state = 1342}, + [3626] = {.lex_state = 1342}, + [3627] = {.lex_state = 37}, + [3628] = {.lex_state = 1342}, + [3629] = {.lex_state = 1342}, + [3630] = {.lex_state = 191}, + [3631] = {.lex_state = 191}, + [3632] = {.lex_state = 1342}, [3633] = {.lex_state = 68}, - [3634] = {.lex_state = 1329}, - [3635] = {.lex_state = 1329}, - [3636] = {.lex_state = 68}, - [3637] = {.lex_state = 68}, - [3638] = {.lex_state = 68}, + [3634] = {.lex_state = 37}, + [3635] = {.lex_state = 1342}, + [3636] = {.lex_state = 41}, + [3637] = {.lex_state = 37}, + [3638] = {.lex_state = 1342}, [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}, + [3640] = {.lex_state = 37}, + [3641] = {.lex_state = 40}, + [3642] = {.lex_state = 68}, + [3643] = {.lex_state = 68}, + [3644] = {.lex_state = 68}, + [3645] = {.lex_state = 68}, + [3646] = {.lex_state = 68}, + [3647] = {.lex_state = 1342}, + [3648] = {.lex_state = 37}, + [3649] = {.lex_state = 68}, + [3650] = {.lex_state = 38}, + [3651] = {.lex_state = 1342}, + [3652] = {.lex_state = 1342}, + [3653] = {.lex_state = 68}, + [3654] = {.lex_state = 1342}, + [3655] = {.lex_state = 191}, + [3656] = {.lex_state = 38, .external_lex_state = 17}, + [3657] = {.lex_state = 40}, + [3658] = {.lex_state = 1342}, + [3659] = {.lex_state = 37}, + [3660] = {.lex_state = 41}, + [3661] = {.lex_state = 37}, + [3662] = {.lex_state = 68}, [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}, + [3664] = {.lex_state = 191}, + [3665] = {.lex_state = 1342}, + [3666] = {.lex_state = 37}, + [3667] = {.lex_state = 1342}, + [3668] = {.lex_state = 1342}, + [3669] = {.lex_state = 1342}, + [3670] = {.lex_state = 1342}, + [3671] = {.lex_state = 1342}, + [3672] = {.lex_state = 1342}, + [3673] = {.lex_state = 1342}, + [3674] = {.lex_state = 76}, + [3675] = {.lex_state = 37}, + [3676] = {.lex_state = 68}, + [3677] = {.lex_state = 37}, [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 = 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}, + [3679] = {.lex_state = 191}, + [3680] = {.lex_state = 1342}, + [3681] = {.lex_state = 1342, .external_lex_state = 11}, + [3682] = {.lex_state = 1342}, + [3683] = {.lex_state = 1342}, + [3684] = {.lex_state = 1342}, + [3685] = {.lex_state = 68}, + [3686] = {.lex_state = 68}, + [3687] = {.lex_state = 37}, + [3688] = {.lex_state = 1342}, + [3689] = {.lex_state = 37}, + [3690] = {.lex_state = 1342}, + [3691] = {.lex_state = 40}, + [3692] = {.lex_state = 191}, + [3693] = {.lex_state = 1342}, + [3694] = {.lex_state = 1342}, + [3695] = {.lex_state = 68}, + [3696] = {.lex_state = 1342}, + [3697] = {.lex_state = 68}, + [3698] = {.lex_state = 68}, + [3699] = {.lex_state = 1342}, + [3700] = {.lex_state = 1342}, + [3701] = {.lex_state = 37}, + [3702] = {.lex_state = 1342}, + [3703] = {.lex_state = 1342}, + [3704] = {.lex_state = 1342}, + [3705] = {.lex_state = 1342}, + [3706] = {.lex_state = 1342}, + [3707] = {.lex_state = 1342}, + [3708] = {.lex_state = 1342}, + [3709] = {.lex_state = 1342}, + [3710] = {.lex_state = 191}, + [3711] = {.lex_state = 68}, + [3712] = {.lex_state = 1342}, + [3713] = {.lex_state = 37}, + [3714] = {.lex_state = 1342}, + [3715] = {.lex_state = 1342}, + [3716] = {.lex_state = 68}, + [3717] = {.lex_state = 37}, + [3718] = {.lex_state = 68}, [3719] = {.lex_state = 68}, - [3720] = {.lex_state = 1329}, - [3721] = {.lex_state = 1329}, + [3720] = {.lex_state = 37}, + [3721] = {.lex_state = 37}, [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 = 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 = 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}, + [3724] = {.lex_state = 1342}, + [3725] = {.lex_state = 1342}, + [3726] = {.lex_state = 1342}, + [3727] = {.lex_state = 1342}, + [3728] = {.lex_state = 1342}, + [3729] = {.lex_state = 37}, + [3730] = {.lex_state = 1342}, + [3731] = {.lex_state = 1342}, + [3732] = {.lex_state = 1342}, + [3733] = {.lex_state = 68}, + [3734] = {.lex_state = 68}, + [3735] = {.lex_state = 68}, + [3736] = {.lex_state = 68}, + [3737] = {.lex_state = 1342}, + [3738] = {.lex_state = 1342}, + [3739] = {.lex_state = 68}, + [3740] = {.lex_state = 1342}, + [3741] = {.lex_state = 68}, + [3742] = {.lex_state = 1342}, + [3743] = {.lex_state = 68}, + [3744] = {.lex_state = 1342}, + [3745] = {.lex_state = 1342}, + [3746] = {.lex_state = 1342}, + [3747] = {.lex_state = 1342}, + [3748] = {.lex_state = 1342}, + [3749] = {.lex_state = 1342}, + [3750] = {.lex_state = 37}, + [3751] = {.lex_state = 1342}, + [3752] = {.lex_state = 37}, + [3753] = {.lex_state = 1342}, + [3754] = {.lex_state = 1342}, + [3755] = {.lex_state = 1342}, + [3756] = {.lex_state = 37}, + [3757] = {.lex_state = 37}, + [3758] = {.lex_state = 1342}, + [3759] = {.lex_state = 68}, + [3760] = {.lex_state = 1342}, + [3761] = {.lex_state = 1342}, + [3762] = {.lex_state = 1342}, + [3763] = {.lex_state = 1342}, + [3764] = {.lex_state = 1342}, + [3765] = {.lex_state = 68}, + [3766] = {.lex_state = 1342}, + [3767] = {.lex_state = 1342}, + [3768] = {.lex_state = 68}, [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}, + [3771] = {.lex_state = 68}, + [3772] = {.lex_state = 1342}, + [3773] = {.lex_state = 1342}, + [3774] = {.lex_state = 1342}, + [3775] = {.lex_state = 1342}, + [3776] = {.lex_state = 37}, + [3777] = {.lex_state = 1342}, + [3778] = {.lex_state = 1342}, + [3779] = {.lex_state = 1342}, + [3780] = {.lex_state = 1342}, + [3781] = {.lex_state = 1342}, + [3782] = {.lex_state = 41}, + [3783] = {.lex_state = 1342}, + [3784] = {.lex_state = 1342}, + [3785] = {.lex_state = 1342}, + [3786] = {.lex_state = 1342}, + [3787] = {.lex_state = 68}, + [3788] = {.lex_state = 68}, + [3789] = {.lex_state = 1342}, + [3790] = {.lex_state = 1342}, [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}, + [3792] = {.lex_state = 1342}, + [3793] = {.lex_state = 1342}, + [3794] = {.lex_state = 37}, + [3795] = {.lex_state = 37}, + [3796] = {.lex_state = 1342}, + [3797] = {.lex_state = 1342}, + [3798] = {.lex_state = 1342}, + [3799] = {.lex_state = 1342}, + [3800] = {.lex_state = 41}, + [3801] = {.lex_state = 1342}, + [3802] = {.lex_state = 37}, + [3803] = {.lex_state = 1342}, + [3804] = {.lex_state = 37}, + [3805] = {.lex_state = 1342}, + [3806] = {.lex_state = 1342}, + [3807] = {.lex_state = 1342}, + [3808] = {.lex_state = 37}, + [3809] = {.lex_state = 1342}, + [3810] = {.lex_state = 1342}, [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}, + [3812] = {.lex_state = 1342}, + [3813] = {.lex_state = 1342}, + [3814] = {.lex_state = 191}, + [3815] = {.lex_state = 41}, + [3816] = {.lex_state = 1342}, + [3817] = {.lex_state = 1342}, + [3818] = {.lex_state = 37}, + [3819] = {.lex_state = 1342}, + [3820] = {.lex_state = 37}, + [3821] = {.lex_state = 1342}, + [3822] = {.lex_state = 37}, + [3823] = {.lex_state = 1342}, + [3824] = {.lex_state = 1342}, + [3825] = {.lex_state = 1342}, + [3826] = {.lex_state = 1342}, + [3827] = {.lex_state = 1342}, + [3828] = {.lex_state = 1342}, + [3829] = {.lex_state = 1342}, [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}, + [3833] = {.lex_state = 1342}, + [3834] = {.lex_state = 1342}, + [3835] = {.lex_state = 68}, + [3836] = {.lex_state = 68}, + [3837] = {.lex_state = 1342}, + [3838] = {.lex_state = 68}, + [3839] = {.lex_state = 1342}, + [3840] = {.lex_state = 1342}, + [3841] = {.lex_state = 68}, + [3842] = {.lex_state = 1342}, + [3843] = {.lex_state = 1342}, + [3844] = {.lex_state = 37}, + [3845] = {.lex_state = 1342}, + [3846] = {.lex_state = 1342}, + [3847] = {.lex_state = 1342}, + [3848] = {.lex_state = 68}, + [3849] = {.lex_state = 68}, + [3850] = {.lex_state = 68}, + [3851] = {.lex_state = 1342}, + [3852] = {.lex_state = 138}, [3853] = {.lex_state = 138}, - [3854] = {.lex_state = 1329}, - [3855] = {.lex_state = 77}, - [3856] = {.lex_state = 1329}, + [3854] = {.lex_state = 1342}, + [3855] = {.lex_state = 1342}, + [3856] = {.lex_state = 1342}, [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}, + [3858] = {.lex_state = 1342}, + [3859] = {.lex_state = 1342}, + [3860] = {.lex_state = 37}, + [3861] = {.lex_state = 138}, + [3862] = {.lex_state = 1342}, + [3863] = {.lex_state = 1342}, + [3864] = {.lex_state = 138}, + [3865] = {.lex_state = 1342}, + [3866] = {.lex_state = 1342}, + [3867] = {.lex_state = 37}, + [3868] = {.lex_state = 37}, + [3869] = {.lex_state = 1342}, + [3870] = {.lex_state = 1342}, + [3871] = {.lex_state = 1342}, + [3872] = {.lex_state = 1342}, + [3873] = {.lex_state = 1342}, + [3874] = {.lex_state = 1342}, + [3875] = {.lex_state = 77}, + [3876] = {.lex_state = 1342}, [3877] = {.lex_state = 138}, - [3878] = {.lex_state = 77}, - [3879] = {.lex_state = 1329}, - [3880] = {.lex_state = 138}, + [3878] = {.lex_state = 138}, + [3879] = {.lex_state = 1342, .external_lex_state = 11}, + [3880] = {.lex_state = 1342}, [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}, + [3882] = {.lex_state = 1342}, + [3883] = {.lex_state = 1342}, + [3884] = {.lex_state = 1342, .external_lex_state = 18}, + [3885] = {.lex_state = 1342}, + [3886] = {.lex_state = 1342}, + [3887] = {.lex_state = 138}, + [3888] = {.lex_state = 1342}, + [3889] = {.lex_state = 1342}, + [3890] = {.lex_state = 1342}, + [3891] = {.lex_state = 37}, + [3892] = {.lex_state = 37}, + [3893] = {.lex_state = 1342}, + [3894] = {.lex_state = 37}, + [3895] = {.lex_state = 37}, + [3896] = {.lex_state = 1342}, + [3897] = {.lex_state = 1342}, + [3898] = {.lex_state = 138}, + [3899] = {.lex_state = 37}, + [3900] = {.lex_state = 1342}, + [3901] = {.lex_state = 77}, + [3902] = {.lex_state = 138}, + [3903] = {.lex_state = 1342}, + [3904] = {.lex_state = 1342}, + [3905] = {.lex_state = 138}, + [3906] = {.lex_state = 1342}, + [3907] = {.lex_state = 37}, + [3908] = {.lex_state = 38}, + [3909] = {.lex_state = 1342}, + [3910] = {.lex_state = 213}, + [3911] = {.lex_state = 1342}, + [3912] = {.lex_state = 37}, + [3913] = {.lex_state = 1342}, + [3914] = {.lex_state = 1342}, + [3915] = {.lex_state = 213}, + [3916] = {.lex_state = 213}, + [3917] = {.lex_state = 1342}, + [3918] = {.lex_state = 1342}, + [3919] = {.lex_state = 1342}, + [3920] = {.lex_state = 1342, .external_lex_state = 18}, + [3921] = {.lex_state = 1342}, + [3922] = {.lex_state = 138}, + [3923] = {.lex_state = 1342}, + [3924] = {.lex_state = 1342}, + [3925] = {.lex_state = 1342}, + [3926] = {.lex_state = 1342}, + [3927] = {.lex_state = 138}, + [3928] = {.lex_state = 1342}, + [3929] = {.lex_state = 1342}, + [3930] = {.lex_state = 138}, + [3931] = {.lex_state = 1342}, + [3932] = {.lex_state = 207}, + [3933] = {.lex_state = 1342}, + [3934] = {.lex_state = 1342}, + [3935] = {.lex_state = 77}, + [3936] = {.lex_state = 1342}, + [3937] = {.lex_state = 1342}, + [3938] = {.lex_state = 1342}, + [3939] = {.lex_state = 1342}, + [3940] = {.lex_state = 1342}, + [3941] = {.lex_state = 1342}, + [3942] = {.lex_state = 38}, + [3943] = {.lex_state = 1342}, + [3944] = {.lex_state = 1342}, + [3945] = {.lex_state = 1342}, + [3946] = {.lex_state = 1342}, + [3947] = {.lex_state = 1342}, + [3948] = {.lex_state = 1342}, + [3949] = {.lex_state = 1342}, + [3950] = {.lex_state = 1342}, + [3951] = {.lex_state = 1342}, + [3952] = {.lex_state = 1342}, + [3953] = {.lex_state = 1342}, + [3954] = {.lex_state = 1342}, + [3955] = {.lex_state = 1342}, + [3956] = {.lex_state = 1342}, + [3957] = {.lex_state = 1342}, + [3958] = {.lex_state = 1342}, + [3959] = {.lex_state = 1342}, + [3960] = {.lex_state = 1342}, + [3961] = {.lex_state = 1342}, + [3962] = {.lex_state = 1342}, + [3963] = {.lex_state = 1342}, + [3964] = {.lex_state = 1342}, + [3965] = {.lex_state = 1342}, + [3966] = {.lex_state = 1342}, + [3967] = {.lex_state = 1342}, + [3968] = {.lex_state = 1342}, + [3969] = {.lex_state = 1342}, + [3970] = {.lex_state = 1342}, + [3971] = {.lex_state = 38, .external_lex_state = 11}, + [3972] = {.lex_state = 1342}, + [3973] = {.lex_state = 1342}, + [3974] = {.lex_state = 1342}, + [3975] = {.lex_state = 38, .external_lex_state = 11}, + [3976] = {.lex_state = 1342}, + [3977] = {.lex_state = 1342}, + [3978] = {.lex_state = 1342}, + [3979] = {.lex_state = 1342}, + [3980] = {.lex_state = 1342}, + [3981] = {.lex_state = 1342}, + [3982] = {.lex_state = 1342}, + [3983] = {.lex_state = 1342}, + [3984] = {.lex_state = 1342}, + [3985] = {.lex_state = 1342}, + [3986] = {.lex_state = 1342}, + [3987] = {.lex_state = 1342}, + [3988] = {.lex_state = 1342}, + [3989] = {.lex_state = 1342}, + [3990] = {.lex_state = 1342}, + [3991] = {.lex_state = 1342}, + [3992] = {.lex_state = 1342}, + [3993] = {.lex_state = 1342}, + [3994] = {.lex_state = 1342}, + [3995] = {.lex_state = 1342}, + [3996] = {.lex_state = 1342}, + [3997] = {.lex_state = 1342}, + [3998] = {.lex_state = 1342}, + [3999] = {.lex_state = 1342}, + [4000] = {.lex_state = 1342}, + [4001] = {.lex_state = 1342}, + [4002] = {.lex_state = 38, .external_lex_state = 11}, + [4003] = {.lex_state = 1342, .external_lex_state = 16}, + [4004] = {.lex_state = 38}, + [4005] = {.lex_state = 1342, .external_lex_state = 11}, + [4006] = {.lex_state = 40}, + [4007] = {.lex_state = 30}, + [4008] = {.lex_state = 38}, [4009] = {.lex_state = 38}, - [4010] = {.lex_state = 38}, + [4010] = {.lex_state = 210}, [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}, + [4012] = {.lex_state = 214}, + [4013] = {.lex_state = 77}, + [4014] = {.lex_state = 38}, + [4015] = {.lex_state = 38}, + [4016] = {.lex_state = 1342, .external_lex_state = 11}, [4017] = {.lex_state = 38}, [4018] = {.lex_state = 30}, [4019] = {.lex_state = 38}, - [4020] = {.lex_state = 30}, - [4021] = {.lex_state = 39}, - [4022] = {.lex_state = 30}, - [4023] = {.lex_state = 38}, + [4020] = {.lex_state = 214}, + [4021] = {.lex_state = 1342}, + [4022] = {.lex_state = 38}, + [4023] = {.lex_state = 210}, [4024] = {.lex_state = 38}, [4025] = {.lex_state = 38}, - [4026] = {.lex_state = 210}, + [4026] = {.lex_state = 1342, .external_lex_state = 16}, [4027] = {.lex_state = 38}, [4028] = {.lex_state = 38}, - [4029] = {.lex_state = 38}, - [4030] = {.lex_state = 38}, + [4029] = {.lex_state = 210}, + [4030] = {.lex_state = 30}, [4031] = {.lex_state = 38}, - [4032] = {.lex_state = 38}, + [4032] = {.lex_state = 210}, [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}, + [4034] = {.lex_state = 40}, + [4035] = {.lex_state = 38}, + [4036] = {.lex_state = 38}, + [4037] = {.lex_state = 38}, + [4038] = {.lex_state = 38}, + [4039] = {.lex_state = 1342, .external_lex_state = 11}, + [4040] = {.lex_state = 40}, + [4041] = {.lex_state = 1342, .external_lex_state = 16}, + [4042] = {.lex_state = 214}, + [4043] = {.lex_state = 1342, .external_lex_state = 16}, + [4044] = {.lex_state = 40}, + [4045] = {.lex_state = 38}, + [4046] = {.lex_state = 210}, + [4047] = {.lex_state = 38}, + [4048] = {.lex_state = 38}, + [4049] = {.lex_state = 1342, .external_lex_state = 11}, + [4050] = {.lex_state = 40}, + [4051] = {.lex_state = 1342, .external_lex_state = 16}, + [4052] = {.lex_state = 38}, + [4053] = {.lex_state = 30}, + [4054] = {.lex_state = 30}, + [4055] = {.lex_state = 1342, .external_lex_state = 11}, + [4056] = {.lex_state = 1342}, + [4057] = {.lex_state = 206}, + [4058] = {.lex_state = 1342}, + [4059] = {.lex_state = 1342}, + [4060] = {.lex_state = 1342}, + [4061] = {.lex_state = 40}, + [4062] = {.lex_state = 1342}, + [4063] = {.lex_state = 1342}, + [4064] = {.lex_state = 1342}, + [4065] = {.lex_state = 206}, + [4066] = {.lex_state = 1342, .external_lex_state = 11}, + [4067] = {.lex_state = 206}, + [4068] = {.lex_state = 206}, + [4069] = {.lex_state = 1342}, + [4070] = {.lex_state = 1342}, + [4071] = {.lex_state = 1342}, + [4072] = {.lex_state = 1342}, + [4073] = {.lex_state = 1342}, + [4074] = {.lex_state = 206}, + [4075] = {.lex_state = 1342}, + [4076] = {.lex_state = 1342}, + [4077] = {.lex_state = 1342}, + [4078] = {.lex_state = 1342, .external_lex_state = 11}, + [4079] = {.lex_state = 206}, + [4080] = {.lex_state = 1342}, + [4081] = {.lex_state = 1342}, + [4082] = {.lex_state = 206}, + [4083] = {.lex_state = 1342}, + [4084] = {.lex_state = 206}, + [4085] = {.lex_state = 1342}, + [4086] = {.lex_state = 1342}, + [4087] = {.lex_state = 1342}, + [4088] = {.lex_state = 206}, + [4089] = {.lex_state = 206}, + [4090] = {.lex_state = 1342}, + [4091] = {.lex_state = 1342}, + [4092] = {.lex_state = 1342}, + [4093] = {.lex_state = 206}, + [4094] = {.lex_state = 1342}, [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}, + [4096] = {.lex_state = 1342}, + [4097] = {.lex_state = 1342}, + [4098] = {.lex_state = 1342}, + [4099] = {.lex_state = 206}, + [4100] = {.lex_state = 206}, + [4101] = {.lex_state = 1342}, + [4102] = {.lex_state = 1342}, + [4103] = {.lex_state = 1342}, + [4104] = {.lex_state = 1342}, + [4105] = {.lex_state = 38, .external_lex_state = 11}, + [4106] = {.lex_state = 1342}, + [4107] = {.lex_state = 1342}, [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}, + [4109] = {.lex_state = 1342}, + [4110] = {.lex_state = 1342}, + [4111] = {.lex_state = 1342}, + [4112] = {.lex_state = 1342, .external_lex_state = 11}, + [4113] = {.lex_state = 1342}, + [4114] = {.lex_state = 1342}, + [4115] = {.lex_state = 206}, [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}, + [4117] = {.lex_state = 1342}, + [4118] = {.lex_state = 1342}, + [4119] = {.lex_state = 1342}, + [4120] = {.lex_state = 1342}, + [4121] = {.lex_state = 1342, .external_lex_state = 11}, + [4122] = {.lex_state = 1342}, + [4123] = {.lex_state = 1342, .external_lex_state = 11}, + [4124] = {.lex_state = 1342, .external_lex_state = 11}, + [4125] = {.lex_state = 1342}, + [4126] = {.lex_state = 1342}, + [4127] = {.lex_state = 1342}, + [4128] = {.lex_state = 1342}, + [4129] = {.lex_state = 206}, + [4130] = {.lex_state = 1342}, + [4131] = {.lex_state = 1342}, + [4132] = {.lex_state = 1342}, + [4133] = {.lex_state = 206}, + [4134] = {.lex_state = 206}, + [4135] = {.lex_state = 1342, .external_lex_state = 11}, + [4136] = {.lex_state = 206}, [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}, + [4138] = {.lex_state = 1342}, + [4139] = {.lex_state = 1342}, + [4140] = {.lex_state = 206}, + [4141] = {.lex_state = 206}, + [4142] = {.lex_state = 1342}, + [4143] = {.lex_state = 1342}, + [4144] = {.lex_state = 1342}, + [4145] = {.lex_state = 1342}, + [4146] = {.lex_state = 38}, + [4147] = {.lex_state = 1342}, + [4148] = {.lex_state = 1342}, + [4149] = {.lex_state = 1342}, + [4150] = {.lex_state = 1342}, + [4151] = {.lex_state = 1342}, + [4152] = {.lex_state = 1342}, + [4153] = {.lex_state = 1342, .external_lex_state = 11}, + [4154] = {.lex_state = 1342}, + [4155] = {.lex_state = 1342}, + [4156] = {.lex_state = 1342}, + [4157] = {.lex_state = 1342}, + [4158] = {.lex_state = 206}, + [4159] = {.lex_state = 1342}, + [4160] = {.lex_state = 1342, .external_lex_state = 11}, + [4161] = {.lex_state = 1342}, [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}, + [4163] = {.lex_state = 1342}, + [4164] = {.lex_state = 206}, + [4165] = {.lex_state = 1342}, + [4166] = {.lex_state = 1342}, + [4167] = {.lex_state = 1342}, + [4168] = {.lex_state = 1342}, + [4169] = {.lex_state = 1342}, + [4170] = {.lex_state = 1342}, + [4171] = {.lex_state = 206}, + [4172] = {.lex_state = 1342}, + [4173] = {.lex_state = 206}, + [4174] = {.lex_state = 1342}, [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}, + [4176] = {.lex_state = 1342}, + [4177] = {.lex_state = 1342}, + [4178] = {.lex_state = 1342}, + [4179] = {.lex_state = 1342}, + [4180] = {.lex_state = 1342}, + [4181] = {.lex_state = 38}, + [4182] = {.lex_state = 1342}, + [4183] = {.lex_state = 206}, + [4184] = {.lex_state = 1342}, + [4185] = {.lex_state = 206}, + [4186] = {.lex_state = 1342}, + [4187] = {.lex_state = 1342}, + [4188] = {.lex_state = 1342}, + [4189] = {.lex_state = 1342}, + [4190] = {.lex_state = 1342}, + [4191] = {.lex_state = 1342}, + [4192] = {.lex_state = 1342}, + [4193] = {.lex_state = 1342}, + [4194] = {.lex_state = 1342}, + [4195] = {.lex_state = 206}, + [4196] = {.lex_state = 40}, + [4197] = {.lex_state = 206}, + [4198] = {.lex_state = 1342}, + [4199] = {.lex_state = 1342, .external_lex_state = 11}, + [4200] = {.lex_state = 206}, + [4201] = {.lex_state = 1342}, + [4202] = {.lex_state = 1342}, + [4203] = {.lex_state = 206}, + [4204] = {.lex_state = 37}, + [4205] = {.lex_state = 1342}, + [4206] = {.lex_state = 1342}, + [4207] = {.lex_state = 1342}, + [4208] = {.lex_state = 206}, + [4209] = {.lex_state = 1342}, + [4210] = {.lex_state = 1342}, + [4211] = {.lex_state = 1342}, + [4212] = {.lex_state = 1342}, + [4213] = {.lex_state = 40}, + [4214] = {.lex_state = 206}, [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}, + [4216] = {.lex_state = 1342}, + [4217] = {.lex_state = 40}, + [4218] = {.lex_state = 1342}, + [4219] = {.lex_state = 1342}, + [4220] = {.lex_state = 1342}, + [4221] = {.lex_state = 1342}, + [4222] = {.lex_state = 1342}, + [4223] = {.lex_state = 1342}, + [4224] = {.lex_state = 1342}, + [4225] = {.lex_state = 1342}, + [4226] = {.lex_state = 1342, .external_lex_state = 11}, + [4227] = {.lex_state = 1342}, + [4228] = {.lex_state = 1342}, + [4229] = {.lex_state = 206}, [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 = 1329, .external_lex_state = 11}, - [4541] = {.lex_state = 40}, - [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}, + [4231] = {.lex_state = 1342}, + [4232] = {.lex_state = 1342}, + [4233] = {.lex_state = 1342}, + [4234] = {.lex_state = 1342}, + [4235] = {.lex_state = 1342}, + [4236] = {.lex_state = 1342}, + [4237] = {.lex_state = 38}, + [4238] = {.lex_state = 1342}, + [4239] = {.lex_state = 1342}, + [4240] = {.lex_state = 1342}, + [4241] = {.lex_state = 1342}, + [4242] = {.lex_state = 1342}, + [4243] = {.lex_state = 1342}, + [4244] = {.lex_state = 1342}, + [4245] = {.lex_state = 206}, + [4246] = {.lex_state = 206}, + [4247] = {.lex_state = 1342}, + [4248] = {.lex_state = 1342}, + [4249] = {.lex_state = 1342}, + [4250] = {.lex_state = 1342}, + [4251] = {.lex_state = 1342}, + [4252] = {.lex_state = 1342}, + [4253] = {.lex_state = 1342}, + [4254] = {.lex_state = 1342}, + [4255] = {.lex_state = 1342}, + [4256] = {.lex_state = 1342}, + [4257] = {.lex_state = 1342}, + [4258] = {.lex_state = 1342}, + [4259] = {.lex_state = 40}, + [4260] = {.lex_state = 1342}, + [4261] = {.lex_state = 1342}, + [4262] = {.lex_state = 206}, + [4263] = {.lex_state = 206}, + [4264] = {.lex_state = 1342}, + [4265] = {.lex_state = 1342}, + [4266] = {.lex_state = 1342}, + [4267] = {.lex_state = 1342}, + [4268] = {.lex_state = 1342}, + [4269] = {.lex_state = 1342}, + [4270] = {.lex_state = 1342}, + [4271] = {.lex_state = 1342}, + [4272] = {.lex_state = 1342}, + [4273] = {.lex_state = 1342}, + [4274] = {.lex_state = 1342}, + [4275] = {.lex_state = 1342}, + [4276] = {.lex_state = 40, .external_lex_state = 11}, + [4277] = {.lex_state = 40}, + [4278] = {.lex_state = 1342}, + [4279] = {.lex_state = 1342}, + [4280] = {.lex_state = 1342}, + [4281] = {.lex_state = 1342}, + [4282] = {.lex_state = 1342}, + [4283] = {.lex_state = 1342}, + [4284] = {.lex_state = 1342}, + [4285] = {.lex_state = 1342}, + [4286] = {.lex_state = 1342}, + [4287] = {.lex_state = 1342}, + [4288] = {.lex_state = 68}, + [4289] = {.lex_state = 30, .external_lex_state = 7}, + [4290] = {.lex_state = 1342}, + [4291] = {.lex_state = 1342}, + [4292] = {.lex_state = 68, .external_lex_state = 11}, + [4293] = {.lex_state = 1342}, + [4294] = {.lex_state = 1342}, + [4295] = {.lex_state = 1342}, + [4296] = {.lex_state = 1342}, + [4297] = {.lex_state = 40}, + [4298] = {.lex_state = 1342}, + [4299] = {.lex_state = 40, .external_lex_state = 11}, + [4300] = {.lex_state = 1342}, + [4301] = {.lex_state = 1342}, + [4302] = {.lex_state = 1342}, + [4303] = {.lex_state = 1342}, + [4304] = {.lex_state = 40}, + [4305] = {.lex_state = 1342}, + [4306] = {.lex_state = 1342}, + [4307] = {.lex_state = 1342}, + [4308] = {.lex_state = 1342}, + [4309] = {.lex_state = 1342}, + [4310] = {.lex_state = 1342}, + [4311] = {.lex_state = 1342}, + [4312] = {.lex_state = 1342}, + [4313] = {.lex_state = 1342}, + [4314] = {.lex_state = 1342}, + [4315] = {.lex_state = 1342}, + [4316] = {.lex_state = 1342}, + [4317] = {.lex_state = 1342}, + [4318] = {.lex_state = 1342}, + [4319] = {.lex_state = 1342}, + [4320] = {.lex_state = 1342}, + [4321] = {.lex_state = 1342}, + [4322] = {.lex_state = 138}, + [4323] = {.lex_state = 68}, + [4324] = {.lex_state = 205}, + [4325] = {.lex_state = 38}, + [4326] = {.lex_state = 1342}, + [4327] = {.lex_state = 1342}, + [4328] = {.lex_state = 40}, + [4329] = {.lex_state = 1342}, + [4330] = {.lex_state = 1342}, + [4331] = {.lex_state = 1342}, + [4332] = {.lex_state = 38}, + [4333] = {.lex_state = 1342}, + [4334] = {.lex_state = 1342}, + [4335] = {.lex_state = 1342}, + [4336] = {.lex_state = 1342}, + [4337] = {.lex_state = 40}, + [4338] = {.lex_state = 1342}, + [4339] = {.lex_state = 1342}, + [4340] = {.lex_state = 1342}, + [4341] = {.lex_state = 1342}, + [4342] = {.lex_state = 1342}, + [4343] = {.lex_state = 1342}, + [4344] = {.lex_state = 1342}, + [4345] = {.lex_state = 1342}, + [4346] = {.lex_state = 1342}, + [4347] = {.lex_state = 1342}, + [4348] = {.lex_state = 1342}, + [4349] = {.lex_state = 1342}, + [4350] = {.lex_state = 1342}, + [4351] = {.lex_state = 68, .external_lex_state = 11}, + [4352] = {.lex_state = 68}, + [4353] = {.lex_state = 1342}, + [4354] = {.lex_state = 1342}, + [4355] = {.lex_state = 1342}, + [4356] = {.lex_state = 68}, + [4357] = {.lex_state = 1342}, + [4358] = {.lex_state = 1342}, + [4359] = {.lex_state = 1342}, + [4360] = {.lex_state = 40}, + [4361] = {.lex_state = 1342}, + [4362] = {.lex_state = 1342}, + [4363] = {.lex_state = 1342}, + [4364] = {.lex_state = 1342}, + [4365] = {.lex_state = 1342}, + [4366] = {.lex_state = 1342}, + [4367] = {.lex_state = 1342}, + [4368] = {.lex_state = 1342}, + [4369] = {.lex_state = 1342}, + [4370] = {.lex_state = 1342}, + [4371] = {.lex_state = 1342}, + [4372] = {.lex_state = 68}, + [4373] = {.lex_state = 1342}, + [4374] = {.lex_state = 40}, + [4375] = {.lex_state = 1342}, + [4376] = {.lex_state = 1342}, + [4377] = {.lex_state = 1342}, + [4378] = {.lex_state = 1342}, + [4379] = {.lex_state = 1342}, + [4380] = {.lex_state = 40}, + [4381] = {.lex_state = 1342}, + [4382] = {.lex_state = 1342}, + [4383] = {.lex_state = 40}, + [4384] = {.lex_state = 1342}, + [4385] = {.lex_state = 1342}, + [4386] = {.lex_state = 1342}, + [4387] = {.lex_state = 214}, + [4388] = {.lex_state = 1342}, + [4389] = {.lex_state = 1342}, + [4390] = {.lex_state = 214}, + [4391] = {.lex_state = 207}, + [4392] = {.lex_state = 1342}, + [4393] = {.lex_state = 1342}, + [4394] = {.lex_state = 1342}, + [4395] = {.lex_state = 1342}, + [4396] = {.lex_state = 40}, + [4397] = {.lex_state = 1342}, + [4398] = {.lex_state = 1342}, + [4399] = {.lex_state = 1342}, + [4400] = {.lex_state = 1342}, + [4401] = {.lex_state = 1342}, + [4402] = {.lex_state = 1342}, + [4403] = {.lex_state = 1342}, + [4404] = {.lex_state = 1342}, + [4405] = {.lex_state = 1342}, + [4406] = {.lex_state = 1342}, + [4407] = {.lex_state = 1342}, + [4408] = {.lex_state = 1342}, + [4409] = {.lex_state = 1342}, + [4410] = {.lex_state = 1342}, + [4411] = {.lex_state = 1342}, + [4412] = {.lex_state = 1342}, + [4413] = {.lex_state = 1342}, + [4414] = {.lex_state = 1342}, + [4415] = {.lex_state = 68}, + [4416] = {.lex_state = 1342}, + [4417] = {.lex_state = 1342}, + [4418] = {.lex_state = 1342}, + [4419] = {.lex_state = 1342}, + [4420] = {.lex_state = 68, .external_lex_state = 11}, + [4421] = {.lex_state = 1342}, + [4422] = {.lex_state = 1342}, + [4423] = {.lex_state = 1342}, + [4424] = {.lex_state = 1342}, + [4425] = {.lex_state = 1342}, + [4426] = {.lex_state = 1342}, + [4427] = {.lex_state = 38}, + [4428] = {.lex_state = 1342}, + [4429] = {.lex_state = 1342}, + [4430] = {.lex_state = 30, .external_lex_state = 7}, + [4431] = {.lex_state = 1342}, + [4432] = {.lex_state = 1342}, + [4433] = {.lex_state = 1342}, + [4434] = {.lex_state = 1342}, + [4435] = {.lex_state = 1342}, + [4436] = {.lex_state = 1342}, + [4437] = {.lex_state = 1342}, + [4438] = {.lex_state = 1342}, + [4439] = {.lex_state = 68}, + [4440] = {.lex_state = 1342}, + [4441] = {.lex_state = 1342}, + [4442] = {.lex_state = 1342}, + [4443] = {.lex_state = 1342}, + [4444] = {.lex_state = 1342}, + [4445] = {.lex_state = 1342}, + [4446] = {.lex_state = 1342}, + [4447] = {.lex_state = 1342}, + [4448] = {.lex_state = 1342}, + [4449] = {.lex_state = 1342}, + [4450] = {.lex_state = 1342}, + [4451] = {.lex_state = 68, .external_lex_state = 11}, + [4452] = {.lex_state = 1342}, + [4453] = {.lex_state = 1342}, + [4454] = {.lex_state = 1342}, + [4455] = {.lex_state = 1342}, + [4456] = {.lex_state = 1342}, + [4457] = {.lex_state = 1342}, + [4458] = {.lex_state = 1342}, + [4459] = {.lex_state = 1342}, + [4460] = {.lex_state = 1342}, + [4461] = {.lex_state = 38}, + [4462] = {.lex_state = 1342}, + [4463] = {.lex_state = 1342}, + [4464] = {.lex_state = 1342}, + [4465] = {.lex_state = 1342}, + [4466] = {.lex_state = 38}, + [4467] = {.lex_state = 1342}, + [4468] = {.lex_state = 209}, + [4469] = {.lex_state = 1342}, + [4470] = {.lex_state = 1342}, + [4471] = {.lex_state = 1342}, + [4472] = {.lex_state = 1342}, + [4473] = {.lex_state = 1342}, + [4474] = {.lex_state = 1342}, + [4475] = {.lex_state = 1342}, + [4476] = {.lex_state = 1342}, + [4477] = {.lex_state = 1342}, + [4478] = {.lex_state = 1342}, + [4479] = {.lex_state = 1342}, + [4480] = {.lex_state = 1342}, + [4481] = {.lex_state = 1342}, + [4482] = {.lex_state = 1342}, + [4483] = {.lex_state = 1342}, + [4484] = {.lex_state = 1342}, + [4485] = {.lex_state = 1342}, + [4486] = {.lex_state = 1342}, + [4487] = {.lex_state = 1342}, + [4488] = {.lex_state = 1342}, + [4489] = {.lex_state = 1342}, + [4490] = {.lex_state = 68}, + [4491] = {.lex_state = 1342}, + [4492] = {.lex_state = 1342}, + [4493] = {.lex_state = 1342}, + [4494] = {.lex_state = 1342}, + [4495] = {.lex_state = 1342}, + [4496] = {.lex_state = 1342}, + [4497] = {.lex_state = 1342}, + [4498] = {.lex_state = 1342}, + [4499] = {.lex_state = 1342}, + [4500] = {.lex_state = 1342}, + [4501] = {.lex_state = 1342}, + [4502] = {.lex_state = 1342}, + [4503] = {.lex_state = 205}, + [4504] = {.lex_state = 1342}, + [4505] = {.lex_state = 1342}, + [4506] = {.lex_state = 1342}, + [4507] = {.lex_state = 1342}, + [4508] = {.lex_state = 1342}, + [4509] = {.lex_state = 1342}, + [4510] = {.lex_state = 205}, + [4511] = {.lex_state = 1342}, + [4512] = {.lex_state = 1342}, + [4513] = {.lex_state = 1342}, + [4514] = {.lex_state = 1342}, + [4515] = {.lex_state = 1342}, + [4516] = {.lex_state = 1342}, + [4517] = {.lex_state = 1342}, + [4518] = {.lex_state = 1342}, + [4519] = {.lex_state = 68}, + [4520] = {.lex_state = 1342}, + [4521] = {.lex_state = 1342}, + [4522] = {.lex_state = 1342}, + [4523] = {.lex_state = 38}, + [4524] = {.lex_state = 1342}, + [4525] = {.lex_state = 1342}, + [4526] = {.lex_state = 1342}, + [4527] = {.lex_state = 1342}, + [4528] = {.lex_state = 1342}, + [4529] = {.lex_state = 1342}, + [4530] = {.lex_state = 1342}, + [4531] = {.lex_state = 1342}, + [4532] = {.lex_state = 1342}, + [4533] = {.lex_state = 1342}, + [4534] = {.lex_state = 1342}, + [4535] = {.lex_state = 1342}, + [4536] = {.lex_state = 1342}, + [4537] = {.lex_state = 1342}, + [4538] = {.lex_state = 1342}, + [4539] = {.lex_state = 1342}, + [4540] = {.lex_state = 1342}, + [4541] = {.lex_state = 1342}, + [4542] = {.lex_state = 1342}, + [4543] = {.lex_state = 1342}, + [4544] = {.lex_state = 68}, + [4545] = {.lex_state = 1342}, + [4546] = {.lex_state = 38}, + [4547] = {.lex_state = 76}, + [4548] = {.lex_state = 76}, + [4549] = {.lex_state = 195}, + [4550] = {.lex_state = 76}, + [4551] = {.lex_state = 1342}, + [4552] = {.lex_state = 1342}, + [4553] = {.lex_state = 1342}, + [4554] = {.lex_state = 1342}, + [4555] = {.lex_state = 1342}, + [4556] = {.lex_state = 33, .external_lex_state = 19}, + [4557] = {.lex_state = 1342}, + [4558] = {.lex_state = 1342}, + [4559] = {.lex_state = 1342}, + [4560] = {.lex_state = 1342}, + [4561] = {.lex_state = 1342}, + [4562] = {.lex_state = 1342}, + [4563] = {.lex_state = 1342, .external_lex_state = 11}, + [4564] = {.lex_state = 1342}, + [4565] = {.lex_state = 1342}, + [4566] = {.lex_state = 1342}, + [4567] = {.lex_state = 1342, .external_lex_state = 11}, + [4568] = {.lex_state = 204}, + [4569] = {.lex_state = 1342}, + [4570] = {.lex_state = 206}, + [4571] = {.lex_state = 76}, + [4572] = {.lex_state = 1342, .external_lex_state = 20}, + [4573] = {.lex_state = 1342, .external_lex_state = 11}, + [4574] = {.lex_state = 1342}, + [4575] = {.lex_state = 1342, .external_lex_state = 11}, + [4576] = {.lex_state = 1342, .external_lex_state = 11}, + [4577] = {.lex_state = 1342}, + [4578] = {.lex_state = 1342}, + [4579] = {.lex_state = 1342}, + [4580] = {.lex_state = 1342}, + [4581] = {.lex_state = 1342, .external_lex_state = 11}, + [4582] = {.lex_state = 1342}, + [4583] = {.lex_state = 76}, + [4584] = {.lex_state = 1342}, + [4585] = {.lex_state = 1342}, + [4586] = {.lex_state = 1342}, + [4587] = {.lex_state = 76}, + [4588] = {.lex_state = 1342}, + [4589] = {.lex_state = 1342}, + [4590] = {.lex_state = 195}, + [4591] = {.lex_state = 1342}, + [4592] = {.lex_state = 37}, + [4593] = {.lex_state = 1342}, + [4594] = {.lex_state = 1342}, + [4595] = {.lex_state = 1342, .external_lex_state = 20}, + [4596] = {.lex_state = 1342}, + [4597] = {.lex_state = 76}, + [4598] = {.lex_state = 1342, .external_lex_state = 20}, + [4599] = {.lex_state = 1342}, + [4600] = {.lex_state = 1342}, + [4601] = {.lex_state = 1342}, + [4602] = {.lex_state = 76}, + [4603] = {.lex_state = 1342, .external_lex_state = 11}, + [4604] = {.lex_state = 33, .external_lex_state = 19}, + [4605] = {.lex_state = 1342}, + [4606] = {.lex_state = 195}, + [4607] = {.lex_state = 1342}, + [4608] = {.lex_state = 1342}, + [4609] = {.lex_state = 33, .external_lex_state = 19}, + [4610] = {.lex_state = 1342}, + [4611] = {.lex_state = 1342}, + [4612] = {.lex_state = 1342}, + [4613] = {.lex_state = 1342}, + [4614] = {.lex_state = 76}, + [4615] = {.lex_state = 1342, .external_lex_state = 11}, + [4616] = {.lex_state = 1342}, + [4617] = {.lex_state = 1342}, + [4618] = {.lex_state = 1342}, + [4619] = {.lex_state = 68, .external_lex_state = 11}, + [4620] = {.lex_state = 76}, + [4621] = {.lex_state = 1342}, + [4622] = {.lex_state = 1342, .external_lex_state = 11}, + [4623] = {.lex_state = 1342}, + [4624] = {.lex_state = 1342}, + [4625] = {.lex_state = 1342, .external_lex_state = 11}, + [4626] = {.lex_state = 1342}, + [4627] = {.lex_state = 1342}, + [4628] = {.lex_state = 76}, + [4629] = {.lex_state = 208}, + [4630] = {.lex_state = 208}, + [4631] = {.lex_state = 76}, + [4632] = {.lex_state = 1342}, + [4633] = {.lex_state = 1342}, + [4634] = {.lex_state = 1342}, + [4635] = {.lex_state = 1342}, + [4636] = {.lex_state = 1342}, + [4637] = {.lex_state = 76}, + [4638] = {.lex_state = 1342, .external_lex_state = 20}, + [4639] = {.lex_state = 1342, .external_lex_state = 11}, + [4640] = {.lex_state = 208}, + [4641] = {.lex_state = 1342}, + [4642] = {.lex_state = 1342}, + [4643] = {.lex_state = 195}, + [4644] = {.lex_state = 1342}, + [4645] = {.lex_state = 76}, + [4646] = {.lex_state = 1342}, + [4647] = {.lex_state = 195}, + [4648] = {.lex_state = 76}, + [4649] = {.lex_state = 1342, .external_lex_state = 11}, + [4650] = {.lex_state = 1342}, + [4651] = {.lex_state = 1342}, + [4652] = {.lex_state = 1342}, + [4653] = {.lex_state = 1342, .external_lex_state = 11}, + [4654] = {.lex_state = 76}, + [4655] = {.lex_state = 204}, + [4656] = {.lex_state = 1342}, + [4657] = {.lex_state = 1342}, + [4658] = {.lex_state = 1342}, [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}, + [4660] = {.lex_state = 1342}, + [4661] = {.lex_state = 30, .external_lex_state = 7}, + [4662] = {.lex_state = 68}, + [4663] = {.lex_state = 1342, .external_lex_state = 21}, [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}, + [4665] = {.lex_state = 30, .external_lex_state = 7}, + [4666] = {.lex_state = 30, .external_lex_state = 7}, + [4667] = {.lex_state = 30, .external_lex_state = 7}, + [4668] = {.lex_state = 1342}, + [4669] = {.lex_state = 30, .external_lex_state = 7}, + [4670] = {.lex_state = 1342, .external_lex_state = 11}, + [4671] = {.lex_state = 30, .external_lex_state = 7}, + [4672] = {.lex_state = 1342}, + [4673] = {.lex_state = 137}, [4674] = {.lex_state = 30, .external_lex_state = 7}, - [4675] = {.lex_state = 1329}, + [4675] = {.lex_state = 1342, .external_lex_state = 11}, [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 = 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 = 1329}, - [5188] = {.lex_state = 215}, - [5189] = {.lex_state = 1329}, - [5190] = {.lex_state = 34}, - [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}, + [4677] = {.lex_state = 1342}, + [4678] = {.lex_state = 1342}, + [4679] = {.lex_state = 137}, + [4680] = {.lex_state = 137}, + [4681] = {.lex_state = 137}, + [4682] = {.lex_state = 137}, + [4683] = {.lex_state = 191}, + [4684] = {.lex_state = 68}, + [4685] = {.lex_state = 1342}, + [4686] = {.lex_state = 30}, + [4687] = {.lex_state = 1342, .external_lex_state = 11}, + [4688] = {.lex_state = 1342, .external_lex_state = 11}, + [4689] = {.lex_state = 1342}, + [4690] = {.lex_state = 1342}, + [4691] = {.lex_state = 1342}, + [4692] = {.lex_state = 1342}, + [4693] = {.lex_state = 1342, .external_lex_state = 11}, + [4694] = {.lex_state = 1342, .external_lex_state = 11}, + [4695] = {.lex_state = 30}, + [4696] = {.lex_state = 1342}, + [4697] = {.lex_state = 1342}, + [4698] = {.lex_state = 1342}, + [4699] = {.lex_state = 1342}, + [4700] = {.lex_state = 1342}, + [4701] = {.lex_state = 1342}, + [4702] = {.lex_state = 1342}, + [4703] = {.lex_state = 1342, .external_lex_state = 11}, + [4704] = {.lex_state = 1342, .external_lex_state = 11}, + [4705] = {.lex_state = 1342}, + [4706] = {.lex_state = 1342}, + [4707] = {.lex_state = 205}, + [4708] = {.lex_state = 1342}, + [4709] = {.lex_state = 1342}, + [4710] = {.lex_state = 1342}, + [4711] = {.lex_state = 1342}, + [4712] = {.lex_state = 1342, .external_lex_state = 11}, + [4713] = {.lex_state = 1342, .external_lex_state = 11}, + [4714] = {.lex_state = 1342, .external_lex_state = 22}, + [4715] = {.lex_state = 1342}, + [4716] = {.lex_state = 1342}, + [4717] = {.lex_state = 1342}, + [4718] = {.lex_state = 30}, + [4719] = {.lex_state = 1342, .external_lex_state = 23}, + [4720] = {.lex_state = 205}, + [4721] = {.lex_state = 1342, .external_lex_state = 11}, + [4722] = {.lex_state = 1342}, + [4723] = {.lex_state = 1342}, + [4724] = {.lex_state = 1342}, + [4725] = {.lex_state = 1342}, + [4726] = {.lex_state = 1342}, + [4727] = {.lex_state = 211}, + [4728] = {.lex_state = 1342}, + [4729] = {.lex_state = 211}, + [4730] = {.lex_state = 211}, + [4731] = {.lex_state = 211}, + [4732] = {.lex_state = 211}, + [4733] = {.lex_state = 211}, + [4734] = {.lex_state = 211}, + [4735] = {.lex_state = 211}, + [4736] = {.lex_state = 1342}, + [4737] = {.lex_state = 1342}, + [4738] = {.lex_state = 1342}, + [4739] = {.lex_state = 1342}, + [4740] = {.lex_state = 1342}, + [4741] = {.lex_state = 1342}, + [4742] = {.lex_state = 1342}, + [4743] = {.lex_state = 1342}, + [4744] = {.lex_state = 1342}, + [4745] = {.lex_state = 1342}, + [4746] = {.lex_state = 1342}, + [4747] = {.lex_state = 1342}, + [4748] = {.lex_state = 1342}, + [4749] = {.lex_state = 1342}, + [4750] = {.lex_state = 1342}, + [4751] = {.lex_state = 1342}, + [4752] = {.lex_state = 1342}, + [4753] = {.lex_state = 1342}, + [4754] = {.lex_state = 1342}, + [4755] = {.lex_state = 1342}, + [4756] = {.lex_state = 1342}, + [4757] = {.lex_state = 1342}, + [4758] = {.lex_state = 1342}, + [4759] = {.lex_state = 1342}, + [4760] = {.lex_state = 1342}, + [4761] = {.lex_state = 1342}, + [4762] = {.lex_state = 30}, + [4763] = {.lex_state = 1342}, + [4764] = {.lex_state = 1342}, + [4765] = {.lex_state = 1342}, + [4766] = {.lex_state = 1342}, + [4767] = {.lex_state = 1342}, + [4768] = {.lex_state = 1342}, + [4769] = {.lex_state = 1342}, + [4770] = {.lex_state = 1342}, + [4771] = {.lex_state = 1342}, + [4772] = {.lex_state = 1342}, + [4773] = {.lex_state = 1342}, + [4774] = {.lex_state = 1342}, + [4775] = {.lex_state = 1342}, + [4776] = {.lex_state = 1342}, + [4777] = {.lex_state = 1342}, + [4778] = {.lex_state = 1342}, + [4779] = {.lex_state = 1342}, + [4780] = {.lex_state = 1342}, + [4781] = {.lex_state = 1342}, + [4782] = {.lex_state = 1342}, + [4783] = {.lex_state = 1342}, + [4784] = {.lex_state = 1342}, + [4785] = {.lex_state = 1342}, + [4786] = {.lex_state = 1342}, + [4787] = {.lex_state = 1342}, + [4788] = {.lex_state = 1342}, + [4789] = {.lex_state = 1342}, + [4790] = {.lex_state = 1342}, + [4791] = {.lex_state = 1342}, + [4792] = {.lex_state = 1342}, + [4793] = {.lex_state = 1342}, + [4794] = {.lex_state = 1342}, + [4795] = {.lex_state = 1342}, + [4796] = {.lex_state = 1342}, + [4797] = {.lex_state = 1342}, + [4798] = {.lex_state = 1342}, + [4799] = {.lex_state = 1342}, + [4800] = {.lex_state = 1342, .external_lex_state = 11}, + [4801] = {.lex_state = 1342}, + [4802] = {.lex_state = 1342}, + [4803] = {.lex_state = 1342}, + [4804] = {.lex_state = 1342}, + [4805] = {.lex_state = 1342}, + [4806] = {.lex_state = 1342}, + [4807] = {.lex_state = 30}, + [4808] = {.lex_state = 1342}, + [4809] = {.lex_state = 1342}, + [4810] = {.lex_state = 1342}, + [4811] = {.lex_state = 1342}, + [4812] = {.lex_state = 1342}, + [4813] = {.lex_state = 1342}, + [4814] = {.lex_state = 1342}, + [4815] = {.lex_state = 1342}, + [4816] = {.lex_state = 1342}, + [4817] = {.lex_state = 1342}, + [4818] = {.lex_state = 1342}, + [4819] = {.lex_state = 1342}, + [4820] = {.lex_state = 1342}, + [4821] = {.lex_state = 1342}, + [4822] = {.lex_state = 1342}, + [4823] = {.lex_state = 1342}, + [4824] = {.lex_state = 1342}, + [4825] = {.lex_state = 1342}, + [4826] = {.lex_state = 1342}, + [4827] = {.lex_state = 1342}, + [4828] = {.lex_state = 1342}, + [4829] = {.lex_state = 1342}, + [4830] = {.lex_state = 1342}, + [4831] = {.lex_state = 1342}, + [4832] = {.lex_state = 211}, + [4833] = {.lex_state = 1342, .external_lex_state = 11}, + [4834] = {.lex_state = 1342}, + [4835] = {.lex_state = 1342}, + [4836] = {.lex_state = 1342}, + [4837] = {.lex_state = 1342}, + [4838] = {.lex_state = 1342}, + [4839] = {.lex_state = 1342}, + [4840] = {.lex_state = 1342}, + [4841] = {.lex_state = 1342}, + [4842] = {.lex_state = 1342}, + [4843] = {.lex_state = 1342}, + [4844] = {.lex_state = 1342}, + [4845] = {.lex_state = 1342}, + [4846] = {.lex_state = 1342}, + [4847] = {.lex_state = 1342}, + [4848] = {.lex_state = 1342}, + [4849] = {.lex_state = 1342}, + [4850] = {.lex_state = 1342}, + [4851] = {.lex_state = 1342}, + [4852] = {.lex_state = 1342}, + [4853] = {.lex_state = 1342}, + [4854] = {.lex_state = 1342}, + [4855] = {.lex_state = 1342}, + [4856] = {.lex_state = 1342}, + [4857] = {.lex_state = 1342}, + [4858] = {.lex_state = 1342}, + [4859] = {.lex_state = 1342}, + [4860] = {.lex_state = 1342}, + [4861] = {.lex_state = 1342}, + [4862] = {.lex_state = 1342}, + [4863] = {.lex_state = 1342}, + [4864] = {.lex_state = 1342}, + [4865] = {.lex_state = 1342}, + [4866] = {.lex_state = 1342}, + [4867] = {.lex_state = 1342}, + [4868] = {.lex_state = 1342}, + [4869] = {.lex_state = 1342}, + [4870] = {.lex_state = 1342}, + [4871] = {.lex_state = 1342}, + [4872] = {.lex_state = 1342}, + [4873] = {.lex_state = 1342}, + [4874] = {.lex_state = 1342}, + [4875] = {.lex_state = 1342}, + [4876] = {.lex_state = 1342}, + [4877] = {.lex_state = 1342}, + [4878] = {.lex_state = 1342}, + [4879] = {.lex_state = 1342}, + [4880] = {.lex_state = 1342}, + [4881] = {.lex_state = 1342}, + [4882] = {.lex_state = 1342}, + [4883] = {.lex_state = 1342}, + [4884] = {.lex_state = 1342}, + [4885] = {.lex_state = 1342}, + [4886] = {.lex_state = 1342}, + [4887] = {.lex_state = 1342}, + [4888] = {.lex_state = 1342}, + [4889] = {.lex_state = 1342}, + [4890] = {.lex_state = 1342}, + [4891] = {.lex_state = 1342}, + [4892] = {.lex_state = 1342}, + [4893] = {.lex_state = 1342}, + [4894] = {.lex_state = 1342}, + [4895] = {.lex_state = 1342}, + [4896] = {.lex_state = 1342}, + [4897] = {.lex_state = 1342}, + [4898] = {.lex_state = 1342}, + [4899] = {.lex_state = 1342}, + [4900] = {.lex_state = 1342}, + [4901] = {.lex_state = 1342}, + [4902] = {.lex_state = 1342}, + [4903] = {.lex_state = 1342}, + [4904] = {.lex_state = 1342}, + [4905] = {.lex_state = 1342}, + [4906] = {.lex_state = 1342}, + [4907] = {.lex_state = 1342}, + [4908] = {.lex_state = 1342}, + [4909] = {.lex_state = 1342}, + [4910] = {.lex_state = 1342}, + [4911] = {.lex_state = 1342}, + [4912] = {.lex_state = 1342}, + [4913] = {.lex_state = 1342}, + [4914] = {.lex_state = 1342}, + [4915] = {.lex_state = 1342}, + [4916] = {.lex_state = 1342}, + [4917] = {.lex_state = 1342}, + [4918] = {.lex_state = 1342}, + [4919] = {.lex_state = 1342}, + [4920] = {.lex_state = 1342}, + [4921] = {.lex_state = 1342}, + [4922] = {.lex_state = 1342, .external_lex_state = 11}, + [4923] = {.lex_state = 1342}, + [4924] = {.lex_state = 1342}, + [4925] = {.lex_state = 1342}, + [4926] = {.lex_state = 1342}, + [4927] = {.lex_state = 1342, .external_lex_state = 11}, + [4928] = {.lex_state = 1342}, + [4929] = {.lex_state = 1342}, + [4930] = {.lex_state = 1342}, + [4931] = {.lex_state = 1342}, + [4932] = {.lex_state = 1342}, + [4933] = {.lex_state = 1342}, + [4934] = {.lex_state = 1342}, + [4935] = {.lex_state = 1342}, + [4936] = {.lex_state = 1342}, + [4937] = {.lex_state = 1342}, + [4938] = {.lex_state = 1342}, + [4939] = {.lex_state = 1342}, + [4940] = {.lex_state = 192}, + [4941] = {.lex_state = 1342}, + [4942] = {.lex_state = 1342}, + [4943] = {.lex_state = 1342}, + [4944] = {.lex_state = 1342}, + [4945] = {.lex_state = 1342}, + [4946] = {.lex_state = 1342}, + [4947] = {.lex_state = 1342}, + [4948] = {.lex_state = 1342}, + [4949] = {.lex_state = 1342}, + [4950] = {.lex_state = 1342, .external_lex_state = 11}, + [4951] = {.lex_state = 1342}, + [4952] = {.lex_state = 1342}, + [4953] = {.lex_state = 1342}, + [4954] = {.lex_state = 1342}, + [4955] = {.lex_state = 211}, + [4956] = {.lex_state = 1342}, + [4957] = {.lex_state = 1342}, + [4958] = {.lex_state = 1342}, + [4959] = {.lex_state = 1342}, + [4960] = {.lex_state = 1342}, + [4961] = {.lex_state = 1342}, + [4962] = {.lex_state = 1342}, + [4963] = {.lex_state = 1342}, + [4964] = {.lex_state = 1342}, + [4965] = {.lex_state = 1342}, + [4966] = {.lex_state = 1342}, + [4967] = {.lex_state = 1342}, + [4968] = {.lex_state = 1342, .external_lex_state = 21}, + [4969] = {.lex_state = 1342}, + [4970] = {.lex_state = 1342}, + [4971] = {.lex_state = 1342}, + [4972] = {.lex_state = 1342}, + [4973] = {.lex_state = 1342}, + [4974] = {.lex_state = 1342}, + [4975] = {.lex_state = 1342}, + [4976] = {.lex_state = 1342}, + [4977] = {.lex_state = 1342}, + [4978] = {.lex_state = 1342}, + [4979] = {.lex_state = 1342}, + [4980] = {.lex_state = 1342}, + [4981] = {.lex_state = 1342}, + [4982] = {.lex_state = 1342}, + [4983] = {.lex_state = 1342}, + [4984] = {.lex_state = 1342}, + [4985] = {.lex_state = 1342}, + [4986] = {.lex_state = 1342}, + [4987] = {.lex_state = 1342}, + [4988] = {.lex_state = 1342}, + [4989] = {.lex_state = 40}, + [4990] = {.lex_state = 1342}, + [4991] = {.lex_state = 1342}, + [4992] = {.lex_state = 1342}, + [4993] = {.lex_state = 1342}, + [4994] = {.lex_state = 1342}, + [4995] = {.lex_state = 1342}, + [4996] = {.lex_state = 1342}, + [4997] = {.lex_state = 1342}, + [4998] = {.lex_state = 1342}, + [4999] = {.lex_state = 1342}, + [5000] = {.lex_state = 1342}, + [5001] = {.lex_state = 1342}, + [5002] = {.lex_state = 1342}, + [5003] = {.lex_state = 1342}, + [5004] = {.lex_state = 1342}, + [5005] = {.lex_state = 1342}, + [5006] = {.lex_state = 1342, .external_lex_state = 11}, + [5007] = {.lex_state = 1342}, + [5008] = {.lex_state = 1342}, + [5009] = {.lex_state = 1342}, + [5010] = {.lex_state = 1342}, + [5011] = {.lex_state = 76}, + [5012] = {.lex_state = 1342}, + [5013] = {.lex_state = 1342}, + [5014] = {.lex_state = 1342}, + [5015] = {.lex_state = 1342}, + [5016] = {.lex_state = 1342}, + [5017] = {.lex_state = 1342}, + [5018] = {.lex_state = 1342}, + [5019] = {.lex_state = 1342}, + [5020] = {.lex_state = 1342}, + [5021] = {.lex_state = 1342}, + [5022] = {.lex_state = 1342}, + [5023] = {.lex_state = 1342}, + [5024] = {.lex_state = 1342}, + [5025] = {.lex_state = 1342}, + [5026] = {.lex_state = 1342}, + [5027] = {.lex_state = 1342}, + [5028] = {.lex_state = 1342}, + [5029] = {.lex_state = 1342}, + [5030] = {.lex_state = 1342}, + [5031] = {.lex_state = 1342}, + [5032] = {.lex_state = 1342}, + [5033] = {.lex_state = 1342}, + [5034] = {.lex_state = 76}, + [5035] = {.lex_state = 1342}, + [5036] = {.lex_state = 1342}, + [5037] = {.lex_state = 1342}, + [5038] = {.lex_state = 30}, + [5039] = {.lex_state = 1342}, + [5040] = {.lex_state = 1342}, + [5041] = {.lex_state = 1342}, + [5042] = {.lex_state = 1342}, + [5043] = {.lex_state = 1342}, + [5044] = {.lex_state = 1342}, + [5045] = {.lex_state = 1342}, + [5046] = {.lex_state = 1342}, + [5047] = {.lex_state = 1342}, + [5048] = {.lex_state = 1342}, + [5049] = {.lex_state = 1342}, + [5050] = {.lex_state = 1342}, + [5051] = {.lex_state = 1342}, + [5052] = {.lex_state = 1342}, + [5053] = {.lex_state = 1342}, + [5054] = {.lex_state = 1342}, + [5055] = {.lex_state = 192}, + [5056] = {.lex_state = 1342}, + [5057] = {.lex_state = 1342}, + [5058] = {.lex_state = 1342}, + [5059] = {.lex_state = 1342}, + [5060] = {.lex_state = 1342}, + [5061] = {.lex_state = 1342, .external_lex_state = 11}, + [5062] = {.lex_state = 30}, + [5063] = {.lex_state = 211}, + [5064] = {.lex_state = 1342}, + [5065] = {.lex_state = 1342}, + [5066] = {.lex_state = 205}, + [5067] = {.lex_state = 1342, .external_lex_state = 21}, + [5068] = {.lex_state = 1342}, + [5069] = {.lex_state = 1342}, + [5070] = {.lex_state = 1342}, + [5071] = {.lex_state = 1342}, + [5072] = {.lex_state = 1342}, + [5073] = {.lex_state = 1342}, + [5074] = {.lex_state = 76}, + [5075] = {.lex_state = 30, .external_lex_state = 7}, + [5076] = {.lex_state = 1342}, + [5077] = {.lex_state = 1342}, + [5078] = {.lex_state = 1342}, + [5079] = {.lex_state = 1342}, + [5080] = {.lex_state = 1342}, + [5081] = {.lex_state = 1342}, + [5082] = {.lex_state = 1342}, + [5083] = {.lex_state = 1342}, + [5084] = {.lex_state = 1342}, + [5085] = {.lex_state = 1342}, + [5086] = {.lex_state = 1342}, + [5087] = {.lex_state = 196}, + [5088] = {.lex_state = 1342}, + [5089] = {.lex_state = 1342}, + [5090] = {.lex_state = 1342}, + [5091] = {.lex_state = 1342}, + [5092] = {.lex_state = 1342, .external_lex_state = 7}, + [5093] = {.lex_state = 1342}, + [5094] = {.lex_state = 1342}, + [5095] = {.lex_state = 1342}, + [5096] = {.lex_state = 1342}, + [5097] = {.lex_state = 1342}, + [5098] = {.lex_state = 1342}, + [5099] = {.lex_state = 1342}, + [5100] = {.lex_state = 1342}, + [5101] = {.lex_state = 1342}, + [5102] = {.lex_state = 1342}, + [5103] = {.lex_state = 1342}, + [5104] = {.lex_state = 1342}, + [5105] = {.lex_state = 1342}, + [5106] = {.lex_state = 1342}, + [5107] = {.lex_state = 1342}, + [5108] = {.lex_state = 1342}, + [5109] = {.lex_state = 1342}, + [5110] = {.lex_state = 1342}, + [5111] = {.lex_state = 1342}, + [5112] = {.lex_state = 1342}, + [5113] = {.lex_state = 1342}, + [5114] = {.lex_state = 192}, + [5115] = {.lex_state = 1342}, + [5116] = {.lex_state = 1342, .external_lex_state = 11}, + [5117] = {.lex_state = 30, .external_lex_state = 11}, + [5118] = {.lex_state = 76}, + [5119] = {.lex_state = 1342}, + [5120] = {.lex_state = 1342}, + [5121] = {.lex_state = 1342}, + [5122] = {.lex_state = 191}, + [5123] = {.lex_state = 30}, + [5124] = {.lex_state = 1342}, + [5125] = {.lex_state = 1342}, + [5126] = {.lex_state = 1342}, + [5127] = {.lex_state = 1342}, + [5128] = {.lex_state = 1342}, + [5129] = {.lex_state = 1342}, + [5130] = {.lex_state = 1342}, + [5131] = {.lex_state = 1342}, + [5132] = {.lex_state = 76}, + [5133] = {.lex_state = 1342}, + [5134] = {.lex_state = 196}, + [5135] = {.lex_state = 211}, + [5136] = {.lex_state = 68}, + [5137] = {.lex_state = 1342}, + [5138] = {.lex_state = 76}, + [5139] = {.lex_state = 1342, .external_lex_state = 7}, + [5140] = {.lex_state = 1342}, + [5141] = {.lex_state = 1342}, + [5142] = {.lex_state = 1342}, + [5143] = {.lex_state = 1342}, + [5144] = {.lex_state = 68}, + [5145] = {.lex_state = 1342}, + [5146] = {.lex_state = 1342, .external_lex_state = 21}, + [5147] = {.lex_state = 1342}, + [5148] = {.lex_state = 1342}, + [5149] = {.lex_state = 1342}, + [5150] = {.lex_state = 1342}, + [5151] = {.lex_state = 1342}, + [5152] = {.lex_state = 1342}, + [5153] = {.lex_state = 1342}, + [5154] = {.lex_state = 1342}, + [5155] = {.lex_state = 30}, + [5156] = {.lex_state = 30}, + [5157] = {.lex_state = 30}, + [5158] = {.lex_state = 30}, + [5159] = {.lex_state = 30}, + [5160] = {.lex_state = 1342, .external_lex_state = 11}, + [5161] = {.lex_state = 1342, .external_lex_state = 20}, + [5162] = {.lex_state = 212}, + [5163] = {.lex_state = 211}, + [5164] = {.lex_state = 1342, .external_lex_state = 22}, + [5165] = {.lex_state = 1342, .external_lex_state = 23}, + [5166] = {.lex_state = 76}, + [5167] = {.lex_state = 1342, .external_lex_state = 11}, + [5168] = {.lex_state = 30, .external_lex_state = 7}, + [5169] = {.lex_state = 1342, .external_lex_state = 11}, + [5170] = {.lex_state = 30, .external_lex_state = 7}, + [5171] = {.lex_state = 1342, .external_lex_state = 11}, + [5172] = {.lex_state = 1342, .external_lex_state = 11}, + [5173] = {.lex_state = 76}, + [5174] = {.lex_state = 1342, .external_lex_state = 11}, + [5175] = {.lex_state = 1342, .external_lex_state = 11}, + [5176] = {.lex_state = 1342}, + [5177] = {.lex_state = 1342}, + [5178] = {.lex_state = 1342}, + [5179] = {.lex_state = 76}, + [5180] = {.lex_state = 1342, .external_lex_state = 11}, + [5181] = {.lex_state = 1342}, + [5182] = {.lex_state = 1342}, + [5183] = {.lex_state = 1342, .external_lex_state = 11}, + [5184] = {.lex_state = 1342, .external_lex_state = 11}, + [5185] = {.lex_state = 1342}, + [5186] = {.lex_state = 1342}, + [5187] = {.lex_state = 1342}, + [5188] = {.lex_state = 212}, + [5189] = {.lex_state = 76}, + [5190] = {.lex_state = 76}, + [5191] = {.lex_state = 68}, + [5192] = {.lex_state = 1342, .external_lex_state = 11}, + [5193] = {.lex_state = 1342}, + [5194] = {.lex_state = 1342}, + [5195] = {.lex_state = 68}, + [5196] = {.lex_state = 68}, + [5197] = {.lex_state = 1342}, + [5198] = {.lex_state = 1342}, + [5199] = {.lex_state = 1342}, + [5200] = {.lex_state = 1342}, + [5201] = {.lex_state = 1342}, + [5202] = {.lex_state = 76}, + [5203] = {.lex_state = 76}, + [5204] = {.lex_state = 1342}, + [5205] = {.lex_state = 1342}, + [5206] = {.lex_state = 1342, .external_lex_state = 11}, + [5207] = {.lex_state = 1342}, + [5208] = {.lex_state = 33, .external_lex_state = 19}, + [5209] = {.lex_state = 30}, + [5210] = {.lex_state = 1342}, + [5211] = {.lex_state = 1342}, + [5212] = {.lex_state = 1342, .external_lex_state = 11}, + [5213] = {.lex_state = 1342}, + [5214] = {.lex_state = 216}, + [5215] = {.lex_state = 1342}, + [5216] = {.lex_state = 1342}, + [5217] = {.lex_state = 30}, + [5218] = {.lex_state = 30}, + [5219] = {.lex_state = 30}, + [5220] = {.lex_state = 30, .external_lex_state = 11}, + [5221] = {.lex_state = 1342, .external_lex_state = 17}, + [5222] = {.lex_state = 1342}, + [5223] = {.lex_state = 203}, + [5224] = {.lex_state = 1342}, + [5225] = {.lex_state = 1342}, + [5226] = {.lex_state = 1342}, + [5227] = {.lex_state = 1342}, + [5228] = {.lex_state = 1342}, + [5229] = {.lex_state = 203}, + [5230] = {.lex_state = 1342}, + [5231] = {.lex_state = 1342}, + [5232] = {.lex_state = 1342}, [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}, + [5234] = {.lex_state = 203}, + [5235] = {.lex_state = 1342}, + [5236] = {.lex_state = 1342}, + [5237] = {.lex_state = 30}, + [5238] = {.lex_state = 30}, + [5239] = {.lex_state = 34}, + [5240] = {.lex_state = 1342}, + [5241] = {.lex_state = 203}, + [5242] = {.lex_state = 1342}, + [5243] = {.lex_state = 1342}, + [5244] = {.lex_state = 216}, + [5245] = {.lex_state = 1342}, + [5246] = {.lex_state = 1342}, + [5247] = {.lex_state = 1342}, + [5248] = {.lex_state = 30, .external_lex_state = 11}, + [5249] = {.lex_state = 1342, .external_lex_state = 17}, + [5250] = {.lex_state = 1342}, + [5251] = {.lex_state = 1342}, + [5252] = {.lex_state = 1342}, + [5253] = {.lex_state = 68}, + [5254] = {.lex_state = 1342, .external_lex_state = 17}, + [5255] = {.lex_state = 1342}, + [5256] = {.lex_state = 1342}, + [5257] = {.lex_state = 1342}, + [5258] = {.lex_state = 1342}, + [5259] = {.lex_state = 1342}, + [5260] = {.lex_state = 1342}, + [5261] = {.lex_state = 1342}, + [5262] = {.lex_state = 1342}, + [5263] = {.lex_state = 1342}, + [5264] = {.lex_state = 1342}, + [5265] = {.lex_state = 1342, .external_lex_state = 11}, + [5266] = {.lex_state = 30}, + [5267] = {.lex_state = 1342}, + [5268] = {.lex_state = 1342}, + [5269] = {.lex_state = 1342}, + [5270] = {.lex_state = 1342}, + [5271] = {.lex_state = 1342}, + [5272] = {.lex_state = 37}, + [5273] = {.lex_state = 1342}, + [5274] = {.lex_state = 1342}, + [5275] = {.lex_state = 30}, + [5276] = {.lex_state = 30}, + [5277] = {.lex_state = 1342}, + [5278] = {.lex_state = 1342}, + [5279] = {.lex_state = 1342}, + [5280] = {.lex_state = 1342}, [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 = 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}, + [5282] = {.lex_state = 1342}, + [5283] = {.lex_state = 37}, + [5284] = {.lex_state = 1342}, + [5285] = {.lex_state = 30}, + [5286] = {.lex_state = 34}, + [5287] = {.lex_state = 34}, + [5288] = {.lex_state = 34}, + [5289] = {.lex_state = 215}, + [5290] = {.lex_state = 1342}, + [5291] = {.lex_state = 34}, + [5292] = {.lex_state = 30}, + [5293] = {.lex_state = 34}, + [5294] = {.lex_state = 34}, + [5295] = {.lex_state = 34}, + [5296] = {.lex_state = 37}, + [5297] = {.lex_state = 34}, + [5298] = {.lex_state = 34}, + [5299] = {.lex_state = 1342}, + [5300] = {.lex_state = 34}, + [5301] = {.lex_state = 30}, + [5302] = {.lex_state = 1342}, + [5303] = {.lex_state = 1342, .external_lex_state = 11}, + [5304] = {.lex_state = 1342, .external_lex_state = 11}, + [5305] = {.lex_state = 1342}, + [5306] = {.lex_state = 1342, .external_lex_state = 17}, + [5307] = {.lex_state = 1342, .external_lex_state = 11}, + [5308] = {.lex_state = 1342}, + [5309] = {.lex_state = 26}, + [5310] = {.lex_state = 1342, .external_lex_state = 11}, + [5311] = {.lex_state = 1342, .external_lex_state = 11}, + [5312] = {.lex_state = 1342, .external_lex_state = 11}, + [5313] = {.lex_state = 1342, .external_lex_state = 11}, + [5314] = {.lex_state = 30}, + [5315] = {.lex_state = 26}, + [5316] = {.lex_state = 215}, + [5317] = {.lex_state = 1342}, + [5318] = {.lex_state = 1342}, + [5319] = {.lex_state = 26}, + [5320] = {.lex_state = 1342}, + [5321] = {.lex_state = 1342}, + [5322] = {.lex_state = 1342}, + [5323] = {.lex_state = 1342}, + [5324] = {.lex_state = 1342}, + [5325] = {.lex_state = 215}, + [5326] = {.lex_state = 1342}, + [5327] = {.lex_state = 1342}, + [5328] = {.lex_state = 1342}, + [5329] = {.lex_state = 1342, .external_lex_state = 11}, + [5330] = {.lex_state = 1342, .external_lex_state = 11}, + [5331] = {.lex_state = 1342}, + [5332] = {.lex_state = 1342, .external_lex_state = 11}, + [5333] = {.lex_state = 30}, + [5334] = {.lex_state = 1342}, + [5335] = {.lex_state = 34}, + [5336] = {.lex_state = 1342}, + [5337] = {.lex_state = 1342, .external_lex_state = 11}, + [5338] = {.lex_state = 203}, + [5339] = {.lex_state = 1342}, + [5340] = {.lex_state = 1342}, + [5341] = {.lex_state = 1342}, + [5342] = {.lex_state = 1342}, + [5343] = {.lex_state = 1342}, + [5344] = {.lex_state = 1342}, + [5345] = {.lex_state = 1342}, + [5346] = {.lex_state = 26}, + [5347] = {.lex_state = 30}, + [5348] = {.lex_state = 215}, + [5349] = {.lex_state = 26}, + [5350] = {.lex_state = 1342, .external_lex_state = 17}, + [5351] = {.lex_state = 1342}, + [5352] = {.lex_state = 1342}, + [5353] = {.lex_state = 30}, + [5354] = {.lex_state = 1342}, + [5355] = {.lex_state = 1342}, + [5356] = {.lex_state = 1342}, + [5357] = {.lex_state = 215}, + [5358] = {.lex_state = 1342}, + [5359] = {.lex_state = 30}, + [5360] = {.lex_state = 1342}, + [5361] = {.lex_state = 1342}, + [5362] = {.lex_state = 1342}, + [5363] = {.lex_state = 1342}, + [5364] = {.lex_state = 34}, + [5365] = {.lex_state = 1342}, + [5366] = {.lex_state = 1342}, + [5367] = {.lex_state = 1342}, + [5368] = {.lex_state = 1342}, + [5369] = {.lex_state = 1342}, + [5370] = {.lex_state = 30}, + [5371] = {.lex_state = 1342, .external_lex_state = 11}, + [5372] = {.lex_state = 30}, + [5373] = {.lex_state = 1342}, + [5374] = {.lex_state = 1342}, + [5375] = {.lex_state = 1342, .external_lex_state = 11}, + [5376] = {.lex_state = 1342}, + [5377] = {.lex_state = 1342}, + [5378] = {.lex_state = 1342}, + [5379] = {.lex_state = 1342, .external_lex_state = 11}, + [5380] = {.lex_state = 1342, .external_lex_state = 11}, + [5381] = {.lex_state = 26}, + [5382] = {.lex_state = 1342}, + [5383] = {.lex_state = 30}, + [5384] = {.lex_state = 215}, + [5385] = {.lex_state = 1342}, + [5386] = {.lex_state = 26}, + [5387] = {.lex_state = 1342}, + [5388] = {.lex_state = 1342}, + [5389] = {.lex_state = 215}, + [5390] = {.lex_state = 1342}, + [5391] = {.lex_state = 1342}, + [5392] = {.lex_state = 1342}, [5393] = {.lex_state = 30}, - [5394] = {.lex_state = 1329}, - [5395] = {.lex_state = 1329}, - [5396] = {.lex_state = 30}, - [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 = 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 = 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 = 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 = 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 = 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 = 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}, + [5394] = {.lex_state = 1342}, + [5395] = {.lex_state = 1342}, + [5396] = {.lex_state = 1342}, + [5397] = {.lex_state = 40}, + [5398] = {.lex_state = 1342}, + [5399] = {.lex_state = 34}, + [5400] = {.lex_state = 1342}, + [5401] = {.lex_state = 1342}, + [5402] = {.lex_state = 1342}, + [5403] = {.lex_state = 1342}, + [5404] = {.lex_state = 1342, .external_lex_state = 11}, + [5405] = {.lex_state = 30, .external_lex_state = 11}, + [5406] = {.lex_state = 1342}, + [5407] = {.lex_state = 30, .external_lex_state = 11}, + [5408] = {.lex_state = 1342, .external_lex_state = 11}, + [5409] = {.lex_state = 1342}, + [5410] = {.lex_state = 1342}, + [5411] = {.lex_state = 1342}, + [5412] = {.lex_state = 1342}, + [5413] = {.lex_state = 1342}, + [5414] = {.lex_state = 1342}, + [5415] = {.lex_state = 1342}, + [5416] = {.lex_state = 1342}, + [5417] = {.lex_state = 30}, + [5418] = {.lex_state = 30}, + [5419] = {.lex_state = 1342}, + [5420] = {.lex_state = 26}, + [5421] = {.lex_state = 1342}, + [5422] = {.lex_state = 30}, + [5423] = {.lex_state = 215}, + [5424] = {.lex_state = 26}, + [5425] = {.lex_state = 26}, + [5426] = {.lex_state = 1342}, + [5427] = {.lex_state = 30}, + [5428] = {.lex_state = 1342}, + [5429] = {.lex_state = 1342}, + [5430] = {.lex_state = 1342}, + [5431] = {.lex_state = 1342}, + [5432] = {.lex_state = 1342}, + [5433] = {.lex_state = 1342}, + [5434] = {.lex_state = 1342}, + [5435] = {.lex_state = 1342}, + [5436] = {.lex_state = 215}, + [5437] = {.lex_state = 1342}, + [5438] = {.lex_state = 1342}, + [5439] = {.lex_state = 1342}, + [5440] = {.lex_state = 30}, + [5441] = {.lex_state = 1342}, + [5442] = {.lex_state = 1342}, + [5443] = {.lex_state = 1342}, + [5444] = {.lex_state = 30}, + [5445] = {.lex_state = 1342}, + [5446] = {.lex_state = 215}, + [5447] = {.lex_state = 1342}, + [5448] = {.lex_state = 1342}, + [5449] = {.lex_state = 34}, + [5450] = {.lex_state = 1342, .external_lex_state = 11}, + [5451] = {.lex_state = 1342}, + [5452] = {.lex_state = 1342}, + [5453] = {.lex_state = 1342}, + [5454] = {.lex_state = 1342, .external_lex_state = 11}, + [5455] = {.lex_state = 1342}, + [5456] = {.lex_state = 40}, + [5457] = {.lex_state = 1342}, + [5458] = {.lex_state = 1342}, + [5459] = {.lex_state = 1342}, + [5460] = {.lex_state = 1342}, + [5461] = {.lex_state = 1342}, + [5462] = {.lex_state = 1342}, + [5463] = {.lex_state = 1342}, + [5464] = {.lex_state = 1342}, + [5465] = {.lex_state = 1342}, + [5466] = {.lex_state = 1342}, + [5467] = {.lex_state = 1342}, + [5468] = {.lex_state = 1342}, + [5469] = {.lex_state = 1342}, + [5470] = {.lex_state = 1342}, + [5471] = {.lex_state = 1342}, + [5472] = {.lex_state = 1342}, + [5473] = {.lex_state = 1342}, + [5474] = {.lex_state = 1342}, + [5475] = {.lex_state = 1342}, + [5476] = {.lex_state = 1342}, + [5477] = {.lex_state = 1342}, + [5478] = {.lex_state = 1342}, + [5479] = {.lex_state = 26}, + [5480] = {.lex_state = 1342}, + [5481] = {.lex_state = 216}, + [5482] = {.lex_state = 1342}, + [5483] = {.lex_state = 1342}, + [5484] = {.lex_state = 1342}, + [5485] = {.lex_state = 1342, .external_lex_state = 22}, + [5486] = {.lex_state = 1342}, + [5487] = {.lex_state = 1342}, + [5488] = {.lex_state = 30}, + [5489] = {.lex_state = 30}, + [5490] = {.lex_state = 1342}, + [5491] = {.lex_state = 1342}, + [5492] = {.lex_state = 1342, .external_lex_state = 17}, + [5493] = {.lex_state = 1342}, + [5494] = {.lex_state = 40}, + [5495] = {.lex_state = 1342}, + [5496] = {.lex_state = 1342}, + [5497] = {.lex_state = 1342}, + [5498] = {.lex_state = 206}, + [5499] = {.lex_state = 1342}, + [5500] = {.lex_state = 1342, .external_lex_state = 23}, + [5501] = {.lex_state = 1342}, + [5502] = {.lex_state = 1342}, + [5503] = {.lex_state = 36, .external_lex_state = 17}, + [5504] = {.lex_state = 1342}, + [5505] = {.lex_state = 36, .external_lex_state = 17}, + [5506] = {.lex_state = 40}, + [5507] = {.lex_state = 30}, + [5508] = {.lex_state = 1342}, + [5509] = {.lex_state = 1342}, + [5510] = {.lex_state = 1342}, + [5511] = {.lex_state = 30}, + [5512] = {.lex_state = 30}, + [5513] = {.lex_state = 1342, .external_lex_state = 17}, + [5514] = {.lex_state = 1342, .external_lex_state = 17}, + [5515] = {.lex_state = 1342}, + [5516] = {.lex_state = 1342}, + [5517] = {.lex_state = 1342}, + [5518] = {.lex_state = 1342}, [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 = 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}, + [5521] = {.lex_state = 30}, + [5522] = {.lex_state = 1342, .external_lex_state = 17}, + [5523] = {.lex_state = 1342}, + [5524] = {.lex_state = 1342}, + [5525] = {.lex_state = 1342}, + [5526] = {.lex_state = 1342}, + [5527] = {.lex_state = 30}, + [5528] = {.lex_state = 1342}, + [5529] = {.lex_state = 30}, + [5530] = {.lex_state = 1342, .external_lex_state = 21}, + [5531] = {.lex_state = 1342}, + [5532] = {.lex_state = 36, .external_lex_state = 17}, + [5533] = {.lex_state = 1342}, + [5534] = {.lex_state = 1342, .external_lex_state = 17}, + [5535] = {.lex_state = 30}, + [5536] = {.lex_state = 1342}, + [5537] = {.lex_state = 1342}, + [5538] = {.lex_state = 40}, + [5539] = {.lex_state = 1342}, + [5540] = {.lex_state = 1342}, + [5541] = {.lex_state = 40}, + [5542] = {.lex_state = 1342}, + [5543] = {.lex_state = 30}, + [5544] = {.lex_state = 1342}, + [5545] = {.lex_state = 30}, + [5546] = {.lex_state = 1342}, + [5547] = {.lex_state = 1342}, + [5548] = {.lex_state = 36, .external_lex_state = 17}, + [5549] = {.lex_state = 1342}, + [5550] = {.lex_state = 1342}, + [5551] = {.lex_state = 1342}, + [5552] = {.lex_state = 1342}, [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 = 1329}, - [5574] = {.lex_state = 1329}, + [5554] = {.lex_state = 30}, + [5555] = {.lex_state = 1342}, + [5556] = {.lex_state = 30}, + [5557] = {.lex_state = 1342}, + [5558] = {.lex_state = 1342}, + [5559] = {.lex_state = 1342}, + [5560] = {.lex_state = 1342}, + [5561] = {.lex_state = 30}, + [5562] = {.lex_state = 1342}, + [5563] = {.lex_state = 1342}, + [5564] = {.lex_state = 1342}, + [5565] = {.lex_state = 1342}, + [5566] = {.lex_state = 1342}, + [5567] = {.lex_state = 1342}, + [5568] = {.lex_state = 30}, + [5569] = {.lex_state = 30}, + [5570] = {.lex_state = 30}, + [5571] = {.lex_state = 1342}, + [5572] = {.lex_state = 1342}, + [5573] = {.lex_state = 1342}, + [5574] = {.lex_state = 1342}, [5575] = {.lex_state = 30}, - [5576] = {.lex_state = 1329}, - [5577] = {.lex_state = 1329}, - [5578] = {.lex_state = 1329}, - [5579] = {.lex_state = 30}, - [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 = 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 = 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}, + [5576] = {.lex_state = 1342}, + [5577] = {.lex_state = 1342}, + [5578] = {.lex_state = 30}, + [5579] = {.lex_state = 1342}, + [5580] = {.lex_state = 30}, + [5581] = {.lex_state = 1342}, + [5582] = {.lex_state = 1342}, + [5583] = {.lex_state = 30}, + [5584] = {.lex_state = 1342, .external_lex_state = 17}, + [5585] = {.lex_state = 1342}, + [5586] = {.lex_state = 40}, + [5587] = {.lex_state = 1342}, + [5588] = {.lex_state = 1342}, + [5589] = {.lex_state = 40}, + [5590] = {.lex_state = 1342}, + [5591] = {.lex_state = 40}, + [5592] = {.lex_state = 26}, + [5593] = {.lex_state = 1342}, + [5594] = {.lex_state = 1342}, + [5595] = {.lex_state = 1342}, + [5596] = {.lex_state = 40}, + [5597] = {.lex_state = 1342}, + [5598] = {.lex_state = 30}, + [5599] = {.lex_state = 1342}, + [5600] = {.lex_state = 1342}, + [5601] = {.lex_state = 1342}, + [5602] = {.lex_state = 1342}, + [5603] = {.lex_state = 1342}, + [5604] = {.lex_state = 30}, + [5605] = {.lex_state = 1342}, + [5606] = {.lex_state = 1342}, + [5607] = {.lex_state = 1342}, + [5608] = {.lex_state = 1342}, + [5609] = {.lex_state = 40}, + [5610] = {.lex_state = 1342}, + [5611] = {.lex_state = 1342}, + [5612] = {.lex_state = 1342}, + [5613] = {.lex_state = 30}, + [5614] = {.lex_state = 1342}, + [5615] = {.lex_state = 30}, + [5616] = {.lex_state = 40}, + [5617] = {.lex_state = 1342}, + [5618] = {.lex_state = 1342, .external_lex_state = 17}, + [5619] = {.lex_state = 30}, + [5620] = {.lex_state = 1342}, + [5621] = {.lex_state = 30}, + [5622] = {.lex_state = 1342}, + [5623] = {.lex_state = 30}, + [5624] = {.lex_state = 1342}, + [5625] = {.lex_state = 1342}, + [5626] = {.lex_state = 1342}, + [5627] = {.lex_state = 30}, + [5628] = {.lex_state = 1342}, + [5629] = {.lex_state = 1342}, + [5630] = {.lex_state = 1342}, + [5631] = {.lex_state = 1342}, + [5632] = {.lex_state = 1342}, + [5633] = {.lex_state = 30}, + [5634] = {.lex_state = 1342}, + [5635] = {.lex_state = 1342, .external_lex_state = 7}, + [5636] = {.lex_state = 1342}, + [5637] = {.lex_state = 30}, + [5638] = {.lex_state = 1342}, + [5639] = {.lex_state = 1342}, [5640] = {.lex_state = 30}, - [5641] = {.lex_state = 1329}, - [5642] = {.lex_state = 1329}, - [5643] = {.lex_state = 30}, - [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 = 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}, + [5641] = {.lex_state = 1342}, + [5642] = {.lex_state = 1342}, + [5643] = {.lex_state = 1342}, + [5644] = {.lex_state = 30}, + [5645] = {.lex_state = 1342}, + [5646] = {.lex_state = 1342}, + [5647] = {.lex_state = 1342, .external_lex_state = 21}, + [5648] = {.lex_state = 1342}, + [5649] = {.lex_state = 30}, + [5650] = {.lex_state = 36}, + [5651] = {.lex_state = 1342}, + [5652] = {.lex_state = 30}, + [5653] = {.lex_state = 1342}, + [5654] = {.lex_state = 38}, + [5655] = {.lex_state = 30}, + [5656] = {.lex_state = 30}, + [5657] = {.lex_state = 1342}, + [5658] = {.lex_state = 1342}, + [5659] = {.lex_state = 1342}, + [5660] = {.lex_state = 1342}, + [5661] = {.lex_state = 1342}, + [5662] = {.lex_state = 1342}, + [5663] = {.lex_state = 1342}, + [5664] = {.lex_state = 30}, + [5665] = {.lex_state = 30}, + [5666] = {.lex_state = 1342}, + [5667] = {.lex_state = 1342}, + [5668] = {.lex_state = 1342}, + [5669] = {.lex_state = 1342}, + [5670] = {.lex_state = 30}, + [5671] = {.lex_state = 36}, + [5672] = {.lex_state = 1342}, + [5673] = {.lex_state = 1342}, [5674] = {.lex_state = 30}, - [5675] = {.lex_state = 30}, - [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 = 1329}, - [5689] = {.lex_state = 30}, - [5690] = {.lex_state = 30}, - [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 = 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}, + [5675] = {.lex_state = 1342}, + [5676] = {.lex_state = 30}, + [5677] = {.lex_state = 1342}, + [5678] = {.lex_state = 1342}, + [5679] = {.lex_state = 1342}, + [5680] = {.lex_state = 30}, + [5681] = {.lex_state = 1342}, + [5682] = {.lex_state = 1342}, + [5683] = {.lex_state = 1342}, + [5684] = {.lex_state = 1342}, + [5685] = {.lex_state = 1342}, + [5686] = {.lex_state = 1342}, + [5687] = {.lex_state = 1342}, + [5688] = {.lex_state = 1342}, + [5689] = {.lex_state = 37}, + [5690] = {.lex_state = 1342}, + [5691] = {.lex_state = 36}, + [5692] = {.lex_state = 1342}, + [5693] = {.lex_state = 1342}, + [5694] = {.lex_state = 1342}, + [5695] = {.lex_state = 76}, + [5696] = {.lex_state = 1342}, + [5697] = {.lex_state = 30}, + [5698] = {.lex_state = 1342}, + [5699] = {.lex_state = 1342}, + [5700] = {.lex_state = 1342}, + [5701] = {.lex_state = 1342}, + [5702] = {.lex_state = 1342}, + [5703] = {.lex_state = 1342}, + [5704] = {.lex_state = 1342}, + [5705] = {.lex_state = 1342}, + [5706] = {.lex_state = 30}, + [5707] = {.lex_state = 30}, + [5708] = {.lex_state = 1342}, + [5709] = {.lex_state = 30}, + [5710] = {.lex_state = 36}, [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 = 1329}, - [5724] = {.lex_state = 1329}, + [5712] = {.lex_state = 30}, + [5713] = {.lex_state = 1342}, + [5714] = {.lex_state = 1342}, + [5715] = {.lex_state = 1342}, + [5716] = {.lex_state = 1342}, + [5717] = {.lex_state = 37}, + [5718] = {.lex_state = 1342}, + [5719] = {.lex_state = 1342}, + [5720] = {.lex_state = 30}, + [5721] = {.lex_state = 1342}, + [5722] = {.lex_state = 1342}, + [5723] = {.lex_state = 1342}, + [5724] = {.lex_state = 30}, [5725] = {.lex_state = 30}, - [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 = 1329}, - [5734] = {.lex_state = 1329}, - [5735] = {.lex_state = 1329}, - [5736] = {.lex_state = 30}, - [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}, + [5726] = {.lex_state = 30}, + [5727] = {.lex_state = 30}, + [5728] = {.lex_state = 1342}, + [5729] = {.lex_state = 1342}, + [5730] = {.lex_state = 76}, + [5731] = {.lex_state = 1342}, + [5732] = {.lex_state = 1342}, + [5733] = {.lex_state = 1342}, + [5734] = {.lex_state = 40}, + [5735] = {.lex_state = 1342}, + [5736] = {.lex_state = 1342}, + [5737] = {.lex_state = 1342}, + [5738] = {.lex_state = 26}, + [5739] = {.lex_state = 30}, + [5740] = {.lex_state = 1342}, + [5741] = {.lex_state = 30}, + [5742] = {.lex_state = 30}, + [5743] = {.lex_state = 66}, + [5744] = {.lex_state = 1342}, + [5745] = {.lex_state = 1342}, + [5746] = {.lex_state = 30}, + [5747] = {.lex_state = 1342}, + [5748] = {.lex_state = 1342}, + [5749] = {.lex_state = 30}, + [5750] = {.lex_state = 1342}, + [5751] = {.lex_state = 1342}, + [5752] = {.lex_state = 1342}, + [5753] = {.lex_state = 1342}, + [5754] = {.lex_state = 1342}, + [5755] = {.lex_state = 1342}, + [5756] = {.lex_state = 1342}, [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}, + [5758] = {.lex_state = 1342}, + [5759] = {.lex_state = 1342}, + [5760] = {.lex_state = 1342}, + [5761] = {.lex_state = 1342, .external_lex_state = 17}, + [5762] = {.lex_state = 1342}, + [5763] = {.lex_state = 30}, + [5764] = {.lex_state = 30}, [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}, + [5766] = {.lex_state = 1342}, + [5767] = {.lex_state = 1342}, + [5768] = {.lex_state = 1342}, + [5769] = {.lex_state = 1342}, + [5770] = {.lex_state = 1342}, + [5771] = {.lex_state = 36}, + [5772] = {.lex_state = 30}, + [5773] = {.lex_state = 30}, + [5774] = {.lex_state = 30}, + [5775] = {.lex_state = 1342}, + [5776] = {.lex_state = 1342}, [5777] = {.lex_state = 30}, [5778] = {.lex_state = 30}, - [5779] = {.lex_state = 1329}, - [5780] = {.lex_state = 1329}, - [5781] = {.lex_state = 30}, - [5782] = {.lex_state = 30}, - [5783] = {.lex_state = 30}, - [5784] = {.lex_state = 1329}, - [5785] = {.lex_state = 30}, - [5786] = {.lex_state = 1329}, + [5779] = {.lex_state = 1342}, + [5780] = {.lex_state = 1342}, + [5781] = {.lex_state = 1342}, + [5782] = {.lex_state = 1342}, + [5783] = {.lex_state = 1342}, + [5784] = {.lex_state = 1342}, + [5785] = {.lex_state = 1342}, + [5786] = {.lex_state = 30}, [5787] = {.lex_state = 30}, - [5788] = {.lex_state = 30}, - [5789] = {.lex_state = 1329}, - [5790] = {.lex_state = 1329}, - [5791] = {.lex_state = 1329}, - [5792] = {.lex_state = 30}, + [5788] = {.lex_state = 36}, + [5789] = {.lex_state = 1342, .external_lex_state = 17}, + [5790] = {.lex_state = 1342}, + [5791] = {.lex_state = 1342}, + [5792] = {.lex_state = 1342}, [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}, + [5794] = {.lex_state = 30}, + [5795] = {.lex_state = 1342, .external_lex_state = 7}, + [5796] = {.lex_state = 1342}, + [5797] = {.lex_state = 1342}, + [5798] = {.lex_state = 1342, .external_lex_state = 7}, + [5799] = {.lex_state = 1342}, + [5800] = {.lex_state = 1342}, + [5801] = {.lex_state = 30}, [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}, + [5803] = {.lex_state = 36}, + [5804] = {.lex_state = 1342}, + [5805] = {.lex_state = 66}, + [5806] = {.lex_state = 1342}, + [5807] = {.lex_state = 30}, + [5808] = {.lex_state = 1342}, + [5809] = {.lex_state = 1342}, + [5810] = {.lex_state = 36}, [5811] = {.lex_state = 30}, - [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}, + [5812] = {.lex_state = 1342}, + [5813] = {.lex_state = 1342}, + [5814] = {.lex_state = 30}, + [5815] = {.lex_state = 1342}, + [5816] = {.lex_state = 1342}, + [5817] = {.lex_state = 1342}, + [5818] = {.lex_state = 1342}, + [5819] = {.lex_state = 30}, [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 = 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}, + [5822] = {.lex_state = 1342}, + [5823] = {.lex_state = 30}, + [5824] = {.lex_state = 1342}, + [5825] = {.lex_state = 1342}, + [5826] = {.lex_state = 1342}, + [5827] = {.lex_state = 1342}, + [5828] = {.lex_state = 30}, + [5829] = {.lex_state = 1342}, + [5830] = {.lex_state = 1342}, + [5831] = {.lex_state = 1342}, + [5832] = {.lex_state = 30, .external_lex_state = 11}, + [5833] = {.lex_state = 1342, .external_lex_state = 7}, + [5834] = {.lex_state = 30}, + [5835] = {.lex_state = 1342}, + [5836] = {.lex_state = 1342}, + [5837] = {.lex_state = 1342}, + [5838] = {.lex_state = 1342}, + [5839] = {.lex_state = 30}, + [5840] = {.lex_state = 1342}, + [5841] = {.lex_state = 1342}, + [5842] = {.lex_state = 30}, + [5843] = {.lex_state = 30}, + [5844] = {.lex_state = 1342}, + [5845] = {.lex_state = 30}, + [5846] = {.lex_state = 30}, + [5847] = {.lex_state = 1342}, [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}, + [5849] = {.lex_state = 76}, + [5850] = {.lex_state = 1342}, + [5851] = {.lex_state = 30}, + [5852] = {.lex_state = 30}, + [5853] = {.lex_state = 1342}, + [5854] = {.lex_state = 1342}, [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}, + [5856] = {.lex_state = 1342}, + [5857] = {.lex_state = 30}, + [5858] = {.lex_state = 1342}, + [5859] = {.lex_state = 30}, + [5860] = {.lex_state = 1342}, + [5861] = {.lex_state = 30}, + [5862] = {.lex_state = 1342, .external_lex_state = 21}, + [5863] = {.lex_state = 1342}, + [5864] = {.lex_state = 30}, + [5865] = {.lex_state = 1342}, + [5866] = {.lex_state = 1342}, + [5867] = {.lex_state = 30}, [5868] = {.lex_state = 30}, [5869] = {.lex_state = 30}, - [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}, + [5870] = {.lex_state = 30}, + [5871] = {.lex_state = 1342}, + [5872] = {.lex_state = 1342}, + [5873] = {.lex_state = 1342}, + [5874] = {.lex_state = 1342}, + [5875] = {.lex_state = 30}, + [5876] = {.lex_state = 1342}, + [5877] = {.lex_state = 1342}, + [5878] = {.lex_state = 1342}, + [5879] = {.lex_state = 30}, + [5880] = {.lex_state = 30}, + [5881] = {.lex_state = 1342}, + [5882] = {.lex_state = 1342}, [5883] = {.lex_state = 30}, - [5884] = {.lex_state = 30}, - [5885] = {.lex_state = 1329}, - [5886] = {.lex_state = 1329}, - [5887] = {.lex_state = 1329}, - [5888] = {.lex_state = 30}, - [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 = 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 = 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 = 1329}, - [5981] = {.lex_state = 1329}, - [5982] = {.lex_state = 1329}, - [5983] = {.lex_state = 39}, - [5984] = {.lex_state = 30}, - [5985] = {.lex_state = 1329}, + [5884] = {.lex_state = 1342}, + [5885] = {.lex_state = 1342}, + [5886] = {.lex_state = 1342}, + [5887] = {.lex_state = 30}, + [5888] = {.lex_state = 1342}, + [5889] = {.lex_state = 1342}, + [5890] = {.lex_state = 1342}, + [5891] = {.lex_state = 1342}, + [5892] = {.lex_state = 30}, + [5893] = {.lex_state = 1342, .external_lex_state = 17}, + [5894] = {.lex_state = 1342}, + [5895] = {.lex_state = 1342}, + [5896] = {.lex_state = 1342}, + [5897] = {.lex_state = 1342}, + [5898] = {.lex_state = 1342}, + [5899] = {.lex_state = 1342}, + [5900] = {.lex_state = 1342}, + [5901] = {.lex_state = 1342}, + [5902] = {.lex_state = 1342, .external_lex_state = 17}, + [5903] = {.lex_state = 36}, + [5904] = {.lex_state = 66}, + [5905] = {.lex_state = 1342}, + [5906] = {.lex_state = 1342}, + [5907] = {.lex_state = 76}, + [5908] = {.lex_state = 1342}, + [5909] = {.lex_state = 1342}, + [5910] = {.lex_state = 30}, + [5911] = {.lex_state = 1342}, + [5912] = {.lex_state = 1342}, + [5913] = {.lex_state = 1342}, + [5914] = {.lex_state = 1342}, + [5915] = {.lex_state = 1342}, + [5916] = {.lex_state = 1342}, + [5917] = {.lex_state = 66}, + [5918] = {.lex_state = 30}, + [5919] = {.lex_state = 30}, + [5920] = {.lex_state = 1342}, + [5921] = {.lex_state = 30}, + [5922] = {.lex_state = 1342}, + [5923] = {.lex_state = 30}, + [5924] = {.lex_state = 1342}, + [5925] = {.lex_state = 1342, .external_lex_state = 17}, + [5926] = {.lex_state = 1342}, + [5927] = {.lex_state = 1342}, + [5928] = {.lex_state = 1342}, + [5929] = {.lex_state = 30}, + [5930] = {.lex_state = 1342}, + [5931] = {.lex_state = 1342}, + [5932] = {.lex_state = 1342}, + [5933] = {.lex_state = 1342}, + [5934] = {.lex_state = 1342, .external_lex_state = 17}, + [5935] = {.lex_state = 1342}, + [5936] = {.lex_state = 30}, + [5937] = {.lex_state = 30}, + [5938] = {.lex_state = 1342}, + [5939] = {.lex_state = 1342}, + [5940] = {.lex_state = 1342}, + [5941] = {.lex_state = 76}, + [5942] = {.lex_state = 1342}, + [5943] = {.lex_state = 1342}, + [5944] = {.lex_state = 1342}, + [5945] = {.lex_state = 30}, + [5946] = {.lex_state = 1342}, + [5947] = {.lex_state = 1342}, + [5948] = {.lex_state = 1342}, + [5949] = {.lex_state = 1342}, + [5950] = {.lex_state = 1342}, + [5951] = {.lex_state = 30}, + [5952] = {.lex_state = 30}, + [5953] = {.lex_state = 30}, + [5954] = {.lex_state = 1342}, + [5955] = {.lex_state = 1342}, + [5956] = {.lex_state = 1342}, + [5957] = {.lex_state = 1342}, + [5958] = {.lex_state = 1342}, + [5959] = {.lex_state = 1342}, + [5960] = {.lex_state = 38}, + [5961] = {.lex_state = 36}, + [5962] = {.lex_state = 30}, + [5963] = {.lex_state = 1342}, + [5964] = {.lex_state = 1342}, + [5965] = {.lex_state = 30}, + [5966] = {.lex_state = 1342}, + [5967] = {.lex_state = 1342}, + [5968] = {.lex_state = 1342}, + [5969] = {.lex_state = 1342}, + [5970] = {.lex_state = 30}, + [5971] = {.lex_state = 1342}, + [5972] = {.lex_state = 1342}, + [5973] = {.lex_state = 1342}, + [5974] = {.lex_state = 1342}, + [5975] = {.lex_state = 1342}, + [5976] = {.lex_state = 40}, + [5977] = {.lex_state = 1342}, + [5978] = {.lex_state = 1342}, + [5979] = {.lex_state = 1342}, + [5980] = {.lex_state = 1342}, + [5981] = {.lex_state = 1342}, + [5982] = {.lex_state = 1342}, + [5983] = {.lex_state = 1342}, + [5984] = {.lex_state = 1342}, + [5985] = {.lex_state = 1342}, [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}, + [5987] = {.lex_state = 1342}, + [5988] = {.lex_state = 1342}, + [5989] = {.lex_state = 1342}, + [5990] = {.lex_state = 1342}, + [5991] = {.lex_state = 1342}, + [5992] = {.lex_state = 1342}, + [5993] = {.lex_state = 1342}, + [5994] = {.lex_state = 1342}, + [5995] = {.lex_state = 1342}, + [5996] = {.lex_state = 1342}, [5997] = {.lex_state = 30}, - [5998] = {.lex_state = 1329}, + [5998] = {.lex_state = 1342}, [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 = 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 = 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 = 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 = 1329}, + [6000] = {.lex_state = 1342}, + [6001] = {.lex_state = 1342}, + [6002] = {.lex_state = 1342}, + [6003] = {.lex_state = 1342}, + [6004] = {.lex_state = 1342}, + [6005] = {.lex_state = 1342}, + [6006] = {.lex_state = 1342}, + [6007] = {.lex_state = 1342}, + [6008] = {.lex_state = 76}, + [6009] = {.lex_state = 1342}, + [6010] = {.lex_state = 1342}, + [6011] = {.lex_state = 30}, + [6012] = {.lex_state = 1342}, + [6013] = {.lex_state = 30}, + [6014] = {.lex_state = 1342}, + [6015] = {.lex_state = 1342}, + [6016] = {.lex_state = 1342}, + [6017] = {.lex_state = 1342}, + [6018] = {.lex_state = 40}, + [6019] = {.lex_state = 1342}, + [6020] = {.lex_state = 1342}, + [6021] = {.lex_state = 1342}, + [6022] = {.lex_state = 1342}, + [6023] = {.lex_state = 1342}, + [6024] = {.lex_state = 1342}, + [6025] = {.lex_state = 30}, + [6026] = {.lex_state = 1342}, + [6027] = {.lex_state = 1342}, + [6028] = {.lex_state = 1342}, + [6029] = {.lex_state = 1342}, + [6030] = {.lex_state = 30}, + [6031] = {.lex_state = 30}, + [6032] = {.lex_state = 1342}, + [6033] = {.lex_state = 1342, .external_lex_state = 17}, + [6034] = {.lex_state = 1342}, + [6035] = {.lex_state = 1342}, + [6036] = {.lex_state = 1342}, + [6037] = {.lex_state = 1342}, + [6038] = {.lex_state = 1342}, + [6039] = {.lex_state = 1342}, + [6040] = {.lex_state = 30}, + [6041] = {.lex_state = 1342}, + [6042] = {.lex_state = 40}, + [6043] = {.lex_state = 1342}, + [6044] = {.lex_state = 40}, + [6045] = {.lex_state = 1342}, + [6046] = {.lex_state = 1342}, + [6047] = {.lex_state = 1342}, + [6048] = {.lex_state = 76}, + [6049] = {.lex_state = 1342}, + [6050] = {.lex_state = 1342}, + [6051] = {.lex_state = 1342}, + [6052] = {.lex_state = 1342}, + [6053] = {.lex_state = 1342}, + [6054] = {.lex_state = 1342}, + [6055] = {.lex_state = 36}, + [6056] = {.lex_state = 1342}, + [6057] = {.lex_state = 1342}, + [6058] = {.lex_state = 30}, + [6059] = {.lex_state = 1342}, + [6060] = {.lex_state = 1342}, + [6061] = {.lex_state = 30}, + [6062] = {.lex_state = 1342}, + [6063] = {.lex_state = 1342}, + [6064] = {.lex_state = 30}, + [6065] = {.lex_state = 1342}, + [6066] = {.lex_state = 1342}, + [6067] = {.lex_state = 1342}, + [6068] = {.lex_state = 30}, + [6069] = {.lex_state = 1342}, + [6070] = {.lex_state = 1342}, + [6071] = {.lex_state = 1342, .external_lex_state = 21}, + [6072] = {.lex_state = 30}, + [6073] = {.lex_state = 30}, + [6074] = {.lex_state = 1342}, + [6075] = {.lex_state = 1342}, + [6076] = {.lex_state = 1342}, + [6077] = {.lex_state = 30}, + [6078] = {.lex_state = 1342}, + [6079] = {.lex_state = 1342}, + [6080] = {.lex_state = 76}, + [6081] = {.lex_state = 1342}, + [6082] = {.lex_state = 1342}, + [6083] = {.lex_state = 1342}, + [6084] = {.lex_state = 1342}, + [6085] = {.lex_state = 1342}, + [6086] = {.lex_state = 1342}, + [6087] = {.lex_state = 1342}, + [6088] = {.lex_state = 1342}, + [6089] = {.lex_state = 1342}, + [6090] = {.lex_state = 1342}, + [6091] = {.lex_state = 1342}, + [6092] = {.lex_state = 30}, + [6093] = {.lex_state = 36}, + [6094] = {.lex_state = 1342}, + [6095] = {.lex_state = 1342}, + [6096] = {.lex_state = 30}, + [6097] = {.lex_state = 1342}, + [6098] = {.lex_state = 1342}, + [6099] = {.lex_state = 1342}, + [6100] = {.lex_state = 1342}, + [6101] = {.lex_state = 1342}, [6102] = {.lex_state = 30}, - [6103] = {.lex_state = 1329}, - [6104] = {.lex_state = 1329}, + [6103] = {.lex_state = 30}, + [6104] = {.lex_state = 1342}, [6105] = {.lex_state = 30}, - [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 = 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 = 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 = 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 = 1329}, - [6197] = {.lex_state = 30}, - [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}, + [6106] = {.lex_state = 1342}, + [6107] = {.lex_state = 30}, + [6108] = {.lex_state = 1342}, + [6109] = {.lex_state = 1342}, + [6110] = {.lex_state = 1342}, + [6111] = {.lex_state = 36}, + [6112] = {.lex_state = 1342}, + [6113] = {.lex_state = 1342}, + [6114] = {.lex_state = 1342}, + [6115] = {.lex_state = 76}, + [6116] = {.lex_state = 1342}, + [6117] = {.lex_state = 1342}, + [6118] = {.lex_state = 1342}, + [6119] = {.lex_state = 1342}, + [6120] = {.lex_state = 1342}, + [6121] = {.lex_state = 1342}, + [6122] = {.lex_state = 1342}, + [6123] = {.lex_state = 1342}, + [6124] = {.lex_state = 1342}, + [6125] = {.lex_state = 1342}, + [6126] = {.lex_state = 30}, + [6127] = {.lex_state = 1342}, + [6128] = {.lex_state = 1342}, + [6129] = {.lex_state = 30}, + [6130] = {.lex_state = 1342}, + [6131] = {.lex_state = 1342}, + [6132] = {.lex_state = 1342}, + [6133] = {.lex_state = 30}, + [6134] = {.lex_state = 30}, + [6135] = {.lex_state = 1342, .external_lex_state = 17}, + [6136] = {.lex_state = 1342}, + [6137] = {.lex_state = 1342}, + [6138] = {.lex_state = 1342, .external_lex_state = 17}, + [6139] = {.lex_state = 1342}, + [6140] = {.lex_state = 36}, + [6141] = {.lex_state = 40}, + [6142] = {.lex_state = 1342}, + [6143] = {.lex_state = 1342}, + [6144] = {.lex_state = 1342}, + [6145] = {.lex_state = 76}, + [6146] = {.lex_state = 1342}, + [6147] = {.lex_state = 1342, .external_lex_state = 17}, + [6148] = {.lex_state = 30}, + [6149] = {.lex_state = 30}, + [6150] = {.lex_state = 30}, + [6151] = {.lex_state = 30}, + [6152] = {.lex_state = 1342}, + [6153] = {.lex_state = 1342}, + [6154] = {.lex_state = 1342}, + [6155] = {.lex_state = 1342}, + [6156] = {.lex_state = 1342}, + [6157] = {.lex_state = 1342}, + [6158] = {.lex_state = 1342}, + [6159] = {.lex_state = 1342}, + [6160] = {.lex_state = 1342}, + [6161] = {.lex_state = 1342}, + [6162] = {.lex_state = 1342}, + [6163] = {.lex_state = 1342}, + [6164] = {.lex_state = 1342}, + [6165] = {.lex_state = 1342}, + [6166] = {.lex_state = 1342}, + [6167] = {.lex_state = 1342}, + [6168] = {.lex_state = 1342}, + [6169] = {.lex_state = 1342}, + [6170] = {.lex_state = 1342}, + [6171] = {.lex_state = 1342}, + [6172] = {.lex_state = 30}, + [6173] = {.lex_state = 30}, + [6174] = {.lex_state = 1342}, + [6175] = {.lex_state = 1342}, + [6176] = {.lex_state = 1342}, + [6177] = {.lex_state = 1342}, + [6178] = {.lex_state = 1342}, + [6179] = {.lex_state = 1342}, + [6180] = {.lex_state = 1342}, + [6181] = {.lex_state = 1342}, + [6182] = {.lex_state = 1342}, + [6183] = {.lex_state = 1342}, + [6184] = {.lex_state = 1342}, + [6185] = {.lex_state = 1342}, + [6186] = {.lex_state = 1342}, + [6187] = {.lex_state = 1342}, + [6188] = {.lex_state = 1342}, + [6189] = {.lex_state = 1342}, + [6190] = {.lex_state = 1342}, + [6191] = {.lex_state = 1342}, + [6192] = {.lex_state = 30}, + [6193] = {.lex_state = 1342}, + [6194] = {.lex_state = 1342}, + [6195] = {.lex_state = 1342}, + [6196] = {.lex_state = 1342}, + [6197] = {.lex_state = 1342}, + [6198] = {.lex_state = 1342}, + [6199] = {.lex_state = 1342}, + [6200] = {.lex_state = 1342}, + [6201] = {.lex_state = 1342}, + [6202] = {.lex_state = 1342}, + [6203] = {.lex_state = 1342}, + [6204] = {.lex_state = 1342}, [6205] = {.lex_state = 30}, - [6206] = {.lex_state = 30}, + [6206] = {.lex_state = 1342}, [6207] = {.lex_state = 30}, - [6208] = {.lex_state = 30}, - [6209] = {.lex_state = 1329}, - [6210] = {.lex_state = 30}, - [6211] = {.lex_state = 1329}, - [6212] = {.lex_state = 1329}, - [6213] = {.lex_state = 1329}, + [6208] = {.lex_state = 1342}, + [6209] = {.lex_state = 40}, + [6210] = {.lex_state = 1342}, + [6211] = {.lex_state = 30}, + [6212] = {.lex_state = 1342}, + [6213] = {.lex_state = 1342}, [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}, + [6215] = {.lex_state = 1342}, + [6216] = {.lex_state = 1342}, + [6217] = {.lex_state = 1342}, + [6218] = {.lex_state = 30}, + [6219] = {.lex_state = 1342}, + [6220] = {.lex_state = 1342}, + [6221] = {.lex_state = 1342}, + [6222] = {.lex_state = 1342}, + [6223] = {.lex_state = 1342}, + [6224] = {.lex_state = 1342}, + [6225] = {.lex_state = 1342}, + [6226] = {.lex_state = 1342}, + [6227] = {.lex_state = 30}, + [6228] = {.lex_state = 1342}, [6229] = {.lex_state = 30}, - [6230] = {.lex_state = 30}, - [6231] = {.lex_state = 1329}, - [6232] = {.lex_state = 1329}, + [6230] = {.lex_state = 1342}, + [6231] = {.lex_state = 30}, + [6232] = {.lex_state = 1342}, [6233] = {.lex_state = 30}, - [6234] = {.lex_state = 30}, - [6235] = {.lex_state = 30}, - [6236] = {.lex_state = 1329}, - [6237] = {.lex_state = 1329}, + [6234] = {.lex_state = 1342}, + [6235] = {.lex_state = 1342}, + [6236] = {.lex_state = 30}, + [6237] = {.lex_state = 30}, [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 = 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 = 1329}, - [6274] = {.lex_state = 30}, - [6275] = {.lex_state = 30}, - [6276] = {.lex_state = 1329}, + [6239] = {.lex_state = 1342}, + [6240] = {.lex_state = 1342}, + [6241] = {.lex_state = 30}, + [6242] = {.lex_state = 1342}, + [6243] = {.lex_state = 1342}, + [6244] = {.lex_state = 1342}, + [6245] = {.lex_state = 1342}, + [6246] = {.lex_state = 1342}, + [6247] = {.lex_state = 1342}, + [6248] = {.lex_state = 30}, + [6249] = {.lex_state = 1342}, + [6250] = {.lex_state = 1342}, + [6251] = {.lex_state = 1342}, + [6252] = {.lex_state = 1342}, + [6253] = {.lex_state = 1342}, + [6254] = {.lex_state = 1342}, + [6255] = {.lex_state = 30}, + [6256] = {.lex_state = 40}, + [6257] = {.lex_state = 30}, + [6258] = {.lex_state = 1342}, + [6259] = {.lex_state = 1342}, + [6260] = {.lex_state = 1342}, + [6261] = {.lex_state = 1342}, + [6262] = {.lex_state = 1342}, + [6263] = {.lex_state = 1342}, + [6264] = {.lex_state = 1342}, + [6265] = {.lex_state = 1342}, + [6266] = {.lex_state = 30}, + [6267] = {.lex_state = 1342}, + [6268] = {.lex_state = 1342}, + [6269] = {.lex_state = 1342}, + [6270] = {.lex_state = 30}, + [6271] = {.lex_state = 30}, + [6272] = {.lex_state = 1342}, + [6273] = {.lex_state = 30}, + [6274] = {.lex_state = 1342}, + [6275] = {.lex_state = 1342}, + [6276] = {.lex_state = 30}, [6277] = {.lex_state = 30}, - [6278] = {.lex_state = 1329}, - [6279] = {.lex_state = 1329}, - [6280] = {.lex_state = 30}, - [6281] = {.lex_state = 1329}, + [6278] = {.lex_state = 30}, + [6279] = {.lex_state = 30}, + [6280] = {.lex_state = 1342, .external_lex_state = 17}, + [6281] = {.lex_state = 1342}, [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 = 1329}, - [6292] = {.lex_state = 1329}, - [6293] = {.lex_state = 1329}, - [6294] = {.lex_state = 1329}, - [6295] = {.lex_state = 1329}, + [6283] = {.lex_state = 30}, + [6284] = {.lex_state = 1342}, + [6285] = {.lex_state = 1342}, + [6286] = {.lex_state = 1342}, + [6287] = {.lex_state = 1342}, + [6288] = {.lex_state = 1342}, + [6289] = {.lex_state = 1342}, + [6290] = {.lex_state = 1342}, + [6291] = {.lex_state = 1342}, + [6292] = {.lex_state = 1342}, + [6293] = {.lex_state = 30}, + [6294] = {.lex_state = 1342}, + [6295] = {.lex_state = 30}, [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 = 1329}, - [6303] = {.lex_state = 1329}, + [6297] = {.lex_state = 30}, + [6298] = {.lex_state = 1342}, + [6299] = {.lex_state = 30}, + [6300] = {.lex_state = 30}, + [6301] = {.lex_state = 1342}, + [6302] = {.lex_state = 1342}, + [6303] = {.lex_state = 1342}, [6304] = {.lex_state = 30}, - [6305] = {.lex_state = 1329}, - [6306] = {.lex_state = 1329}, - [6307] = {.lex_state = 1329}, - [6308] = {.lex_state = 1329}, - [6309] = {.lex_state = 30}, + [6305] = {.lex_state = 30}, + [6306] = {.lex_state = 30}, + [6307] = {.lex_state = 216}, + [6308] = {.lex_state = 1342}, + [6309] = {.lex_state = 1342}, [6310] = {.lex_state = 30}, - [6311] = {.lex_state = 1329}, - [6312] = {.lex_state = 1329}, - [6313] = {.lex_state = 1329}, - [6314] = {.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}, + [6311] = {.lex_state = 1342}, + [6312] = {.lex_state = 1342}, + [6313] = {.lex_state = 1342}, + [6314] = {.lex_state = 1342}, + [6315] = {.lex_state = 1342}, + [6316] = {.lex_state = 1342}, + [6317] = {.lex_state = 1342}, + [6318] = {.lex_state = 1342}, + [6319] = {.lex_state = 1342}, + [6320] = {.lex_state = 1342}, + [6321] = {.lex_state = 30}, + [6322] = {.lex_state = 1342}, + [6323] = {.lex_state = 1342}, + [6324] = {.lex_state = 1342}, + [6325] = {.lex_state = 1342}, + [6326] = {.lex_state = 1342}, + [6327] = {.lex_state = 1342}, + [6328] = {.lex_state = 40}, + [6329] = {.lex_state = 1342}, + [6330] = {.lex_state = 1342}, [6331] = {.lex_state = 30}, - [6332] = {.lex_state = 1329}, - [6333] = {.lex_state = 1329}, - [6334] = {.lex_state = 1329}, - [6335] = {.lex_state = 30}, - [6336] = {.lex_state = 1329}, - [6337] = {.lex_state = 37}, - [6338] = {.lex_state = 1329}, - [6339] = {.lex_state = 30}, - [6340] = {.lex_state = 1329}, + [6332] = {.lex_state = 30}, + [6333] = {.lex_state = 30}, + [6334] = {.lex_state = 30}, + [6335] = {.lex_state = 1342}, + [6336] = {.lex_state = 1342}, + [6337] = {.lex_state = 1342}, + [6338] = {.lex_state = 1342}, + [6339] = {.lex_state = 1342}, + [6340] = {.lex_state = 1342}, [6341] = {.lex_state = 30}, - [6342] = {.lex_state = 1329}, - [6343] = {.lex_state = 38}, - [6344] = {.lex_state = 30}, - [6345] = {.lex_state = 1329}, - [6346] = {.lex_state = 1329}, - [6347] = {.lex_state = 1329}, - [6348] = {.lex_state = 1329}, - [6349] = {.lex_state = 1329}, - [6350] = {.lex_state = 1329}, + [6342] = {.lex_state = 1342}, + [6343] = {.lex_state = 1342}, + [6344] = {.lex_state = 1342}, + [6345] = {.lex_state = 1342}, + [6346] = {.lex_state = 1342}, + [6347] = {.lex_state = 1342}, + [6348] = {.lex_state = 30}, + [6349] = {.lex_state = 1342}, + [6350] = {.lex_state = 1342}, [6351] = {.lex_state = 30}, - [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}, + [6352] = {.lex_state = 1342}, + [6353] = {.lex_state = 1342}, + [6354] = {.lex_state = 1342}, + [6355] = {.lex_state = 1342}, + [6356] = {.lex_state = 1342}, + [6357] = {.lex_state = 1342}, + [6358] = {.lex_state = 1342}, + [6359] = {.lex_state = 1342}, + [6360] = {.lex_state = 1342}, + [6361] = {.lex_state = 30}, [6362] = {.lex_state = 30}, - [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 = 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 = 1329}, - [6392] = {.lex_state = 1329}, - [6393] = {.lex_state = 1329}, - [6394] = {.lex_state = 1329}, - [6395] = {.lex_state = 1329}, - [6396] = {.lex_state = 30}, - [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 = 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}, + [6363] = {.lex_state = 1342}, + [6364] = {.lex_state = 37}, + [6365] = {.lex_state = 1342}, + [6366] = {.lex_state = 1342}, + [6367] = {.lex_state = 1342}, + [6368] = {.lex_state = 1342}, + [6369] = {.lex_state = 1342}, + [6370] = {.lex_state = 1342}, + [6371] = {.lex_state = 1342}, + [6372] = {.lex_state = 1342}, + [6373] = {.lex_state = 1342}, + [6374] = {.lex_state = 1342}, + [6375] = {.lex_state = 1342}, + [6376] = {.lex_state = 1342}, + [6377] = {.lex_state = 1342}, + [6378] = {.lex_state = 1342}, + [6379] = {.lex_state = 1342}, + [6380] = {.lex_state = 1342}, + [6381] = {.lex_state = 1342}, + [6382] = {.lex_state = 1342}, + [6383] = {.lex_state = 1342}, + [6384] = {.lex_state = 1342}, + [6385] = {.lex_state = 1342}, + [6386] = {.lex_state = 1342}, + [6387] = {.lex_state = 1342}, + [6388] = {.lex_state = 1342}, + [6389] = {.lex_state = 1342}, + [6390] = {.lex_state = 1342}, + [6391] = {.lex_state = 1342}, + [6392] = {.lex_state = 1342}, + [6393] = {.lex_state = 1342}, + [6394] = {.lex_state = 1342}, + [6395] = {.lex_state = 1342}, + [6396] = {.lex_state = 1342}, + [6397] = {.lex_state = 1342}, + [6398] = {.lex_state = 1342}, + [6399] = {.lex_state = 1342}, + [6400] = {.lex_state = 1342}, + [6401] = {.lex_state = 1342}, + [6402] = {.lex_state = 1342}, + [6403] = {.lex_state = 1342}, + [6404] = {.lex_state = 1342}, + [6405] = {.lex_state = 30}, + [6406] = {.lex_state = 1342}, + [6407] = {.lex_state = 1342}, + [6408] = {.lex_state = 30}, + [6409] = {.lex_state = 1342}, + [6410] = {.lex_state = 1342}, + [6411] = {.lex_state = 1342}, + [6412] = {.lex_state = 1342}, + [6413] = {.lex_state = 1342}, + [6414] = {.lex_state = 1342}, + [6415] = {.lex_state = 30}, + [6416] = {.lex_state = 1342}, + [6417] = {.lex_state = 1342}, [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}, + [6419] = {.lex_state = 1342}, + [6420] = {.lex_state = 1342}, + [6421] = {.lex_state = 30}, + [6422] = {.lex_state = 1342}, + [6423] = {.lex_state = 1342}, + [6424] = {.lex_state = 1342}, + [6425] = {.lex_state = 1342}, + [6426] = {.lex_state = 1342}, + [6427] = {.lex_state = 38}, [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 = 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}, + [6429] = {.lex_state = 1342}, + [6430] = {.lex_state = 1342}, + [6431] = {.lex_state = 1342}, + [6432] = {.lex_state = 30}, + [6433] = {.lex_state = 30}, + [6434] = {.lex_state = 1342}, + [6435] = {.lex_state = 1342}, + [6436] = {.lex_state = 1342}, + [6437] = {.lex_state = 1342}, + [6438] = {.lex_state = 30}, + [6439] = {.lex_state = 30}, + [6440] = {.lex_state = 1342}, + [6441] = {.lex_state = 1342}, + [6442] = {.lex_state = 30}, + [6443] = {.lex_state = 1342}, + [6444] = {.lex_state = 1342}, + [6445] = {.lex_state = 1342}, + [6446] = {.lex_state = 1342}, + [6447] = {.lex_state = 1342}, + [6448] = {.lex_state = 1342}, + [6449] = {.lex_state = 30}, + [6450] = {.lex_state = 30}, + [6451] = {.lex_state = 1342}, + [6452] = {.lex_state = 1342}, + [6453] = {.lex_state = 30}, + [6454] = {.lex_state = 1342}, + [6455] = {.lex_state = 40}, + [6456] = {.lex_state = 1342}, + [6457] = {.lex_state = 1342}, + [6458] = {.lex_state = 1342}, + [6459] = {.lex_state = 1342}, + [6460] = {.lex_state = 40}, + [6461] = {.lex_state = 1342}, + [6462] = {.lex_state = 1342}, + [6463] = {.lex_state = 1342}, + [6464] = {.lex_state = 1342}, + [6465] = {.lex_state = 1342}, + [6466] = {.lex_state = 1342}, + [6467] = {.lex_state = 30}, + [6468] = {.lex_state = 1342}, + [6469] = {.lex_state = 1342}, + [6470] = {.lex_state = 30}, + [6471] = {.lex_state = 1342}, + [6472] = {.lex_state = 1342}, + [6473] = {.lex_state = 1342}, + [6474] = {.lex_state = 1342}, [6475] = {.lex_state = 30}, [6476] = {.lex_state = 30}, [6477] = {.lex_state = 30}, - [6478] = {.lex_state = 1329}, - [6479] = {.lex_state = 30}, - [6480] = {.lex_state = 1329}, - [6481] = {.lex_state = 1329}, - [6482] = {.lex_state = 1329}, - [6483] = {.lex_state = 30}, + [6478] = {.lex_state = 30}, + [6479] = {.lex_state = 1342}, + [6480] = {.lex_state = 1342}, + [6481] = {.lex_state = 1342}, + [6482] = {.lex_state = 1342}, + [6483] = {.lex_state = 1342}, [6484] = {.lex_state = 30}, [6485] = {.lex_state = 30}, [6486] = {.lex_state = 30}, - [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 = 1329}, - [6494] = {.lex_state = 1329}, - [6495] = {.lex_state = 30}, - [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 = 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 = 38}, - [6512] = {.lex_state = 38}, - [6513] = {.lex_state = 30}, - [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}, + [6487] = {.lex_state = 1342}, + [6488] = {.lex_state = 37}, + [6489] = {.lex_state = 38}, + [6490] = {.lex_state = 38}, + [6491] = {.lex_state = 1342}, + [6492] = {.lex_state = 38}, + [6493] = {.lex_state = 40}, + [6494] = {.lex_state = 1342}, + [6495] = {.lex_state = 1342}, + [6496] = {.lex_state = 1342}, + [6497] = {.lex_state = 1342}, + [6498] = {.lex_state = 1342}, + [6499] = {.lex_state = 1342}, + [6500] = {.lex_state = 1342}, + [6501] = {.lex_state = 1342}, + [6502] = {.lex_state = 1342}, + [6503] = {.lex_state = 30}, + [6504] = {.lex_state = 30}, + [6505] = {.lex_state = 1342}, + [6506] = {.lex_state = 1342}, + [6507] = {.lex_state = 30}, + [6508] = {.lex_state = 1342}, + [6509] = {.lex_state = 37}, + [6510] = {.lex_state = 1342}, + [6511] = {.lex_state = 1342}, + [6512] = {.lex_state = 1342}, + [6513] = {.lex_state = 1342}, + [6514] = {.lex_state = 1342}, + [6515] = {.lex_state = 1342}, + [6516] = {.lex_state = 1342}, + [6517] = {.lex_state = 38}, + [6518] = {.lex_state = 1342}, + [6519] = {.lex_state = 1342}, + [6520] = {.lex_state = 40}, + [6521] = {.lex_state = 1342}, + [6522] = {.lex_state = 1342}, + [6523] = {.lex_state = 1342}, + [6524] = {.lex_state = 1342}, + [6525] = {.lex_state = 1342}, + [6526] = {.lex_state = 1342}, + [6527] = {.lex_state = 30}, [6528] = {.lex_state = 30}, - [6529] = {.lex_state = 1329}, - [6530] = {.lex_state = 1329}, - [6531] = {.lex_state = 1329}, - [6532] = {.lex_state = 1329}, - [6533] = {.lex_state = 30}, + [6529] = {.lex_state = 30}, + [6530] = {.lex_state = 1342}, + [6531] = {.lex_state = 38}, + [6532] = {.lex_state = 1342}, + [6533] = {.lex_state = 1342}, [6534] = {.lex_state = 30}, - [6535] = {.lex_state = 30}, - [6536] = {.lex_state = 1329}, - [6537] = {.lex_state = 1329}, - [6538] = {.lex_state = 1329}, - [6539] = {.lex_state = 1329}, + [6535] = {.lex_state = 40}, + [6536] = {.lex_state = 30}, + [6537] = {.lex_state = 1342}, + [6538] = {.lex_state = 30}, + [6539] = {.lex_state = 1342}, [6540] = {.lex_state = 30}, [6541] = {.lex_state = 30}, - [6542] = {.lex_state = 1329}, - [6543] = {.lex_state = 1329}, - [6544] = {.lex_state = 30}, - [6545] = {.lex_state = 30}, - [6546] = {.lex_state = 1329}, - [6547] = {.lex_state = 1329}, + [6542] = {.lex_state = 30}, + [6543] = {.lex_state = 30}, + [6544] = {.lex_state = 1342}, + [6545] = {.lex_state = 1342}, + [6546] = {.lex_state = 1342}, + [6547] = {.lex_state = 30}, [6548] = {.lex_state = 30}, [6549] = {.lex_state = 30}, - [6550] = {.lex_state = 30}, - [6551] = {.lex_state = 1329}, - [6552] = {.lex_state = 30}, + [6550] = {.lex_state = 1342}, + [6551] = {.lex_state = 1342}, + [6552] = {.lex_state = 1342}, [6553] = {.lex_state = 30}, - [6554] = {.lex_state = 30}, - [6555] = {.lex_state = 1329}, + [6554] = {.lex_state = 1342}, + [6555] = {.lex_state = 30}, [6556] = {.lex_state = 30}, - [6557] = {.lex_state = 1329}, - [6558] = {.lex_state = 38}, + [6557] = {.lex_state = 1342}, + [6558] = {.lex_state = 1342}, [6559] = {.lex_state = 30}, - [6560] = {.lex_state = 38}, - [6561] = {.lex_state = 38}, - [6562] = {.lex_state = 30}, - [6563] = {.lex_state = 1329}, - [6564] = {.lex_state = 1329}, - [6565] = {.lex_state = 1329}, - [6566] = {.lex_state = 39}, - [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}, + [6560] = {.lex_state = 30}, + [6561] = {.lex_state = 1342}, + [6562] = {.lex_state = 1342}, + [6563] = {.lex_state = 1342}, + [6564] = {.lex_state = 1342}, + [6565] = {.lex_state = 30}, + [6566] = {.lex_state = 30}, + [6567] = {.lex_state = 1342}, + [6568] = {.lex_state = 1342}, + [6569] = {.lex_state = 30}, + [6570] = {.lex_state = 1342}, + [6571] = {.lex_state = 1342}, + [6572] = {.lex_state = 30}, + [6573] = {.lex_state = 30}, + [6574] = {.lex_state = 30}, [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 = 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 = 1329}, - [6589] = {.lex_state = 1329}, - [6590] = {.lex_state = 30}, - [6591] = {.lex_state = 1329}, - [6592] = {.lex_state = 1329}, - [6593] = {.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 = 37}, - [6609] = {.lex_state = 1329}, - [6610] = {.lex_state = 1329}, - [6611] = {.lex_state = 1329}, - [6612] = {.lex_state = 1329}, + [6576] = {.lex_state = 1342}, + [6577] = {.lex_state = 1342}, + [6578] = {.lex_state = 1342}, + [6579] = {.lex_state = 1342}, + [6580] = {.lex_state = 1342}, + [6581] = {.lex_state = 1342}, + [6582] = {.lex_state = 1342}, + [6583] = {.lex_state = 1342}, + [6584] = {.lex_state = 38}, + [6585] = {.lex_state = 30}, + [6586] = {.lex_state = 38}, + [6587] = {.lex_state = 38}, + [6588] = {.lex_state = 30}, + [6589] = {.lex_state = 1342}, + [6590] = {.lex_state = 1342}, + [6591] = {.lex_state = 37}, + [6592] = {.lex_state = 1342}, + [6593] = {.lex_state = 1342}, + [6594] = {.lex_state = 1342}, + [6595] = {.lex_state = 1342}, + [6596] = {.lex_state = 1342}, + [6597] = {.lex_state = 1342}, + [6598] = {.lex_state = 1342}, + [6599] = {.lex_state = 38}, + [6600] = {.lex_state = 38}, + [6601] = {.lex_state = 38}, + [6602] = {.lex_state = 1342}, + [6603] = {.lex_state = 1342}, + [6604] = {.lex_state = 1342}, + [6605] = {.lex_state = 1342}, + [6606] = {.lex_state = 30}, + [6607] = {.lex_state = 1342}, + [6608] = {.lex_state = 1342}, + [6609] = {.lex_state = 1342}, + [6610] = {.lex_state = 1342}, + [6611] = {.lex_state = 30}, + [6612] = {.lex_state = 37}, [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 = 1329}, - [6621] = {.lex_state = 30}, - [6622] = {.lex_state = 1329}, - [6623] = {.lex_state = 1329}, + [6614] = {.lex_state = 1342}, + [6615] = {.lex_state = 1342}, + [6616] = {.lex_state = 30}, + [6617] = {.lex_state = 30}, + [6618] = {.lex_state = 1342}, + [6619] = {.lex_state = 1342}, + [6620] = {.lex_state = 30}, + [6621] = {.lex_state = 1342}, + [6622] = {.lex_state = 1342}, + [6623] = {.lex_state = 1342}, [6624] = {.lex_state = 30}, - [6625] = {.lex_state = 1329}, + [6625] = {.lex_state = 30}, [6626] = {.lex_state = 30}, - [6627] = {.lex_state = 1329}, - [6628] = {.lex_state = 1329}, - [6629] = {.lex_state = 30}, - [6630] = {.lex_state = 30}, - [6631] = {.lex_state = 1329}, + [6627] = {.lex_state = 30}, + [6628] = {.lex_state = 30}, + [6629] = {.lex_state = 1342}, + [6630] = {.lex_state = 1342}, + [6631] = {.lex_state = 1342}, [6632] = {.lex_state = 30}, - [6633] = {.lex_state = 30}, - [6634] = {.lex_state = 1329}, - [6635] = {.lex_state = 1329}, + [6633] = {.lex_state = 1342}, + [6634] = {.lex_state = 1342}, + [6635] = {.lex_state = 38}, [6636] = {.lex_state = 30}, - [6637] = {.lex_state = 1329}, - [6638] = {.lex_state = 30}, + [6637] = {.lex_state = 38}, + [6638] = {.lex_state = 38}, [6639] = {.lex_state = 30}, - [6640] = {.lex_state = 1329}, - [6641] = {.lex_state = 1329}, - [6642] = {.lex_state = 30}, - [6643] = {.lex_state = 1329}, + [6640] = {.lex_state = 1342}, + [6641] = {.lex_state = 1342}, + [6642] = {.lex_state = 1342}, + [6643] = {.lex_state = 30}, [6644] = {.lex_state = 30}, - [6645] = {.lex_state = 30}, - [6646] = {.lex_state = 38}, - [6647] = {.lex_state = 30}, + [6645] = {.lex_state = 1342}, + [6646] = {.lex_state = 1342}, + [6647] = {.lex_state = 1342}, [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 = 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}, + [6650] = {.lex_state = 38}, + [6651] = {.lex_state = 1342}, + [6652] = {.lex_state = 1342}, + [6653] = {.lex_state = 1342}, + [6654] = {.lex_state = 30}, + [6655] = {.lex_state = 1342}, + [6656] = {.lex_state = 1342}, + [6657] = {.lex_state = 1342}, + [6658] = {.lex_state = 1342}, + [6659] = {.lex_state = 30}, + [6660] = {.lex_state = 1342}, + [6661] = {.lex_state = 1342}, [6662] = {.lex_state = 30}, - [6663] = {.lex_state = 1329}, + [6663] = {.lex_state = 1342}, [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 = 1329}, - [6680] = {.lex_state = 37}, - [6681] = {.lex_state = 1329}, - [6682] = {.lex_state = 1329}, + [6665] = {.lex_state = 30}, + [6666] = {.lex_state = 1342}, + [6667] = {.lex_state = 1342}, + [6668] = {.lex_state = 30}, + [6669] = {.lex_state = 30}, + [6670] = {.lex_state = 1342}, + [6671] = {.lex_state = 30}, + [6672] = {.lex_state = 30}, + [6673] = {.lex_state = 30}, + [6674] = {.lex_state = 30}, + [6675] = {.lex_state = 1342}, + [6676] = {.lex_state = 30}, + [6677] = {.lex_state = 30}, + [6678] = {.lex_state = 1342}, + [6679] = {.lex_state = 1342}, + [6680] = {.lex_state = 1342}, + [6681] = {.lex_state = 1342}, + [6682] = {.lex_state = 38}, [6683] = {.lex_state = 30}, - [6684] = {.lex_state = 30}, - [6685] = {.lex_state = 1329}, + [6684] = {.lex_state = 38}, + [6685] = {.lex_state = 38}, [6686] = {.lex_state = 30}, - [6687] = {.lex_state = 1329}, - [6688] = {.lex_state = 30}, - [6689] = {.lex_state = 1329}, - [6690] = {.lex_state = 1329}, - [6691] = {.lex_state = 1329}, - [6692] = {.lex_state = 30}, - [6693] = {.lex_state = 1329}, - [6694] = {.lex_state = 1329}, - [6695] = {.lex_state = 1329}, - [6696] = {.lex_state = 1329}, - [6697] = {.lex_state = 38}, - [6698] = {.lex_state = 1329}, + [6687] = {.lex_state = 30}, + [6688] = {.lex_state = 1342}, + [6689] = {.lex_state = 1342}, + [6690] = {.lex_state = 30}, + [6691] = {.lex_state = 30}, + [6692] = {.lex_state = 1342}, + [6693] = {.lex_state = 30}, + [6694] = {.lex_state = 38}, + [6695] = {.lex_state = 38}, + [6696] = {.lex_state = 38}, + [6697] = {.lex_state = 1342}, + [6698] = {.lex_state = 1342}, [6699] = {.lex_state = 30}, - [6700] = {.lex_state = 30}, + [6700] = {.lex_state = 1342}, [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}, + [6702] = {.lex_state = 1342}, + [6703] = {.lex_state = 30}, + [6704] = {.lex_state = 30}, + [6705] = {.lex_state = 30}, + [6706] = {.lex_state = 1342}, + [6707] = {.lex_state = 1342}, + [6708] = {.lex_state = 1342}, [6709] = {.lex_state = 30}, [6710] = {.lex_state = 30}, [6711] = {.lex_state = 30}, - [6712] = {.lex_state = 30}, - [6713] = {.lex_state = 1329}, + [6712] = {.lex_state = 38}, + [6713] = {.lex_state = 30}, [6714] = {.lex_state = 30}, - [6715] = {.lex_state = 30}, - [6716] = {.lex_state = 30}, - [6717] = {.lex_state = 1329}, + [6715] = {.lex_state = 1342}, + [6716] = {.lex_state = 1342}, + [6717] = {.lex_state = 30}, [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}, + [6720] = {.lex_state = 30}, + [6721] = {.lex_state = 1342}, + [6722] = {.lex_state = 1342}, + [6723] = {.lex_state = 1342}, + [6724] = {.lex_state = 1342}, + [6725] = {.lex_state = 1342}, + [6726] = {.lex_state = 1342}, + [6727] = {.lex_state = 38}, [6728] = {.lex_state = 30}, - [6729] = {.lex_state = 30}, - [6730] = {.lex_state = 1329}, - [6731] = {.lex_state = 39}, + [6729] = {.lex_state = 38}, + [6730] = {.lex_state = 38}, + [6731] = {.lex_state = 30}, [6732] = {.lex_state = 30}, - [6733] = {.lex_state = 30}, - [6734] = {.lex_state = 30}, + [6733] = {.lex_state = 1342}, + [6734] = {.lex_state = 1342}, [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}, + [6736] = {.lex_state = 1342}, + [6737] = {.lex_state = 1342}, + [6738] = {.lex_state = 30}, + [6739] = {.lex_state = 38}, + [6740] = {.lex_state = 38}, + [6741] = {.lex_state = 38}, + [6742] = {.lex_state = 1342}, + [6743] = {.lex_state = 1342}, [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}, + [6746] = {.lex_state = 30}, + [6747] = {.lex_state = 30}, + [6748] = {.lex_state = 1342}, + [6749] = {.lex_state = 1342}, + [6750] = {.lex_state = 1342}, + [6751] = {.lex_state = 38}, + [6752] = {.lex_state = 1342}, + [6753] = {.lex_state = 30}, + [6754] = {.lex_state = 1342}, [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}, + [6756] = {.lex_state = 1342}, + [6757] = {.lex_state = 1342}, + [6758] = {.lex_state = 1342}, + [6759] = {.lex_state = 1342}, + [6760] = {.lex_state = 1342}, + [6761] = {.lex_state = 1342}, + [6762] = {.lex_state = 1342}, [6763] = {.lex_state = 30}, [6764] = {.lex_state = 30}, - [6765] = {.lex_state = 1329}, - [6766] = {.lex_state = 1329}, - [6767] = {.lex_state = 1329}, + [6765] = {.lex_state = 30}, + [6766] = {.lex_state = 30}, + [6767] = {.lex_state = 30}, [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}, + [6769] = {.lex_state = 1342}, + [6770] = {.lex_state = 216}, + [6771] = {.lex_state = 30}, + [6772] = {.lex_state = 1342}, + [6773] = {.lex_state = 30}, + [6774] = {.lex_state = 38}, + [6775] = {.lex_state = 30}, + [6776] = {.lex_state = 30}, [6777] = {.lex_state = 30}, - [6778] = {.lex_state = 216}, - [6779] = {.lex_state = 1329}, - [6780] = {.lex_state = 38}, - [6781] = {.lex_state = 1329}, + [6778] = {.lex_state = 30}, + [6779] = {.lex_state = 1342}, + [6780] = {.lex_state = 1342}, + [6781] = {.lex_state = 1342}, [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}, + [6783] = {.lex_state = 30}, + [6784] = {.lex_state = 1342}, + [6785] = {.lex_state = 1342}, + [6786] = {.lex_state = 1342}, + [6787] = {.lex_state = 1342}, + [6788] = {.lex_state = 1356}, [6789] = {.lex_state = 30}, - [6790] = {.lex_state = 30}, - [6791] = {.lex_state = 1329}, - [6792] = {.lex_state = 30}, + [6790] = {.lex_state = 1342}, + [6791] = {.lex_state = 30}, + [6792] = {.lex_state = 1342}, [6793] = {.lex_state = 30}, [6794] = {.lex_state = 30}, - [6795] = {.lex_state = 1329}, + [6795] = {.lex_state = 1342}, [6796] = {.lex_state = 30}, - [6797] = {.lex_state = 30}, + [6797] = {.lex_state = 1342}, [6798] = {.lex_state = 30}, - [6799] = {.lex_state = 1329}, + [6799] = {.lex_state = 30}, [6800] = {.lex_state = 30}, - [6801] = {.lex_state = 30}, - [6802] = {.lex_state = 1329}, - [6803] = {.lex_state = 1329}, - [6804] = {.lex_state = 1329}, + [6801] = {.lex_state = 1342}, + [6802] = {.lex_state = 30}, + [6803] = {.lex_state = 30}, + [6804] = {.lex_state = 30}, [6805] = {.lex_state = 30}, - [6806] = {.lex_state = 1329}, - [6807] = {.lex_state = 1329}, + [6806] = {.lex_state = 1342}, + [6807] = {.lex_state = 216}, [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)}, + [6809] = {.lex_state = 1342}, + [6810] = {.lex_state = 30}, + [6811] = {.lex_state = 1342}, + [6812] = {.lex_state = 30}, + [6813] = {.lex_state = 30}, + [6814] = {.lex_state = 1342}, + [6815] = {.lex_state = 1342}, + [6816] = {.lex_state = 30}, + [6817] = {.lex_state = 30}, + [6818] = {.lex_state = 30}, + [6819] = {.lex_state = 30}, + [6820] = {.lex_state = 1342}, + [6821] = {.lex_state = 1342}, + [6822] = {.lex_state = 30}, + [6823] = {.lex_state = 38}, + [6824] = {.lex_state = 30}, + [6825] = {.lex_state = 38}, + [6826] = {.lex_state = 30}, + [6827] = {.lex_state = 1342}, + [6828] = {.lex_state = 30}, + [6829] = {.lex_state = 30}, + [6830] = {.lex_state = 30}, + [6831] = {.lex_state = 30}, + [6832] = {.lex_state = 1342}, + [6833] = {.lex_state = 1342}, + [6834] = {.lex_state = 1342}, + [6835] = {.lex_state = 30}, + [6836] = {.lex_state = 30}, + [6837] = {.lex_state = 30}, + [6838] = {.lex_state = 1342}, + [6839] = {.lex_state = 1342}, + [6840] = {.lex_state = 30}, + [6841] = {.lex_state = 1342}, + [6842] = {.lex_state = 30}, + [6843] = {.lex_state = 1342}, + [6844] = {.lex_state = 30}, + [6845] = {.lex_state = 1342}, + [6846] = {.lex_state = 30}, + [6847] = {.lex_state = 30}, + [6848] = {.lex_state = 30}, + [6849] = {.lex_state = 30}, + [6850] = {.lex_state = 1342}, + [6851] = {.lex_state = 30}, + [6852] = {.lex_state = 30}, + [6853] = {.lex_state = 30}, + [6854] = {.lex_state = 30}, + [6855] = {.lex_state = 30}, + [6856] = {.lex_state = 1342}, + [6857] = {.lex_state = 1342}, + [6858] = {.lex_state = 1342}, + [6859] = {.lex_state = 1342}, + [6860] = {.lex_state = 1342}, + [6861] = {.lex_state = 1342}, + [6862] = {.lex_state = 1342}, + [6863] = {.lex_state = 30}, + [6864] = {.lex_state = 1342}, + [6865] = {.lex_state = 30}, + [6866] = {.lex_state = 1342}, + [6867] = {.lex_state = 30}, + [6868] = {.lex_state = 30}, + [6869] = {.lex_state = 38}, + [6870] = {.lex_state = 1342}, + [6871] = {.lex_state = 30}, + [6872] = {.lex_state = 30}, + [6873] = {.lex_state = 1342}, + [6874] = {.lex_state = 1342}, + [6875] = {.lex_state = 1342}, + [6876] = {.lex_state = 1342}, + [6877] = {.lex_state = 30}, + [6878] = {.lex_state = 1342}, + [6879] = {.lex_state = 1342}, + [6880] = {.lex_state = 30}, + [6881] = {.lex_state = 30}, + [6882] = {.lex_state = 1342}, + [6883] = {.lex_state = 40}, + [6884] = {.lex_state = 40}, + [6885] = {.lex_state = 1342}, + [6886] = {.lex_state = 30}, + [6887] = {.lex_state = 1342}, + [6888] = {.lex_state = 30}, + [6889] = {.lex_state = 1342}, + [6890] = {.lex_state = 30}, + [6891] = {.lex_state = 30}, + [6892] = {.lex_state = 1342}, + [6893] = {.lex_state = 30}, + [6894] = {.lex_state = 30}, + [6895] = {.lex_state = 1342}, + [6896] = {.lex_state = 134}, + [6897] = {.lex_state = 30}, + [6898] = {(TSStateId)(-1)}, + [6899] = {(TSStateId)(-1)}, + [6900] = {(TSStateId)(-1)}, + [6901] = {(TSStateId)(-1)}, + [6902] = {(TSStateId)(-1)}, }; enum { @@ -44360,11 +44773,11 @@ static const bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__augmented_assignment] = true, }, [19] = { - [ts_external_token__namecolon] = true, - [ts_external_token__augmented_assignment] = true, + [ts_external_token__special_character] = true, }, [20] = { - [ts_external_token__special_character] = true, + [ts_external_token__namecolon] = true, + [ts_external_token__augmented_assignment] = true, }, [21] = { [ts_external_token__augmented_assignment] = true, @@ -44644,6 +45057,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_run_tuning_token5] = ACTIONS(1), [aux_sym_run_tuning_token6] = ACTIONS(1), [aux_sym_run_statement_token1] = ACTIONS(1), + [aux_sym_enum_member_token1] = ACTIONS(1), + [aux_sym_enum_definition_token1] = ACTIONS(1), + [aux_sym_enum_tuning_token1] = ACTIONS(1), [sym__namedot] = ACTIONS(1), [sym__namecolon] = ACTIONS(1), [sym__namedoublecolon] = ACTIONS(1), @@ -44654,57 +45070,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__special_character] = ACTIONS(1), }, [1] = { - [sym_source_code] = STATE(6783), + [sym_source_code] = STATE(6866), [sym_comment] = STATE(1), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(1), - [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), + [sym_assignment] = STATE(6864), + [sym_variable_assignment] = STATE(2002), + [sym_variable_definition] = STATE(2002), + [sym_buffer_definition] = STATE(2002), + [sym_query_definition] = STATE(2002), + [sym_function_call_statement] = STATE(2002), + [sym_function_call] = STATE(5221), + [sym_if_statement] = STATE(2002), + [sym_label] = STATE(2006), + [sym_repeat_statement] = STATE(2002), + [sym_procedure_statement] = STATE(2002), + [sym_procedure_parameter_definition] = STATE(2002), + [sym_function_statement] = STATE(2002), + [sym_return_statement] = STATE(2002), + [sym_interface_statement] = STATE(2002), + [sym_dataset_definition] = STATE(2002), + [sym_using_statement] = STATE(2002), + [sym_class_statement] = STATE(2002), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2002), + [sym_input_close_statement] = STATE(2002), + [sym_output_close_statement] = STATE(2002), + [sym__stream_statement] = STATE(2002), + [sym_input_stream_statement] = STATE(2009), + [sym_output_stream_statement] = STATE(2009), + [sym_do_block] = STATE(2002), + [sym_case_statement] = STATE(2002), + [sym_for_statement] = STATE(2002), + [sym_find_statement] = STATE(2002), + [sym_abl_statement] = STATE(2002), + [sym_assign_statement] = STATE(2002), + [sym_catch_statement] = STATE(2002), + [sym_finally_statement] = STATE(2002), + [sym_accumulate_statement] = STATE(2002), + [sym_undo_statement] = STATE(2002), + [sym_error_scope_statement] = STATE(2002), + [sym_workfile_definition] = STATE(2002), + [sym_temp_table_definition] = STATE(2002), + [sym_on_statement] = STATE(2002), + [sym_prompt_for_statement] = STATE(2002), + [sym_var_statement] = STATE(2002), + [sym_button_definition] = STATE(2002), + [sym_run_statement] = STATE(2002), + [sym_enum_statement] = STATE(2002), + [sym__statement] = STATE(2030), + [aux_sym_source_code_repeat1] = STATE(57), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -44738,2072 +45155,1981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_prompt_for_statement_token1] = ACTIONS(59), [aux_sym_var_statement_token1] = ACTIONS(61), [aux_sym_run_statement_token1] = ACTIONS(63), + [aux_sym_enum_definition_token1] = ACTIONS(65), }, [2] = { [sym_comment] = STATE(2), [sym_include] = STATE(2), - [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), + [sym_function_arguments] = STATE(26), + [aux_sym_qualified_name_repeat1] = STATE(17), + [aux_sym_object_access_repeat1] = STATE(6), + [aux_sym_member_access_repeat1] = STATE(20), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [aux_sym__block_terminator_token1] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(67), + [aux_sym_unary_expression_token2] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [aux_sym__multiplicative_operator_token1] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_when_expression_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(73), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [aux_sym_variable_tuning_token7] = ACTIONS(67), + [aux_sym_variable_tuning_token8] = ACTIONS(67), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_statement_token1] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_repeat_tuning_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_option_token1] = ACTIONS(67), + [aux_sym_field_option_token2] = ACTIONS(67), + [aux_sym_field_option_token3] = ACTIONS(67), + [aux_sym_field_option_token4] = ACTIONS(67), + [aux_sym_field_option_token5] = ACTIONS(67), + [aux_sym_field_option_token6] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__namedot] = ACTIONS(81), + [sym__namecolon] = ACTIONS(83), + [sym__namedoublecolon] = ACTIONS(85), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [3] = { [sym_comment] = STATE(3), [sym_include] = STATE(3), - [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), + [sym_function_arguments] = STATE(26), + [aux_sym_qualified_name_repeat1] = STATE(17), + [aux_sym_object_access_repeat1] = STATE(6), + [aux_sym_member_access_repeat1] = STATE(20), + [anon_sym_COLON] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(87), + [sym__terminator] = ACTIONS(87), + [aux_sym__block_terminator_token1] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(79), + [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__namedot] = ACTIONS(81), + [sym__namecolon] = ACTIONS(83), + [sym__namedoublecolon] = ACTIONS(85), + [sym__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), }, [4] = { [sym_comment] = STATE(4), [sym_include] = STATE(4), - [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), + [aux_sym_object_access_repeat1] = STATE(5), + [anon_sym_COLON] = ACTIONS(91), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(91), + [sym__terminator] = ACTIONS(91), + [aux_sym__block_terminator_token1] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_RPAREN] = ACTIONS(91), + [aux_sym_unary_expression_token2] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [aux_sym__multiplicative_operator_token1] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(91), + [anon_sym_LT_GT] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [anon_sym_GT] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(91), + [aux_sym__comparison_operator_token1] = ACTIONS(91), + [aux_sym__comparison_operator_token2] = ACTIONS(91), + [aux_sym__comparison_operator_token3] = ACTIONS(91), + [aux_sym__comparison_operator_token4] = ACTIONS(91), + [aux_sym__comparison_operator_token5] = ACTIONS(91), + [aux_sym__comparison_operator_token6] = ACTIONS(91), + [aux_sym__comparison_operator_token7] = ACTIONS(91), + [aux_sym__comparison_operator_token8] = ACTIONS(91), + [aux_sym__comparison_operator_token9] = ACTIONS(91), + [aux_sym_when_expression_token1] = ACTIONS(91), + [aux_sym_variable_tuning_token1] = ACTIONS(91), + [aux_sym_variable_tuning_token2] = ACTIONS(93), + [aux_sym_variable_tuning_token3] = ACTIONS(91), + [aux_sym_variable_tuning_token4] = ACTIONS(91), + [aux_sym_variable_tuning_token5] = ACTIONS(91), + [aux_sym_variable_tuning_token6] = ACTIONS(91), + [aux_sym_variable_tuning_token7] = ACTIONS(91), + [aux_sym_variable_tuning_token8] = ACTIONS(91), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(91), + [aux_sym_function_call_token1] = ACTIONS(91), + [aux_sym_if_statement_token2] = ACTIONS(91), + [aux_sym_else_statement_token1] = ACTIONS(91), + [aux_sym_while_phrase_token1] = ACTIONS(91), + [aux_sym_repeat_tuning_token1] = ACTIONS(91), + [aux_sym_using_statement_token1] = ACTIONS(91), + [aux_sym_input_stream_tuning_token1] = ACTIONS(91), + [aux_sym_input_stream_tuning_token2] = ACTIONS(91), + [aux_sym_input_stream_tuning_token3] = ACTIONS(91), + [aux_sym_input_stream_tuning_token4] = ACTIONS(91), + [aux_sym_input_stream_tuning_token5] = ACTIONS(91), + [aux_sym_input_stream_tuning_token6] = ACTIONS(91), + [aux_sym_input_stream_tuning_token7] = ACTIONS(91), + [aux_sym_input_stream_tuning_token8] = ACTIONS(91), + [aux_sym_input_stream_tuning_token9] = ACTIONS(91), + [aux_sym_input_stream_tuning_token11] = ACTIONS(91), + [aux_sym_output_stream_tuning_token1] = ACTIONS(91), + [aux_sym_output_stream_tuning_token2] = ACTIONS(91), + [aux_sym_output_stream_tuning_token3] = ACTIONS(91), + [aux_sym_output_stream_tuning_token4] = ACTIONS(91), + [aux_sym_output_stream_tuning_token5] = ACTIONS(91), + [aux_sym_output_stream_tuning_token6] = ACTIONS(91), + [aux_sym_output_stream_tuning_token7] = ACTIONS(91), + [aux_sym_output_stream_statement_token1] = ACTIONS(91), + [aux_sym_on_error_phrase_token1] = ACTIONS(91), + [aux_sym_stop_after_phrase_token1] = ACTIONS(91), + [aux_sym_do_tuning_token1] = ACTIONS(91), + [anon_sym_BY] = ACTIONS(91), + [aux_sym_where_clause_token1] = ACTIONS(91), + [aux_sym_query_tuning_token1] = ACTIONS(91), + [aux_sym_query_tuning_token2] = ACTIONS(91), + [aux_sym_query_tuning_token3] = ACTIONS(91), + [aux_sym_query_tuning_token4] = ACTIONS(91), + [aux_sym_query_tuning_token5] = ACTIONS(91), + [aux_sym_of_token1] = ACTIONS(91), + [aux_sym_field_option_token1] = ACTIONS(91), + [aux_sym_field_option_token2] = ACTIONS(91), + [aux_sym_field_option_token3] = ACTIONS(91), + [aux_sym_field_option_token4] = ACTIONS(91), + [aux_sym_field_option_token5] = ACTIONS(91), + [aux_sym_field_option_token6] = ACTIONS(91), + [aux_sym_field_definition_token1] = ACTIONS(91), + [aux_sym_index_definition_token1] = ACTIONS(91), + [aux_sym_on_statement_token1] = ACTIONS(91), + [sym__namecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(91), + [sym__and_operator] = ACTIONS(91), }, [5] = { [sym_comment] = STATE(5), [sym_include] = STATE(5), - [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), + [aux_sym_object_access_repeat1] = STATE(5), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(95), + [sym__terminator] = ACTIONS(95), + [aux_sym__block_terminator_token1] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [aux_sym_unary_expression_token2] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [aux_sym__multiplicative_operator_token1] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_LT_GT] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(95), + [aux_sym__comparison_operator_token1] = ACTIONS(95), + [aux_sym__comparison_operator_token2] = ACTIONS(95), + [aux_sym__comparison_operator_token3] = ACTIONS(95), + [aux_sym__comparison_operator_token4] = ACTIONS(95), + [aux_sym__comparison_operator_token5] = ACTIONS(95), + [aux_sym__comparison_operator_token6] = ACTIONS(95), + [aux_sym__comparison_operator_token7] = ACTIONS(95), + [aux_sym__comparison_operator_token8] = ACTIONS(95), + [aux_sym__comparison_operator_token9] = ACTIONS(95), + [aux_sym_when_expression_token1] = ACTIONS(95), + [aux_sym_variable_tuning_token1] = ACTIONS(95), + [aux_sym_variable_tuning_token2] = ACTIONS(97), + [aux_sym_variable_tuning_token3] = ACTIONS(95), + [aux_sym_variable_tuning_token4] = ACTIONS(95), + [aux_sym_variable_tuning_token5] = ACTIONS(95), + [aux_sym_variable_tuning_token6] = ACTIONS(95), + [aux_sym_variable_tuning_token7] = ACTIONS(95), + [aux_sym_variable_tuning_token8] = ACTIONS(95), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(95), + [aux_sym_function_call_token1] = ACTIONS(95), + [aux_sym_if_statement_token2] = ACTIONS(95), + [aux_sym_else_statement_token1] = ACTIONS(95), + [aux_sym_while_phrase_token1] = ACTIONS(95), + [aux_sym_repeat_tuning_token1] = ACTIONS(95), + [aux_sym_using_statement_token1] = ACTIONS(95), + [aux_sym_input_stream_tuning_token1] = ACTIONS(95), + [aux_sym_input_stream_tuning_token2] = ACTIONS(95), + [aux_sym_input_stream_tuning_token3] = ACTIONS(95), + [aux_sym_input_stream_tuning_token4] = ACTIONS(95), + [aux_sym_input_stream_tuning_token5] = ACTIONS(95), + [aux_sym_input_stream_tuning_token6] = ACTIONS(95), + [aux_sym_input_stream_tuning_token7] = ACTIONS(95), + [aux_sym_input_stream_tuning_token8] = ACTIONS(95), + [aux_sym_input_stream_tuning_token9] = ACTIONS(95), + [aux_sym_input_stream_tuning_token11] = ACTIONS(95), + [aux_sym_output_stream_tuning_token1] = ACTIONS(95), + [aux_sym_output_stream_tuning_token2] = ACTIONS(95), + [aux_sym_output_stream_tuning_token3] = ACTIONS(95), + [aux_sym_output_stream_tuning_token4] = ACTIONS(95), + [aux_sym_output_stream_tuning_token5] = ACTIONS(95), + [aux_sym_output_stream_tuning_token6] = ACTIONS(95), + [aux_sym_output_stream_tuning_token7] = ACTIONS(95), + [aux_sym_output_stream_statement_token1] = ACTIONS(95), + [aux_sym_on_error_phrase_token1] = ACTIONS(95), + [aux_sym_stop_after_phrase_token1] = ACTIONS(95), + [aux_sym_do_tuning_token1] = ACTIONS(95), + [anon_sym_BY] = ACTIONS(95), + [aux_sym_where_clause_token1] = ACTIONS(95), + [aux_sym_query_tuning_token1] = ACTIONS(95), + [aux_sym_query_tuning_token2] = ACTIONS(95), + [aux_sym_query_tuning_token3] = ACTIONS(95), + [aux_sym_query_tuning_token4] = ACTIONS(95), + [aux_sym_query_tuning_token5] = ACTIONS(95), + [aux_sym_of_token1] = ACTIONS(95), + [aux_sym_field_option_token1] = ACTIONS(95), + [aux_sym_field_option_token2] = ACTIONS(95), + [aux_sym_field_option_token3] = ACTIONS(95), + [aux_sym_field_option_token4] = ACTIONS(95), + [aux_sym_field_option_token5] = ACTIONS(95), + [aux_sym_field_option_token6] = ACTIONS(95), + [aux_sym_field_definition_token1] = ACTIONS(95), + [aux_sym_index_definition_token1] = ACTIONS(95), + [aux_sym_on_statement_token1] = ACTIONS(95), + [sym__namecolon] = ACTIONS(99), + [sym__or_operator] = ACTIONS(95), + [sym__and_operator] = ACTIONS(95), }, [6] = { [sym_comment] = STATE(6), [sym_include] = STATE(6), - [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), + [aux_sym_object_access_repeat1] = STATE(5), + [anon_sym_COLON] = ACTIONS(91), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(91), + [sym__terminator] = ACTIONS(91), + [aux_sym__block_terminator_token1] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_RPAREN] = ACTIONS(91), + [aux_sym_unary_expression_token2] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [aux_sym__multiplicative_operator_token1] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(91), + [anon_sym_LT_GT] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [anon_sym_GT] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(91), + [aux_sym__comparison_operator_token1] = ACTIONS(91), + [aux_sym__comparison_operator_token2] = ACTIONS(91), + [aux_sym__comparison_operator_token3] = ACTIONS(91), + [aux_sym__comparison_operator_token4] = ACTIONS(91), + [aux_sym__comparison_operator_token5] = ACTIONS(91), + [aux_sym__comparison_operator_token6] = ACTIONS(91), + [aux_sym__comparison_operator_token7] = ACTIONS(91), + [aux_sym__comparison_operator_token8] = ACTIONS(91), + [aux_sym__comparison_operator_token9] = ACTIONS(91), + [aux_sym_when_expression_token1] = ACTIONS(91), + [aux_sym_variable_tuning_token1] = ACTIONS(91), + [aux_sym_variable_tuning_token2] = ACTIONS(93), + [aux_sym_variable_tuning_token3] = ACTIONS(91), + [aux_sym_variable_tuning_token4] = ACTIONS(91), + [aux_sym_variable_tuning_token5] = ACTIONS(91), + [aux_sym_variable_tuning_token6] = ACTIONS(91), + [aux_sym_variable_tuning_token7] = ACTIONS(91), + [aux_sym_variable_tuning_token8] = ACTIONS(91), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(91), + [aux_sym_function_call_token1] = ACTIONS(91), + [aux_sym_if_statement_token2] = ACTIONS(91), + [aux_sym_else_statement_token1] = ACTIONS(91), + [aux_sym_while_phrase_token1] = ACTIONS(91), + [aux_sym_repeat_tuning_token1] = ACTIONS(91), + [aux_sym_using_statement_token1] = ACTIONS(91), + [aux_sym_input_stream_tuning_token1] = ACTIONS(91), + [aux_sym_input_stream_tuning_token2] = ACTIONS(91), + [aux_sym_input_stream_tuning_token3] = ACTIONS(91), + [aux_sym_input_stream_tuning_token4] = ACTIONS(91), + [aux_sym_input_stream_tuning_token5] = ACTIONS(91), + [aux_sym_input_stream_tuning_token6] = ACTIONS(91), + [aux_sym_input_stream_tuning_token7] = ACTIONS(91), + [aux_sym_input_stream_tuning_token8] = ACTIONS(91), + [aux_sym_input_stream_tuning_token9] = ACTIONS(91), + [aux_sym_input_stream_tuning_token11] = ACTIONS(91), + [aux_sym_output_stream_tuning_token1] = ACTIONS(91), + [aux_sym_output_stream_tuning_token2] = ACTIONS(91), + [aux_sym_output_stream_tuning_token3] = ACTIONS(91), + [aux_sym_output_stream_tuning_token4] = ACTIONS(91), + [aux_sym_output_stream_tuning_token5] = ACTIONS(91), + [aux_sym_output_stream_tuning_token6] = ACTIONS(91), + [aux_sym_output_stream_tuning_token7] = ACTIONS(91), + [aux_sym_output_stream_statement_token1] = ACTIONS(91), + [aux_sym_on_error_phrase_token1] = ACTIONS(91), + [aux_sym_stop_after_phrase_token1] = ACTIONS(91), + [aux_sym_do_tuning_token1] = ACTIONS(91), + [anon_sym_BY] = ACTIONS(91), + [aux_sym_where_clause_token1] = ACTIONS(91), + [aux_sym_query_tuning_token1] = ACTIONS(91), + [aux_sym_query_tuning_token2] = ACTIONS(91), + [aux_sym_query_tuning_token3] = ACTIONS(91), + [aux_sym_query_tuning_token4] = ACTIONS(91), + [aux_sym_query_tuning_token5] = ACTIONS(91), + [aux_sym_of_token1] = ACTIONS(91), + [aux_sym_field_option_token1] = ACTIONS(91), + [aux_sym_field_option_token2] = ACTIONS(91), + [aux_sym_field_option_token3] = ACTIONS(91), + [aux_sym_field_option_token4] = ACTIONS(91), + [aux_sym_field_option_token5] = ACTIONS(91), + [aux_sym_field_option_token6] = ACTIONS(91), + [aux_sym_field_definition_token1] = ACTIONS(91), + [aux_sym_index_definition_token1] = ACTIONS(91), + [aux_sym_on_statement_token1] = ACTIONS(91), + [sym__namecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(91), + [sym__and_operator] = ACTIONS(91), }, [7] = { [sym_comment] = STATE(7), [sym_include] = STATE(7), - [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), + [aux_sym_object_access_repeat1] = STATE(5), + [anon_sym_COLON] = ACTIONS(91), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(91), + [sym__terminator] = ACTIONS(91), + [aux_sym__block_terminator_token1] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_RPAREN] = ACTIONS(91), + [aux_sym_unary_expression_token2] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [aux_sym__multiplicative_operator_token1] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(91), + [anon_sym_LT_GT] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [anon_sym_GT] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(91), + [aux_sym__comparison_operator_token1] = ACTIONS(91), + [aux_sym__comparison_operator_token2] = ACTIONS(91), + [aux_sym__comparison_operator_token3] = ACTIONS(91), + [aux_sym__comparison_operator_token4] = ACTIONS(91), + [aux_sym__comparison_operator_token5] = ACTIONS(91), + [aux_sym__comparison_operator_token6] = ACTIONS(91), + [aux_sym__comparison_operator_token7] = ACTIONS(91), + [aux_sym__comparison_operator_token8] = ACTIONS(91), + [aux_sym__comparison_operator_token9] = ACTIONS(91), + [aux_sym_when_expression_token1] = ACTIONS(91), + [aux_sym_variable_tuning_token1] = ACTIONS(91), + [aux_sym_variable_tuning_token2] = ACTIONS(93), + [aux_sym_variable_tuning_token3] = ACTIONS(91), + [aux_sym_variable_tuning_token4] = ACTIONS(91), + [aux_sym_variable_tuning_token5] = ACTIONS(91), + [aux_sym_variable_tuning_token6] = ACTIONS(91), + [aux_sym_variable_tuning_token7] = ACTIONS(91), + [aux_sym_variable_tuning_token8] = ACTIONS(91), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(91), + [aux_sym_function_call_token1] = ACTIONS(91), + [aux_sym_if_statement_token2] = ACTIONS(91), + [aux_sym_else_statement_token1] = ACTIONS(91), + [aux_sym_while_phrase_token1] = ACTIONS(91), + [aux_sym_repeat_tuning_token1] = ACTIONS(91), + [aux_sym_using_statement_token1] = ACTIONS(91), + [aux_sym_input_stream_tuning_token1] = ACTIONS(91), + [aux_sym_input_stream_tuning_token2] = ACTIONS(91), + [aux_sym_input_stream_tuning_token3] = ACTIONS(91), + [aux_sym_input_stream_tuning_token4] = ACTIONS(91), + [aux_sym_input_stream_tuning_token5] = ACTIONS(91), + [aux_sym_input_stream_tuning_token6] = ACTIONS(91), + [aux_sym_input_stream_tuning_token7] = ACTIONS(91), + [aux_sym_input_stream_tuning_token8] = ACTIONS(91), + [aux_sym_input_stream_tuning_token9] = ACTIONS(91), + [aux_sym_input_stream_tuning_token11] = ACTIONS(91), + [aux_sym_output_stream_tuning_token1] = ACTIONS(91), + [aux_sym_output_stream_tuning_token2] = ACTIONS(91), + [aux_sym_output_stream_tuning_token3] = ACTIONS(91), + [aux_sym_output_stream_tuning_token4] = ACTIONS(91), + [aux_sym_output_stream_tuning_token5] = ACTIONS(91), + [aux_sym_output_stream_tuning_token6] = ACTIONS(91), + [aux_sym_output_stream_tuning_token7] = ACTIONS(91), + [aux_sym_output_stream_statement_token1] = ACTIONS(91), + [aux_sym_on_error_phrase_token1] = ACTIONS(91), + [aux_sym_stop_after_phrase_token1] = ACTIONS(91), + [aux_sym_do_tuning_token1] = ACTIONS(91), + [anon_sym_BY] = ACTIONS(91), + [aux_sym_where_clause_token1] = ACTIONS(91), + [aux_sym_query_tuning_token1] = ACTIONS(91), + [aux_sym_query_tuning_token2] = ACTIONS(91), + [aux_sym_query_tuning_token3] = ACTIONS(91), + [aux_sym_query_tuning_token4] = ACTIONS(91), + [aux_sym_query_tuning_token5] = ACTIONS(91), + [aux_sym_of_token1] = ACTIONS(91), + [aux_sym_field_option_token1] = ACTIONS(91), + [aux_sym_field_option_token2] = ACTIONS(91), + [aux_sym_field_option_token3] = ACTIONS(91), + [aux_sym_field_option_token4] = ACTIONS(91), + [aux_sym_field_option_token5] = ACTIONS(91), + [aux_sym_field_option_token6] = ACTIONS(91), + [aux_sym_field_definition_token1] = ACTIONS(91), + [aux_sym_index_definition_token1] = ACTIONS(91), + [aux_sym_on_statement_token1] = ACTIONS(91), + [sym__namecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(91), + [sym__and_operator] = ACTIONS(91), }, [8] = { [sym_comment] = STATE(8), [sym_include] = STATE(8), - [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), + [aux_sym_qualified_name_repeat1] = STATE(17), + [anon_sym_COLON] = ACTIONS(102), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(75), + [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(81), + [sym__or_operator] = ACTIONS(102), + [sym__and_operator] = ACTIONS(102), }, [9] = { [sym_comment] = STATE(9), [sym_include] = STATE(9), - [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), + [anon_sym_COLON] = ACTIONS(106), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(106), + [sym__terminator] = ACTIONS(106), + [aux_sym__block_terminator_token1] = ACTIONS(106), + [anon_sym_LBRACK] = 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__namecolon] = ACTIONS(106), + [sym__or_operator] = ACTIONS(106), + [sym__and_operator] = ACTIONS(106), }, [10] = { [sym_comment] = STATE(10), [sym_include] = STATE(10), - [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), + [anon_sym_COLON] = ACTIONS(110), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(112), + [anon_sym_LBRACE] = ACTIONS(75), + [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), + [anon_sym_NO_DASHERROR] = ACTIONS(112), + [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__namecolon] = ACTIONS(110), + [sym__or_operator] = ACTIONS(110), + [sym__and_operator] = ACTIONS(110), }, [11] = { [sym_comment] = STATE(11), [sym_include] = STATE(11), - [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), + [aux_sym_member_access_repeat1] = STATE(11), + [anon_sym_COLON] = ACTIONS(114), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(114), + [sym__terminator] = ACTIONS(114), + [aux_sym__block_terminator_token1] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_RBRACK] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [aux_sym_unary_expression_token2] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(114), + [anon_sym_DASH] = ACTIONS(114), + [aux_sym__multiplicative_operator_token1] = ACTIONS(114), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_LT_GT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(114), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_GT_EQ] = ACTIONS(114), + [aux_sym__comparison_operator_token1] = ACTIONS(114), + [aux_sym__comparison_operator_token2] = ACTIONS(114), + [aux_sym__comparison_operator_token3] = ACTIONS(114), + [aux_sym__comparison_operator_token4] = ACTIONS(114), + [aux_sym__comparison_operator_token5] = ACTIONS(114), + [aux_sym__comparison_operator_token6] = ACTIONS(114), + [aux_sym__comparison_operator_token7] = ACTIONS(114), + [aux_sym__comparison_operator_token8] = ACTIONS(114), + [aux_sym__comparison_operator_token9] = ACTIONS(114), + [aux_sym_when_expression_token1] = ACTIONS(114), + [aux_sym_variable_tuning_token1] = ACTIONS(114), + [aux_sym_variable_tuning_token2] = ACTIONS(116), + [aux_sym_variable_tuning_token3] = ACTIONS(114), + [aux_sym_variable_tuning_token4] = ACTIONS(114), + [aux_sym_variable_tuning_token5] = ACTIONS(114), + [aux_sym_variable_tuning_token6] = ACTIONS(114), + [aux_sym_variable_tuning_token7] = ACTIONS(114), + [aux_sym_variable_tuning_token8] = ACTIONS(114), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(114), + [aux_sym_function_call_token1] = ACTIONS(114), + [aux_sym_if_statement_token2] = ACTIONS(114), + [aux_sym_else_statement_token1] = ACTIONS(114), + [aux_sym_while_phrase_token1] = ACTIONS(114), + [aux_sym_repeat_tuning_token1] = ACTIONS(114), + [aux_sym_using_statement_token1] = ACTIONS(114), + [aux_sym_input_stream_tuning_token1] = ACTIONS(114), + [aux_sym_input_stream_tuning_token2] = ACTIONS(114), + [aux_sym_input_stream_tuning_token3] = ACTIONS(114), + [aux_sym_input_stream_tuning_token4] = ACTIONS(114), + [aux_sym_input_stream_tuning_token5] = ACTIONS(114), + [aux_sym_input_stream_tuning_token6] = ACTIONS(114), + [aux_sym_input_stream_tuning_token7] = ACTIONS(114), + [aux_sym_input_stream_tuning_token8] = ACTIONS(114), + [aux_sym_input_stream_tuning_token9] = ACTIONS(114), + [aux_sym_input_stream_tuning_token11] = ACTIONS(114), + [aux_sym_output_stream_tuning_token1] = ACTIONS(114), + [aux_sym_output_stream_tuning_token2] = ACTIONS(114), + [aux_sym_output_stream_tuning_token3] = ACTIONS(114), + [aux_sym_output_stream_tuning_token4] = ACTIONS(114), + [aux_sym_output_stream_tuning_token5] = ACTIONS(114), + [aux_sym_output_stream_tuning_token6] = ACTIONS(114), + [aux_sym_output_stream_tuning_token7] = ACTIONS(114), + [aux_sym_output_stream_statement_token1] = ACTIONS(114), + [aux_sym_on_error_phrase_token1] = ACTIONS(114), + [aux_sym_stop_after_phrase_token1] = ACTIONS(114), + [aux_sym_do_tuning_token1] = ACTIONS(114), + [anon_sym_BY] = ACTIONS(114), + [aux_sym_where_clause_token1] = ACTIONS(114), + [aux_sym_query_tuning_token1] = ACTIONS(114), + [aux_sym_query_tuning_token2] = ACTIONS(114), + [aux_sym_query_tuning_token3] = ACTIONS(114), + [aux_sym_query_tuning_token4] = ACTIONS(114), + [aux_sym_query_tuning_token5] = ACTIONS(114), + [aux_sym_of_token1] = ACTIONS(114), + [aux_sym_field_option_token1] = ACTIONS(114), + [aux_sym_field_option_token2] = ACTIONS(114), + [aux_sym_field_option_token3] = ACTIONS(114), + [aux_sym_field_option_token4] = ACTIONS(114), + [aux_sym_field_option_token5] = ACTIONS(114), + [aux_sym_field_option_token6] = ACTIONS(114), + [aux_sym_field_definition_token1] = ACTIONS(114), + [aux_sym_index_definition_token1] = ACTIONS(114), + [aux_sym_on_statement_token1] = ACTIONS(114), + [sym__namedoublecolon] = ACTIONS(118), + [sym__or_operator] = ACTIONS(114), + [sym__and_operator] = ACTIONS(114), }, [12] = { [sym_comment] = STATE(12), [sym_include] = STATE(12), - [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), + [aux_sym_object_access_repeat1] = STATE(4), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [aux_sym__block_terminator_token1] = ACTIONS(67), + [anon_sym_COMMA] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(67), + [aux_sym_unary_expression_token2] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [aux_sym__multiplicative_operator_token1] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_when_expression_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(73), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [aux_sym_variable_tuning_token7] = ACTIONS(67), + [aux_sym_variable_tuning_token8] = ACTIONS(67), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_statement_token1] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_repeat_tuning_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_option_token1] = ACTIONS(67), + [aux_sym_field_option_token2] = ACTIONS(67), + [aux_sym_field_option_token3] = ACTIONS(67), + [aux_sym_field_option_token4] = ACTIONS(67), + [aux_sym_field_option_token5] = ACTIONS(67), + [aux_sym_field_option_token6] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__namecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [13] = { [sym_comment] = STATE(13), [sym_include] = STATE(13), - [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), + [sym_function_arguments] = STATE(26), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [aux_sym__block_terminator_token1] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(79), + [anon_sym_RPAREN] = ACTIONS(67), + [aux_sym_unary_expression_token2] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [aux_sym__multiplicative_operator_token1] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_when_expression_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(73), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [aux_sym_variable_tuning_token7] = ACTIONS(67), + [aux_sym_variable_tuning_token8] = ACTIONS(67), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_statement_token1] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_repeat_tuning_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_option_token1] = ACTIONS(67), + [aux_sym_field_option_token2] = ACTIONS(67), + [aux_sym_field_option_token3] = ACTIONS(67), + [aux_sym_field_option_token4] = ACTIONS(67), + [aux_sym_field_option_token5] = ACTIONS(67), + [aux_sym_field_option_token6] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [14] = { [sym_comment] = STATE(14), [sym_include] = STATE(14), - [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), + [aux_sym_qualified_name_repeat1] = STATE(14), + [anon_sym_COLON] = ACTIONS(121), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(121), + [sym__terminator] = ACTIONS(121), + [aux_sym__block_terminator_token1] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [aux_sym_unary_expression_token2] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [aux_sym__multiplicative_operator_token1] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_LT_GT] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_GT_EQ] = ACTIONS(121), + [aux_sym__comparison_operator_token1] = ACTIONS(121), + [aux_sym__comparison_operator_token2] = ACTIONS(121), + [aux_sym__comparison_operator_token3] = ACTIONS(121), + [aux_sym__comparison_operator_token4] = ACTIONS(121), + [aux_sym__comparison_operator_token5] = ACTIONS(121), + [aux_sym__comparison_operator_token6] = ACTIONS(121), + [aux_sym__comparison_operator_token7] = ACTIONS(121), + [aux_sym__comparison_operator_token8] = ACTIONS(121), + [aux_sym__comparison_operator_token9] = ACTIONS(121), + [aux_sym_when_expression_token1] = ACTIONS(121), + [aux_sym_variable_tuning_token1] = ACTIONS(121), + [aux_sym_variable_tuning_token2] = ACTIONS(123), + [aux_sym_variable_tuning_token3] = ACTIONS(121), + [aux_sym_variable_tuning_token4] = ACTIONS(121), + [aux_sym_variable_tuning_token5] = ACTIONS(121), + [aux_sym_variable_tuning_token6] = ACTIONS(121), + [aux_sym_variable_tuning_token7] = ACTIONS(121), + [aux_sym_variable_tuning_token8] = ACTIONS(121), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(121), + [aux_sym_function_call_token1] = ACTIONS(121), + [aux_sym_if_statement_token2] = ACTIONS(121), + [aux_sym_else_statement_token1] = ACTIONS(121), + [aux_sym_while_phrase_token1] = ACTIONS(121), + [aux_sym_repeat_tuning_token1] = ACTIONS(121), + [aux_sym_using_statement_token1] = ACTIONS(121), + [aux_sym_input_stream_tuning_token1] = ACTIONS(121), + [aux_sym_input_stream_tuning_token2] = ACTIONS(121), + [aux_sym_input_stream_tuning_token3] = ACTIONS(121), + [aux_sym_input_stream_tuning_token4] = ACTIONS(121), + [aux_sym_input_stream_tuning_token5] = ACTIONS(121), + [aux_sym_input_stream_tuning_token6] = ACTIONS(121), + [aux_sym_input_stream_tuning_token7] = ACTIONS(121), + [aux_sym_input_stream_tuning_token8] = ACTIONS(121), + [aux_sym_input_stream_tuning_token9] = ACTIONS(121), + [aux_sym_input_stream_tuning_token11] = ACTIONS(121), + [aux_sym_output_stream_tuning_token1] = ACTIONS(121), + [aux_sym_output_stream_tuning_token2] = ACTIONS(121), + [aux_sym_output_stream_tuning_token3] = ACTIONS(121), + [aux_sym_output_stream_tuning_token4] = ACTIONS(121), + [aux_sym_output_stream_tuning_token5] = ACTIONS(121), + [aux_sym_output_stream_tuning_token6] = ACTIONS(121), + [aux_sym_output_stream_tuning_token7] = ACTIONS(121), + [aux_sym_output_stream_statement_token1] = ACTIONS(121), + [aux_sym_on_error_phrase_token1] = ACTIONS(121), + [aux_sym_stop_after_phrase_token1] = ACTIONS(121), + [aux_sym_do_tuning_token1] = ACTIONS(121), + [anon_sym_BY] = ACTIONS(121), + [aux_sym_where_clause_token1] = ACTIONS(121), + [aux_sym_query_tuning_token1] = ACTIONS(121), + [aux_sym_query_tuning_token2] = ACTIONS(121), + [aux_sym_query_tuning_token3] = ACTIONS(121), + [aux_sym_query_tuning_token4] = ACTIONS(121), + [aux_sym_query_tuning_token5] = ACTIONS(121), + [aux_sym_of_token1] = ACTIONS(121), + [aux_sym_field_option_token1] = ACTIONS(121), + [aux_sym_field_option_token2] = ACTIONS(121), + [aux_sym_field_option_token3] = ACTIONS(121), + [aux_sym_field_option_token4] = ACTIONS(121), + [aux_sym_field_option_token5] = ACTIONS(121), + [aux_sym_field_option_token6] = ACTIONS(121), + [aux_sym_field_definition_token1] = ACTIONS(121), + [aux_sym_index_definition_token1] = ACTIONS(121), + [aux_sym_on_statement_token1] = ACTIONS(121), + [sym__namedot] = ACTIONS(125), + [sym__or_operator] = ACTIONS(121), + [sym__and_operator] = ACTIONS(121), }, [15] = { [sym_comment] = STATE(15), [sym_include] = STATE(15), - [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), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(75), + [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), + [anon_sym_NO_DASHERROR] = ACTIONS(130), + [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__namecolon] = ACTIONS(128), + [sym__or_operator] = ACTIONS(128), + [sym__and_operator] = ACTIONS(128), }, [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), + [aux_sym_object_access_repeat1] = STATE(4), + [anon_sym_COLON] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(87), + [sym__terminator] = ACTIONS(87), + [aux_sym__block_terminator_token1] = 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(83), + [sym__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), }, [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), + [aux_sym_qualified_name_repeat1] = STATE(14), + [anon_sym_COLON] = ACTIONS(132), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(134), + [anon_sym_LBRACE] = ACTIONS(75), + [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(81), + [sym__or_operator] = ACTIONS(132), + [sym__and_operator] = ACTIONS(132), }, [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), + [aux_sym_qualified_name_repeat1] = STATE(17), + [anon_sym_COLON] = ACTIONS(136), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(136), + [sym__terminator] = ACTIONS(136), + [aux_sym__block_terminator_token1] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(136), + [anon_sym_RBRACK] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(136), + [aux_sym_unary_expression_token2] = ACTIONS(136), + [anon_sym_PLUS] = ACTIONS(136), + [anon_sym_DASH] = ACTIONS(136), + [aux_sym__multiplicative_operator_token1] = ACTIONS(136), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_LT_EQ] = ACTIONS(136), + [anon_sym_LT_GT] = ACTIONS(136), + [anon_sym_EQ] = ACTIONS(136), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_GT_EQ] = ACTIONS(136), + [aux_sym__comparison_operator_token1] = ACTIONS(136), + [aux_sym__comparison_operator_token2] = ACTIONS(136), + [aux_sym__comparison_operator_token3] = ACTIONS(136), + [aux_sym__comparison_operator_token4] = ACTIONS(136), + [aux_sym__comparison_operator_token5] = ACTIONS(136), + [aux_sym__comparison_operator_token6] = ACTIONS(136), + [aux_sym__comparison_operator_token7] = ACTIONS(136), + [aux_sym__comparison_operator_token8] = ACTIONS(136), + [aux_sym__comparison_operator_token9] = ACTIONS(136), + [aux_sym_when_expression_token1] = ACTIONS(136), + [aux_sym_variable_tuning_token1] = ACTIONS(136), + [aux_sym_variable_tuning_token2] = ACTIONS(138), + [aux_sym_variable_tuning_token3] = ACTIONS(136), + [aux_sym_variable_tuning_token4] = ACTIONS(136), + [aux_sym_variable_tuning_token5] = ACTIONS(136), + [aux_sym_variable_tuning_token6] = ACTIONS(136), + [aux_sym_variable_tuning_token7] = ACTIONS(136), + [aux_sym_variable_tuning_token8] = ACTIONS(136), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(136), + [aux_sym_function_call_token1] = ACTIONS(136), + [aux_sym_if_statement_token2] = ACTIONS(136), + [aux_sym_else_statement_token1] = ACTIONS(136), + [aux_sym_while_phrase_token1] = ACTIONS(136), + [aux_sym_repeat_tuning_token1] = ACTIONS(136), + [aux_sym_using_statement_token1] = ACTIONS(136), + [aux_sym_input_stream_tuning_token1] = ACTIONS(136), + [aux_sym_input_stream_tuning_token2] = ACTIONS(136), + [aux_sym_input_stream_tuning_token3] = ACTIONS(136), + [aux_sym_input_stream_tuning_token4] = ACTIONS(136), + [aux_sym_input_stream_tuning_token5] = ACTIONS(136), + [aux_sym_input_stream_tuning_token6] = ACTIONS(136), + [aux_sym_input_stream_tuning_token7] = ACTIONS(136), + [aux_sym_input_stream_tuning_token8] = ACTIONS(136), + [aux_sym_input_stream_tuning_token9] = ACTIONS(136), + [aux_sym_input_stream_tuning_token11] = ACTIONS(136), + [aux_sym_output_stream_tuning_token1] = ACTIONS(136), + [aux_sym_output_stream_tuning_token2] = ACTIONS(136), + [aux_sym_output_stream_tuning_token3] = ACTIONS(136), + [aux_sym_output_stream_tuning_token4] = ACTIONS(136), + [aux_sym_output_stream_tuning_token5] = ACTIONS(136), + [aux_sym_output_stream_tuning_token6] = ACTIONS(136), + [aux_sym_output_stream_tuning_token7] = ACTIONS(136), + [aux_sym_output_stream_statement_token1] = ACTIONS(136), + [aux_sym_on_error_phrase_token1] = ACTIONS(136), + [aux_sym_stop_after_phrase_token1] = ACTIONS(136), + [aux_sym_do_tuning_token1] = ACTIONS(136), + [anon_sym_BY] = ACTIONS(136), + [aux_sym_where_clause_token1] = ACTIONS(136), + [aux_sym_query_tuning_token1] = ACTIONS(136), + [aux_sym_query_tuning_token2] = ACTIONS(136), + [aux_sym_query_tuning_token3] = ACTIONS(136), + [aux_sym_query_tuning_token4] = ACTIONS(136), + [aux_sym_query_tuning_token5] = ACTIONS(136), + [aux_sym_of_token1] = ACTIONS(136), + [aux_sym_field_option_token1] = ACTIONS(136), + [aux_sym_field_option_token2] = ACTIONS(136), + [aux_sym_field_option_token3] = ACTIONS(136), + [aux_sym_field_option_token4] = ACTIONS(136), + [aux_sym_field_option_token5] = ACTIONS(136), + [aux_sym_field_option_token6] = ACTIONS(136), + [aux_sym_field_definition_token1] = ACTIONS(136), + [aux_sym_index_definition_token1] = ACTIONS(136), + [aux_sym_on_statement_token1] = ACTIONS(136), + [sym__namedot] = ACTIONS(81), + [sym__or_operator] = ACTIONS(136), + [sym__and_operator] = ACTIONS(136), }, [19] = { [sym_comment] = STATE(19), [sym_include] = STATE(19), - [anon_sym_COLON] = ACTIONS(138), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(138), - [sym__terminator] = ACTIONS(138), - [aux_sym__block_terminator_token1] = ACTIONS(138), - [anon_sym_COMMA] = ACTIONS(138), - [anon_sym_RBRACK] = ACTIONS(138), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(138), - [aux_sym_unary_expression_token2] = ACTIONS(138), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [aux_sym__multiplicative_operator_token1] = ACTIONS(138), - [anon_sym_LT] = ACTIONS(140), - [anon_sym_LT_EQ] = ACTIONS(138), - [anon_sym_LT_GT] = ACTIONS(138), - [anon_sym_EQ] = ACTIONS(138), - [anon_sym_GT] = ACTIONS(140), - [anon_sym_GT_EQ] = ACTIONS(138), - [aux_sym__comparison_operator_token1] = ACTIONS(138), - [aux_sym__comparison_operator_token2] = ACTIONS(138), - [aux_sym__comparison_operator_token3] = ACTIONS(138), - [aux_sym__comparison_operator_token4] = ACTIONS(138), - [aux_sym__comparison_operator_token5] = ACTIONS(138), - [aux_sym__comparison_operator_token6] = ACTIONS(138), - [aux_sym__comparison_operator_token7] = ACTIONS(138), - [aux_sym__comparison_operator_token8] = ACTIONS(138), - [aux_sym__comparison_operator_token9] = ACTIONS(138), - [aux_sym_when_expression_token1] = ACTIONS(138), - [aux_sym_variable_tuning_token1] = ACTIONS(138), - [aux_sym_variable_tuning_token2] = ACTIONS(140), - [aux_sym_variable_tuning_token3] = ACTIONS(138), - [aux_sym_variable_tuning_token4] = ACTIONS(138), - [aux_sym_variable_tuning_token5] = ACTIONS(138), - [aux_sym_variable_tuning_token6] = ACTIONS(138), - [aux_sym_variable_tuning_token7] = ACTIONS(138), - [aux_sym_variable_tuning_token8] = ACTIONS(138), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(138), - [aux_sym_function_call_token1] = ACTIONS(138), - [aux_sym_if_statement_token2] = ACTIONS(138), - [aux_sym_else_statement_token1] = ACTIONS(138), - [aux_sym_while_phrase_token1] = ACTIONS(138), - [aux_sym_repeat_tuning_token1] = ACTIONS(138), - [aux_sym_using_statement_token1] = ACTIONS(138), - [anon_sym_NO_DASHERROR] = ACTIONS(140), - [aux_sym_input_stream_tuning_token1] = ACTIONS(138), - [aux_sym_input_stream_tuning_token2] = ACTIONS(138), - [aux_sym_input_stream_tuning_token3] = ACTIONS(138), - [aux_sym_input_stream_tuning_token4] = ACTIONS(138), - [aux_sym_input_stream_tuning_token5] = ACTIONS(138), - [aux_sym_input_stream_tuning_token6] = ACTIONS(138), - [aux_sym_input_stream_tuning_token7] = ACTIONS(138), - [aux_sym_input_stream_tuning_token8] = ACTIONS(138), - [aux_sym_input_stream_tuning_token9] = ACTIONS(138), - [aux_sym_input_stream_tuning_token11] = ACTIONS(138), - [aux_sym_output_stream_tuning_token1] = ACTIONS(138), - [aux_sym_output_stream_tuning_token2] = ACTIONS(138), - [aux_sym_output_stream_tuning_token3] = ACTIONS(138), - [aux_sym_output_stream_tuning_token4] = ACTIONS(138), - [aux_sym_output_stream_tuning_token5] = ACTIONS(138), - [aux_sym_output_stream_tuning_token6] = ACTIONS(138), - [aux_sym_output_stream_tuning_token7] = ACTIONS(138), - [aux_sym_output_stream_statement_token1] = ACTIONS(138), - [aux_sym_on_error_phrase_token1] = ACTIONS(138), - [aux_sym_stop_after_phrase_token1] = ACTIONS(138), - [aux_sym_do_tuning_token1] = ACTIONS(138), - [anon_sym_BY] = ACTIONS(138), - [aux_sym_where_clause_token1] = ACTIONS(138), - [aux_sym_query_tuning_token1] = ACTIONS(138), - [aux_sym_query_tuning_token2] = ACTIONS(138), - [aux_sym_query_tuning_token3] = ACTIONS(138), - [aux_sym_query_tuning_token4] = ACTIONS(138), - [aux_sym_query_tuning_token5] = ACTIONS(138), - [aux_sym_of_token1] = ACTIONS(138), - [aux_sym_field_option_token1] = ACTIONS(138), - [aux_sym_field_option_token2] = ACTIONS(138), - [aux_sym_field_option_token3] = ACTIONS(138), - [aux_sym_field_option_token4] = ACTIONS(138), - [aux_sym_field_option_token5] = ACTIONS(138), - [aux_sym_field_option_token6] = ACTIONS(138), - [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), + [anon_sym_COLON] = ACTIONS(140), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(140), + [sym__terminator] = ACTIONS(140), + [aux_sym__block_terminator_token1] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_RBRACK] = ACTIONS(140), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [aux_sym_unary_expression_token2] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(140), + [anon_sym_DASH] = ACTIONS(140), + [aux_sym__multiplicative_operator_token1] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_LT_GT] = ACTIONS(140), + [anon_sym_EQ] = ACTIONS(140), + [anon_sym_GT] = ACTIONS(142), + [anon_sym_GT_EQ] = ACTIONS(140), + [aux_sym__comparison_operator_token1] = ACTIONS(140), + [aux_sym__comparison_operator_token2] = ACTIONS(140), + [aux_sym__comparison_operator_token3] = ACTIONS(140), + [aux_sym__comparison_operator_token4] = ACTIONS(140), + [aux_sym__comparison_operator_token5] = ACTIONS(140), + [aux_sym__comparison_operator_token6] = ACTIONS(140), + [aux_sym__comparison_operator_token7] = ACTIONS(140), + [aux_sym__comparison_operator_token8] = ACTIONS(140), + [aux_sym__comparison_operator_token9] = ACTIONS(140), + [aux_sym_when_expression_token1] = ACTIONS(140), + [aux_sym_variable_tuning_token1] = ACTIONS(140), + [aux_sym_variable_tuning_token2] = ACTIONS(142), + [aux_sym_variable_tuning_token3] = ACTIONS(140), + [aux_sym_variable_tuning_token4] = ACTIONS(140), + [aux_sym_variable_tuning_token5] = ACTIONS(140), + [aux_sym_variable_tuning_token6] = ACTIONS(140), + [aux_sym_variable_tuning_token7] = ACTIONS(140), + [aux_sym_variable_tuning_token8] = ACTIONS(140), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(140), + [aux_sym_function_call_token1] = ACTIONS(140), + [aux_sym_if_statement_token2] = ACTIONS(140), + [aux_sym_else_statement_token1] = ACTIONS(140), + [aux_sym_while_phrase_token1] = ACTIONS(140), + [aux_sym_repeat_tuning_token1] = ACTIONS(140), + [aux_sym_using_statement_token1] = ACTIONS(140), + [anon_sym_NO_DASHERROR] = ACTIONS(142), + [aux_sym_input_stream_tuning_token1] = ACTIONS(140), + [aux_sym_input_stream_tuning_token2] = ACTIONS(140), + [aux_sym_input_stream_tuning_token3] = ACTIONS(140), + [aux_sym_input_stream_tuning_token4] = ACTIONS(140), + [aux_sym_input_stream_tuning_token5] = ACTIONS(140), + [aux_sym_input_stream_tuning_token6] = ACTIONS(140), + [aux_sym_input_stream_tuning_token7] = ACTIONS(140), + [aux_sym_input_stream_tuning_token8] = ACTIONS(140), + [aux_sym_input_stream_tuning_token9] = ACTIONS(140), + [aux_sym_input_stream_tuning_token11] = ACTIONS(140), + [aux_sym_output_stream_tuning_token1] = ACTIONS(140), + [aux_sym_output_stream_tuning_token2] = ACTIONS(140), + [aux_sym_output_stream_tuning_token3] = ACTIONS(140), + [aux_sym_output_stream_tuning_token4] = ACTIONS(140), + [aux_sym_output_stream_tuning_token5] = ACTIONS(140), + [aux_sym_output_stream_tuning_token6] = ACTIONS(140), + [aux_sym_output_stream_tuning_token7] = ACTIONS(140), + [aux_sym_output_stream_statement_token1] = ACTIONS(140), + [aux_sym_on_error_phrase_token1] = ACTIONS(140), + [aux_sym_stop_after_phrase_token1] = ACTIONS(140), + [aux_sym_do_tuning_token1] = ACTIONS(140), + [anon_sym_BY] = ACTIONS(140), + [aux_sym_where_clause_token1] = ACTIONS(140), + [aux_sym_query_tuning_token1] = ACTIONS(140), + [aux_sym_query_tuning_token2] = ACTIONS(140), + [aux_sym_query_tuning_token3] = ACTIONS(140), + [aux_sym_query_tuning_token4] = ACTIONS(140), + [aux_sym_query_tuning_token5] = ACTIONS(140), + [aux_sym_of_token1] = ACTIONS(140), + [aux_sym_field_option_token1] = ACTIONS(140), + [aux_sym_field_option_token2] = ACTIONS(140), + [aux_sym_field_option_token3] = ACTIONS(140), + [aux_sym_field_option_token4] = ACTIONS(140), + [aux_sym_field_option_token5] = ACTIONS(140), + [aux_sym_field_option_token6] = ACTIONS(140), + [aux_sym_field_definition_token1] = ACTIONS(140), + [aux_sym_index_definition_token1] = ACTIONS(140), + [aux_sym_on_statement_token1] = ACTIONS(140), + [sym__namecolon] = ACTIONS(140), + [sym__or_operator] = ACTIONS(140), + [sym__and_operator] = ACTIONS(140), }, [20] = { [sym_comment] = STATE(20), [sym_include] = STATE(20), - [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_function_call_token1] = 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), - [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), - [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_where_clause_token1] = ACTIONS(142), - [aux_sym_query_tuning_token1] = ACTIONS(142), - [aux_sym_query_tuning_token2] = ACTIONS(142), - [aux_sym_query_tuning_token3] = ACTIONS(142), - [aux_sym_query_tuning_token4] = ACTIONS(142), - [aux_sym_query_tuning_token5] = 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), + [aux_sym_member_access_repeat1] = STATE(11), + [anon_sym_COLON] = ACTIONS(144), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(146), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(144), + [sym__terminator] = ACTIONS(144), + [aux_sym__block_terminator_token1] = ACTIONS(144), + [anon_sym_COMMA] = ACTIONS(144), + [anon_sym_RBRACK] = ACTIONS(144), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_RPAREN] = ACTIONS(144), + [aux_sym_unary_expression_token2] = ACTIONS(144), + [anon_sym_PLUS] = ACTIONS(144), + [anon_sym_DASH] = ACTIONS(144), + [aux_sym__multiplicative_operator_token1] = ACTIONS(144), + [anon_sym_LT] = ACTIONS(146), + [anon_sym_LT_EQ] = ACTIONS(144), + [anon_sym_LT_GT] = ACTIONS(144), + [anon_sym_EQ] = ACTIONS(144), + [anon_sym_GT] = ACTIONS(146), + [anon_sym_GT_EQ] = ACTIONS(144), + [aux_sym__comparison_operator_token1] = ACTIONS(144), + [aux_sym__comparison_operator_token2] = ACTIONS(144), + [aux_sym__comparison_operator_token3] = ACTIONS(144), + [aux_sym__comparison_operator_token4] = ACTIONS(144), + [aux_sym__comparison_operator_token5] = ACTIONS(144), + [aux_sym__comparison_operator_token6] = ACTIONS(144), + [aux_sym__comparison_operator_token7] = ACTIONS(144), + [aux_sym__comparison_operator_token8] = ACTIONS(144), + [aux_sym__comparison_operator_token9] = ACTIONS(144), + [aux_sym_when_expression_token1] = ACTIONS(144), + [aux_sym_variable_tuning_token1] = ACTIONS(144), + [aux_sym_variable_tuning_token2] = ACTIONS(146), + [aux_sym_variable_tuning_token3] = ACTIONS(144), + [aux_sym_variable_tuning_token4] = ACTIONS(144), + [aux_sym_variable_tuning_token5] = ACTIONS(144), + [aux_sym_variable_tuning_token6] = ACTIONS(144), + [aux_sym_variable_tuning_token7] = ACTIONS(144), + [aux_sym_variable_tuning_token8] = ACTIONS(144), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(144), + [aux_sym_function_call_token1] = ACTIONS(144), + [aux_sym_if_statement_token2] = ACTIONS(144), + [aux_sym_else_statement_token1] = ACTIONS(144), + [aux_sym_while_phrase_token1] = ACTIONS(144), + [aux_sym_repeat_tuning_token1] = ACTIONS(144), + [aux_sym_using_statement_token1] = ACTIONS(144), + [aux_sym_input_stream_tuning_token1] = ACTIONS(144), + [aux_sym_input_stream_tuning_token2] = ACTIONS(144), + [aux_sym_input_stream_tuning_token3] = ACTIONS(144), + [aux_sym_input_stream_tuning_token4] = ACTIONS(144), + [aux_sym_input_stream_tuning_token5] = ACTIONS(144), + [aux_sym_input_stream_tuning_token6] = ACTIONS(144), + [aux_sym_input_stream_tuning_token7] = ACTIONS(144), + [aux_sym_input_stream_tuning_token8] = ACTIONS(144), + [aux_sym_input_stream_tuning_token9] = ACTIONS(144), + [aux_sym_input_stream_tuning_token11] = ACTIONS(144), + [aux_sym_output_stream_tuning_token1] = ACTIONS(144), + [aux_sym_output_stream_tuning_token2] = ACTIONS(144), + [aux_sym_output_stream_tuning_token3] = ACTIONS(144), + [aux_sym_output_stream_tuning_token4] = ACTIONS(144), + [aux_sym_output_stream_tuning_token5] = ACTIONS(144), + [aux_sym_output_stream_tuning_token6] = ACTIONS(144), + [aux_sym_output_stream_tuning_token7] = ACTIONS(144), + [aux_sym_output_stream_statement_token1] = ACTIONS(144), + [aux_sym_on_error_phrase_token1] = ACTIONS(144), + [aux_sym_stop_after_phrase_token1] = ACTIONS(144), + [aux_sym_do_tuning_token1] = ACTIONS(144), + [anon_sym_BY] = ACTIONS(144), + [aux_sym_where_clause_token1] = ACTIONS(144), + [aux_sym_query_tuning_token1] = ACTIONS(144), + [aux_sym_query_tuning_token2] = ACTIONS(144), + [aux_sym_query_tuning_token3] = ACTIONS(144), + [aux_sym_query_tuning_token4] = ACTIONS(144), + [aux_sym_query_tuning_token5] = ACTIONS(144), + [aux_sym_of_token1] = ACTIONS(144), + [aux_sym_field_option_token1] = ACTIONS(144), + [aux_sym_field_option_token2] = ACTIONS(144), + [aux_sym_field_option_token3] = ACTIONS(144), + [aux_sym_field_option_token4] = ACTIONS(144), + [aux_sym_field_option_token5] = ACTIONS(144), + [aux_sym_field_option_token6] = ACTIONS(144), + [aux_sym_field_definition_token1] = ACTIONS(144), + [aux_sym_index_definition_token1] = ACTIONS(144), + [aux_sym_on_statement_token1] = ACTIONS(144), + [sym__namedoublecolon] = ACTIONS(85), + [sym__or_operator] = ACTIONS(144), + [sym__and_operator] = ACTIONS(144), }, [21] = { [sym_comment] = STATE(21), [sym_include] = STATE(21), - [anon_sym_COLON] = ACTIONS(146), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(73), - [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_function_call_token1] = 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), - [aux_sym_using_statement_token1] = 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_where_clause_token1] = ACTIONS(146), - [aux_sym_query_tuning_token1] = ACTIONS(146), - [aux_sym_query_tuning_token2] = ACTIONS(146), - [aux_sym_query_tuning_token3] = ACTIONS(146), - [aux_sym_query_tuning_token4] = ACTIONS(146), - [aux_sym_query_tuning_token5] = 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__namecolon] = ACTIONS(146), - [sym__or_operator] = ACTIONS(146), - [sym__and_operator] = ACTIONS(146), + [anon_sym_COLON] = ACTIONS(148), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(148), + [sym__terminator] = ACTIONS(148), + [aux_sym__block_terminator_token1] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_RBRACK] = ACTIONS(148), + [anon_sym_LPAREN] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(148), + [aux_sym_unary_expression_token2] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(148), + [anon_sym_DASH] = ACTIONS(148), + [aux_sym__multiplicative_operator_token1] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_LT_GT] = ACTIONS(148), + [anon_sym_EQ] = ACTIONS(148), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_GT_EQ] = ACTIONS(148), + [aux_sym__comparison_operator_token1] = ACTIONS(148), + [aux_sym__comparison_operator_token2] = ACTIONS(148), + [aux_sym__comparison_operator_token3] = ACTIONS(148), + [aux_sym__comparison_operator_token4] = ACTIONS(148), + [aux_sym__comparison_operator_token5] = ACTIONS(148), + [aux_sym__comparison_operator_token6] = ACTIONS(148), + [aux_sym__comparison_operator_token7] = ACTIONS(148), + [aux_sym__comparison_operator_token8] = ACTIONS(148), + [aux_sym__comparison_operator_token9] = ACTIONS(148), + [aux_sym_when_expression_token1] = ACTIONS(148), + [aux_sym_variable_tuning_token1] = ACTIONS(148), + [aux_sym_variable_tuning_token2] = ACTIONS(150), + [aux_sym_variable_tuning_token3] = ACTIONS(148), + [aux_sym_variable_tuning_token4] = ACTIONS(148), + [aux_sym_variable_tuning_token5] = ACTIONS(148), + [aux_sym_variable_tuning_token6] = ACTIONS(148), + [aux_sym_variable_tuning_token7] = ACTIONS(148), + [aux_sym_variable_tuning_token8] = ACTIONS(148), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(148), + [aux_sym_function_call_token1] = ACTIONS(148), + [aux_sym_if_statement_token2] = ACTIONS(148), + [aux_sym_else_statement_token1] = ACTIONS(148), + [aux_sym_while_phrase_token1] = ACTIONS(148), + [aux_sym_repeat_tuning_token1] = ACTIONS(148), + [aux_sym_using_statement_token1] = ACTIONS(148), + [aux_sym_input_stream_tuning_token1] = ACTIONS(148), + [aux_sym_input_stream_tuning_token2] = ACTIONS(148), + [aux_sym_input_stream_tuning_token3] = ACTIONS(148), + [aux_sym_input_stream_tuning_token4] = ACTIONS(148), + [aux_sym_input_stream_tuning_token5] = ACTIONS(148), + [aux_sym_input_stream_tuning_token6] = ACTIONS(148), + [aux_sym_input_stream_tuning_token7] = ACTIONS(148), + [aux_sym_input_stream_tuning_token8] = ACTIONS(148), + [aux_sym_input_stream_tuning_token9] = ACTIONS(148), + [aux_sym_input_stream_tuning_token11] = ACTIONS(148), + [aux_sym_output_stream_tuning_token1] = ACTIONS(148), + [aux_sym_output_stream_tuning_token2] = ACTIONS(148), + [aux_sym_output_stream_tuning_token3] = ACTIONS(148), + [aux_sym_output_stream_tuning_token4] = ACTIONS(148), + [aux_sym_output_stream_tuning_token5] = ACTIONS(148), + [aux_sym_output_stream_tuning_token6] = ACTIONS(148), + [aux_sym_output_stream_tuning_token7] = ACTIONS(148), + [aux_sym_output_stream_statement_token1] = ACTIONS(148), + [aux_sym_on_error_phrase_token1] = ACTIONS(148), + [aux_sym_stop_after_phrase_token1] = ACTIONS(148), + [aux_sym_do_tuning_token1] = ACTIONS(148), + [anon_sym_BY] = ACTIONS(148), + [aux_sym_where_clause_token1] = ACTIONS(148), + [aux_sym_query_tuning_token1] = ACTIONS(148), + [aux_sym_query_tuning_token2] = ACTIONS(148), + [aux_sym_query_tuning_token3] = ACTIONS(148), + [aux_sym_query_tuning_token4] = ACTIONS(148), + [aux_sym_query_tuning_token5] = ACTIONS(148), + [aux_sym_of_token1] = ACTIONS(148), + [aux_sym_field_option_token1] = ACTIONS(148), + [aux_sym_field_option_token2] = ACTIONS(148), + [aux_sym_field_option_token3] = ACTIONS(148), + [aux_sym_field_option_token4] = ACTIONS(148), + [aux_sym_field_option_token5] = ACTIONS(148), + [aux_sym_field_option_token6] = ACTIONS(148), + [aux_sym_field_definition_token1] = ACTIONS(148), + [aux_sym_index_definition_token1] = ACTIONS(148), + [aux_sym_on_statement_token1] = ACTIONS(148), + [sym__namedoublecolon] = ACTIONS(148), + [sym__or_operator] = ACTIONS(148), + [sym__and_operator] = ACTIONS(148), }, [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), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(152), + [sym__terminator] = ACTIONS(152), + [aux_sym__block_terminator_token1] = ACTIONS(152), + [anon_sym_COMMA] = ACTIONS(152), + [anon_sym_RBRACK] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [aux_sym_unary_expression_token2] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(152), + [aux_sym__multiplicative_operator_token1] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(152), + [anon_sym_LT_GT] = ACTIONS(152), + [anon_sym_EQ] = ACTIONS(152), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(152), + [aux_sym__comparison_operator_token1] = ACTIONS(152), + [aux_sym__comparison_operator_token2] = ACTIONS(152), + [aux_sym__comparison_operator_token3] = ACTIONS(152), + [aux_sym__comparison_operator_token4] = ACTIONS(152), + [aux_sym__comparison_operator_token5] = ACTIONS(152), + [aux_sym__comparison_operator_token6] = ACTIONS(152), + [aux_sym__comparison_operator_token7] = ACTIONS(152), + [aux_sym__comparison_operator_token8] = ACTIONS(152), + [aux_sym__comparison_operator_token9] = ACTIONS(152), + [aux_sym_when_expression_token1] = ACTIONS(152), + [aux_sym_variable_tuning_token1] = ACTIONS(152), + [aux_sym_variable_tuning_token2] = ACTIONS(154), + [aux_sym_variable_tuning_token3] = ACTIONS(152), + [aux_sym_variable_tuning_token4] = ACTIONS(152), + [aux_sym_variable_tuning_token5] = ACTIONS(152), + [aux_sym_variable_tuning_token6] = ACTIONS(152), + [aux_sym_variable_tuning_token7] = ACTIONS(152), + [aux_sym_variable_tuning_token8] = ACTIONS(152), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(152), + [aux_sym_function_call_token1] = ACTIONS(152), + [aux_sym_if_statement_token2] = ACTIONS(152), + [aux_sym_else_statement_token1] = ACTIONS(152), + [aux_sym_while_phrase_token1] = ACTIONS(152), + [aux_sym_repeat_tuning_token1] = ACTIONS(152), + [aux_sym_using_statement_token1] = ACTIONS(152), + [aux_sym_input_stream_tuning_token1] = ACTIONS(152), + [aux_sym_input_stream_tuning_token2] = ACTIONS(152), + [aux_sym_input_stream_tuning_token3] = ACTIONS(152), + [aux_sym_input_stream_tuning_token4] = ACTIONS(152), + [aux_sym_input_stream_tuning_token5] = ACTIONS(152), + [aux_sym_input_stream_tuning_token6] = ACTIONS(152), + [aux_sym_input_stream_tuning_token7] = ACTIONS(152), + [aux_sym_input_stream_tuning_token8] = ACTIONS(152), + [aux_sym_input_stream_tuning_token9] = ACTIONS(152), + [aux_sym_input_stream_tuning_token11] = ACTIONS(152), + [aux_sym_output_stream_tuning_token1] = ACTIONS(152), + [aux_sym_output_stream_tuning_token2] = ACTIONS(152), + [aux_sym_output_stream_tuning_token3] = ACTIONS(152), + [aux_sym_output_stream_tuning_token4] = ACTIONS(152), + [aux_sym_output_stream_tuning_token5] = ACTIONS(152), + [aux_sym_output_stream_tuning_token6] = ACTIONS(152), + [aux_sym_output_stream_tuning_token7] = ACTIONS(152), + [aux_sym_output_stream_statement_token1] = ACTIONS(152), + [aux_sym_on_error_phrase_token1] = ACTIONS(152), + [aux_sym_stop_after_phrase_token1] = ACTIONS(152), + [aux_sym_do_tuning_token1] = ACTIONS(152), + [anon_sym_BY] = ACTIONS(152), + [aux_sym_where_clause_token1] = ACTIONS(152), + [aux_sym_query_tuning_token1] = ACTIONS(152), + [aux_sym_query_tuning_token2] = ACTIONS(152), + [aux_sym_query_tuning_token3] = ACTIONS(152), + [aux_sym_query_tuning_token4] = ACTIONS(152), + [aux_sym_query_tuning_token5] = ACTIONS(152), + [aux_sym_of_token1] = ACTIONS(152), + [aux_sym_field_option_token1] = ACTIONS(152), + [aux_sym_field_option_token2] = ACTIONS(152), + [aux_sym_field_option_token3] = ACTIONS(152), + [aux_sym_field_option_token4] = ACTIONS(152), + [aux_sym_field_option_token5] = ACTIONS(152), + [aux_sym_field_option_token6] = ACTIONS(152), + [aux_sym_field_definition_token1] = ACTIONS(152), + [aux_sym_index_definition_token1] = ACTIONS(152), + [aux_sym_on_statement_token1] = ACTIONS(152), + [sym__namecolon] = ACTIONS(152), + [sym__or_operator] = ACTIONS(152), + [sym__and_operator] = ACTIONS(152), }, [23] = { [sym_comment] = STATE(23), [sym_include] = STATE(23), - [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__namedot] = ACTIONS(154), - [sym__or_operator] = ACTIONS(150), - [sym__and_operator] = ACTIONS(150), - }, - [24] = { - [sym_comment] = STATE(24), - [sym_include] = STATE(24), [anon_sym_COLON] = ACTIONS(156), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_STAR] = ACTIONS(156), [sym__terminator] = ACTIONS(156), [aux_sym__block_terminator_token1] = ACTIONS(156), @@ -46840,7 +47166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_function_call_token1] = ACTIONS(156), [aux_sym_if_statement_token2] = ACTIONS(156), [aux_sym_else_statement_token1] = ACTIONS(156), [aux_sym_while_phrase_token1] = ACTIONS(156), @@ -46888,106 +47214,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(156), [sym__and_operator] = ACTIONS(156), }, + [24] = { + [sym_comment] = STATE(24), + [sym_include] = STATE(24), + [anon_sym_COLON] = ACTIONS(121), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(121), + [sym__terminator] = ACTIONS(121), + [aux_sym__block_terminator_token1] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [aux_sym_unary_expression_token2] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [aux_sym__multiplicative_operator_token1] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_LT_GT] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_GT_EQ] = ACTIONS(121), + [aux_sym__comparison_operator_token1] = ACTIONS(121), + [aux_sym__comparison_operator_token2] = ACTIONS(121), + [aux_sym__comparison_operator_token3] = ACTIONS(121), + [aux_sym__comparison_operator_token4] = ACTIONS(121), + [aux_sym__comparison_operator_token5] = ACTIONS(121), + [aux_sym__comparison_operator_token6] = ACTIONS(121), + [aux_sym__comparison_operator_token7] = ACTIONS(121), + [aux_sym__comparison_operator_token8] = ACTIONS(121), + [aux_sym__comparison_operator_token9] = ACTIONS(121), + [aux_sym_when_expression_token1] = ACTIONS(121), + [aux_sym_variable_tuning_token1] = ACTIONS(121), + [aux_sym_variable_tuning_token2] = ACTIONS(123), + [aux_sym_variable_tuning_token3] = ACTIONS(121), + [aux_sym_variable_tuning_token4] = ACTIONS(121), + [aux_sym_variable_tuning_token5] = ACTIONS(121), + [aux_sym_variable_tuning_token6] = ACTIONS(121), + [aux_sym_variable_tuning_token7] = ACTIONS(121), + [aux_sym_variable_tuning_token8] = ACTIONS(121), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(121), + [aux_sym_function_call_token1] = ACTIONS(121), + [aux_sym_if_statement_token2] = ACTIONS(121), + [aux_sym_else_statement_token1] = ACTIONS(121), + [aux_sym_while_phrase_token1] = ACTIONS(121), + [aux_sym_repeat_tuning_token1] = ACTIONS(121), + [aux_sym_using_statement_token1] = ACTIONS(121), + [aux_sym_input_stream_tuning_token1] = ACTIONS(121), + [aux_sym_input_stream_tuning_token2] = ACTIONS(121), + [aux_sym_input_stream_tuning_token3] = ACTIONS(121), + [aux_sym_input_stream_tuning_token4] = ACTIONS(121), + [aux_sym_input_stream_tuning_token5] = ACTIONS(121), + [aux_sym_input_stream_tuning_token6] = ACTIONS(121), + [aux_sym_input_stream_tuning_token7] = ACTIONS(121), + [aux_sym_input_stream_tuning_token8] = ACTIONS(121), + [aux_sym_input_stream_tuning_token9] = ACTIONS(121), + [aux_sym_input_stream_tuning_token11] = ACTIONS(121), + [aux_sym_output_stream_tuning_token1] = ACTIONS(121), + [aux_sym_output_stream_tuning_token2] = ACTIONS(121), + [aux_sym_output_stream_tuning_token3] = ACTIONS(121), + [aux_sym_output_stream_tuning_token4] = ACTIONS(121), + [aux_sym_output_stream_tuning_token5] = ACTIONS(121), + [aux_sym_output_stream_tuning_token6] = ACTIONS(121), + [aux_sym_output_stream_tuning_token7] = ACTIONS(121), + [aux_sym_output_stream_statement_token1] = ACTIONS(121), + [aux_sym_on_error_phrase_token1] = ACTIONS(121), + [aux_sym_stop_after_phrase_token1] = ACTIONS(121), + [aux_sym_do_tuning_token1] = ACTIONS(121), + [anon_sym_BY] = ACTIONS(121), + [aux_sym_where_clause_token1] = ACTIONS(121), + [aux_sym_query_tuning_token1] = ACTIONS(121), + [aux_sym_query_tuning_token2] = ACTIONS(121), + [aux_sym_query_tuning_token3] = ACTIONS(121), + [aux_sym_query_tuning_token4] = ACTIONS(121), + [aux_sym_query_tuning_token5] = ACTIONS(121), + [aux_sym_of_token1] = ACTIONS(121), + [aux_sym_field_option_token1] = ACTIONS(121), + [aux_sym_field_option_token2] = ACTIONS(121), + [aux_sym_field_option_token3] = ACTIONS(121), + [aux_sym_field_option_token4] = ACTIONS(121), + [aux_sym_field_option_token5] = ACTIONS(121), + [aux_sym_field_option_token6] = ACTIONS(121), + [aux_sym_field_definition_token1] = ACTIONS(121), + [aux_sym_index_definition_token1] = ACTIONS(121), + [aux_sym_on_statement_token1] = ACTIONS(121), + [sym__namedot] = ACTIONS(121), + [sym__or_operator] = ACTIONS(121), + [sym__and_operator] = ACTIONS(121), + }, [25] = { [sym_comment] = STATE(25), [sym_include] = STATE(25), - [anon_sym_COLON] = ACTIONS(162), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(164), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(162), - [sym__terminator] = ACTIONS(162), - [aux_sym__block_terminator_token1] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(162), - [anon_sym_RBRACK] = ACTIONS(162), - [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_RPAREN] = ACTIONS(162), - [aux_sym_unary_expression_token2] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [aux_sym__multiplicative_operator_token1] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(164), - [anon_sym_LT_EQ] = ACTIONS(162), - [anon_sym_LT_GT] = ACTIONS(162), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(164), - [anon_sym_GT_EQ] = ACTIONS(162), - [aux_sym__comparison_operator_token1] = ACTIONS(162), - [aux_sym__comparison_operator_token2] = ACTIONS(162), - [aux_sym__comparison_operator_token3] = ACTIONS(162), - [aux_sym__comparison_operator_token4] = ACTIONS(162), - [aux_sym__comparison_operator_token5] = ACTIONS(162), - [aux_sym__comparison_operator_token6] = ACTIONS(162), - [aux_sym__comparison_operator_token7] = ACTIONS(162), - [aux_sym__comparison_operator_token8] = ACTIONS(162), - [aux_sym__comparison_operator_token9] = ACTIONS(162), - [aux_sym_when_expression_token1] = ACTIONS(162), - [aux_sym_variable_tuning_token1] = ACTIONS(162), - [aux_sym_variable_tuning_token2] = ACTIONS(164), - [aux_sym_variable_tuning_token3] = ACTIONS(162), - [aux_sym_variable_tuning_token4] = ACTIONS(162), - [aux_sym_variable_tuning_token5] = ACTIONS(162), - [aux_sym_variable_tuning_token6] = ACTIONS(162), - [aux_sym_variable_tuning_token7] = ACTIONS(162), - [aux_sym_variable_tuning_token8] = ACTIONS(162), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(162), - [aux_sym_function_call_token1] = ACTIONS(162), - [aux_sym_if_statement_token2] = ACTIONS(162), - [aux_sym_else_statement_token1] = ACTIONS(162), - [aux_sym_while_phrase_token1] = ACTIONS(162), - [aux_sym_repeat_tuning_token1] = ACTIONS(162), - [aux_sym_using_statement_token1] = ACTIONS(162), - [aux_sym_input_stream_tuning_token1] = ACTIONS(162), - [aux_sym_input_stream_tuning_token2] = ACTIONS(162), - [aux_sym_input_stream_tuning_token3] = ACTIONS(162), - [aux_sym_input_stream_tuning_token4] = ACTIONS(162), - [aux_sym_input_stream_tuning_token5] = ACTIONS(162), - [aux_sym_input_stream_tuning_token6] = ACTIONS(162), - [aux_sym_input_stream_tuning_token7] = ACTIONS(162), - [aux_sym_input_stream_tuning_token8] = ACTIONS(162), - [aux_sym_input_stream_tuning_token9] = ACTIONS(162), - [aux_sym_input_stream_tuning_token11] = ACTIONS(162), - [aux_sym_output_stream_tuning_token1] = ACTIONS(162), - [aux_sym_output_stream_tuning_token2] = ACTIONS(162), - [aux_sym_output_stream_tuning_token3] = ACTIONS(162), - [aux_sym_output_stream_tuning_token4] = ACTIONS(162), - [aux_sym_output_stream_tuning_token5] = ACTIONS(162), - [aux_sym_output_stream_tuning_token6] = ACTIONS(162), - [aux_sym_output_stream_tuning_token7] = ACTIONS(162), - [aux_sym_output_stream_statement_token1] = ACTIONS(162), - [aux_sym_on_error_phrase_token1] = ACTIONS(162), - [aux_sym_stop_after_phrase_token1] = ACTIONS(162), - [aux_sym_do_tuning_token1] = ACTIONS(162), - [anon_sym_BY] = ACTIONS(162), - [aux_sym_where_clause_token1] = ACTIONS(162), - [aux_sym_query_tuning_token1] = ACTIONS(162), - [aux_sym_query_tuning_token2] = ACTIONS(162), - [aux_sym_query_tuning_token3] = ACTIONS(162), - [aux_sym_query_tuning_token4] = ACTIONS(162), - [aux_sym_query_tuning_token5] = ACTIONS(162), - [aux_sym_of_token1] = ACTIONS(162), - [aux_sym_field_option_token1] = ACTIONS(162), - [aux_sym_field_option_token2] = ACTIONS(162), - [aux_sym_field_option_token3] = ACTIONS(162), - [aux_sym_field_option_token4] = ACTIONS(162), - [aux_sym_field_option_token5] = ACTIONS(162), - [aux_sym_field_option_token6] = ACTIONS(162), - [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), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(160), + [sym__terminator] = ACTIONS(160), + [aux_sym__block_terminator_token1] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_RBRACK] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [aux_sym_unary_expression_token2] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [aux_sym__multiplicative_operator_token1] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_LT_GT] = ACTIONS(160), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(160), + [aux_sym__comparison_operator_token1] = ACTIONS(160), + [aux_sym__comparison_operator_token2] = ACTIONS(160), + [aux_sym__comparison_operator_token3] = ACTIONS(160), + [aux_sym__comparison_operator_token4] = ACTIONS(160), + [aux_sym__comparison_operator_token5] = ACTIONS(160), + [aux_sym__comparison_operator_token6] = ACTIONS(160), + [aux_sym__comparison_operator_token7] = ACTIONS(160), + [aux_sym__comparison_operator_token8] = ACTIONS(160), + [aux_sym__comparison_operator_token9] = ACTIONS(160), + [aux_sym_when_expression_token1] = ACTIONS(160), + [aux_sym_variable_tuning_token1] = ACTIONS(160), + [aux_sym_variable_tuning_token2] = ACTIONS(162), + [aux_sym_variable_tuning_token3] = ACTIONS(160), + [aux_sym_variable_tuning_token4] = ACTIONS(160), + [aux_sym_variable_tuning_token5] = ACTIONS(160), + [aux_sym_variable_tuning_token6] = ACTIONS(160), + [aux_sym_variable_tuning_token7] = ACTIONS(160), + [aux_sym_variable_tuning_token8] = ACTIONS(160), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(160), + [aux_sym_function_call_token1] = ACTIONS(160), + [aux_sym_if_statement_token2] = ACTIONS(160), + [aux_sym_else_statement_token1] = ACTIONS(160), + [aux_sym_while_phrase_token1] = ACTIONS(160), + [aux_sym_repeat_tuning_token1] = ACTIONS(160), + [aux_sym_using_statement_token1] = ACTIONS(160), + [aux_sym_input_stream_tuning_token1] = ACTIONS(160), + [aux_sym_input_stream_tuning_token2] = ACTIONS(160), + [aux_sym_input_stream_tuning_token3] = ACTIONS(160), + [aux_sym_input_stream_tuning_token4] = ACTIONS(160), + [aux_sym_input_stream_tuning_token5] = ACTIONS(160), + [aux_sym_input_stream_tuning_token6] = ACTIONS(160), + [aux_sym_input_stream_tuning_token7] = ACTIONS(160), + [aux_sym_input_stream_tuning_token8] = ACTIONS(160), + [aux_sym_input_stream_tuning_token9] = ACTIONS(160), + [aux_sym_input_stream_tuning_token11] = ACTIONS(160), + [aux_sym_output_stream_tuning_token1] = ACTIONS(160), + [aux_sym_output_stream_tuning_token2] = ACTIONS(160), + [aux_sym_output_stream_tuning_token3] = ACTIONS(160), + [aux_sym_output_stream_tuning_token4] = ACTIONS(160), + [aux_sym_output_stream_tuning_token5] = ACTIONS(160), + [aux_sym_output_stream_tuning_token6] = ACTIONS(160), + [aux_sym_output_stream_tuning_token7] = ACTIONS(160), + [aux_sym_output_stream_statement_token1] = ACTIONS(160), + [aux_sym_on_error_phrase_token1] = ACTIONS(160), + [aux_sym_stop_after_phrase_token1] = ACTIONS(160), + [aux_sym_do_tuning_token1] = ACTIONS(160), + [anon_sym_BY] = ACTIONS(160), + [aux_sym_where_clause_token1] = ACTIONS(160), + [aux_sym_query_tuning_token1] = ACTIONS(160), + [aux_sym_query_tuning_token2] = ACTIONS(160), + [aux_sym_query_tuning_token3] = ACTIONS(160), + [aux_sym_query_tuning_token4] = ACTIONS(160), + [aux_sym_query_tuning_token5] = ACTIONS(160), + [aux_sym_of_token1] = ACTIONS(160), + [aux_sym_field_option_token1] = ACTIONS(160), + [aux_sym_field_option_token2] = ACTIONS(160), + [aux_sym_field_option_token3] = ACTIONS(160), + [aux_sym_field_option_token4] = ACTIONS(160), + [aux_sym_field_option_token5] = ACTIONS(160), + [aux_sym_field_option_token6] = ACTIONS(160), + [aux_sym_field_definition_token1] = ACTIONS(160), + [aux_sym_index_definition_token1] = ACTIONS(160), + [aux_sym_on_statement_token1] = ACTIONS(160), + [sym__namedot] = ACTIONS(164), + [sym__or_operator] = ACTIONS(160), + [sym__and_operator] = ACTIONS(160), }, [26] = { [sym_comment] = STATE(26), [sym_include] = STATE(26), [anon_sym_COLON] = ACTIONS(166), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), [anon_sym_SLASH] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), [anon_sym_STAR] = ACTIONS(166), [sym__terminator] = ACTIONS(166), [aux_sym__block_terminator_token1] = ACTIONS(166), @@ -47024,7 +47442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token7] = ACTIONS(166), [aux_sym_variable_tuning_token8] = ACTIONS(166), [aux_sym__function_argument_with_mode_token4] = ACTIONS(166), - [aux_sym_function_call_token1] = ACTIONS(166), + [aux_sym_function_call_token1] = ACTIONS(170), [aux_sym_if_statement_token2] = ACTIONS(166), [aux_sym_else_statement_token1] = ACTIONS(166), [aux_sym_while_phrase_token1] = ACTIONS(166), @@ -47075,2422 +47493,2771 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_function_arguments] = STATE(26), + [anon_sym_COLON] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(87), + [sym__terminator] = ACTIONS(87), + [aux_sym__block_terminator_token1] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(79), + [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__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), }, [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), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(172), + [sym__terminator] = ACTIONS(172), + [aux_sym__block_terminator_token1] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_RBRACK] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(172), + [anon_sym_RPAREN] = ACTIONS(172), + [aux_sym_unary_expression_token2] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [aux_sym__multiplicative_operator_token1] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_LT_GT] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [aux_sym__comparison_operator_token1] = ACTIONS(172), + [aux_sym__comparison_operator_token2] = ACTIONS(172), + [aux_sym__comparison_operator_token3] = ACTIONS(172), + [aux_sym__comparison_operator_token4] = ACTIONS(172), + [aux_sym__comparison_operator_token5] = ACTIONS(172), + [aux_sym__comparison_operator_token6] = ACTIONS(172), + [aux_sym__comparison_operator_token7] = ACTIONS(172), + [aux_sym__comparison_operator_token8] = ACTIONS(172), + [aux_sym__comparison_operator_token9] = ACTIONS(172), + [aux_sym_when_expression_token1] = ACTIONS(172), + [aux_sym_variable_tuning_token1] = ACTIONS(172), + [aux_sym_variable_tuning_token2] = ACTIONS(174), + [aux_sym_variable_tuning_token3] = ACTIONS(172), + [aux_sym_variable_tuning_token4] = ACTIONS(172), + [aux_sym_variable_tuning_token5] = ACTIONS(172), + [aux_sym_variable_tuning_token6] = ACTIONS(172), + [aux_sym_variable_tuning_token7] = ACTIONS(172), + [aux_sym_variable_tuning_token8] = ACTIONS(172), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(172), + [aux_sym_function_call_token1] = ACTIONS(172), + [aux_sym_if_statement_token2] = ACTIONS(172), + [aux_sym_else_statement_token1] = ACTIONS(172), + [aux_sym_while_phrase_token1] = ACTIONS(172), + [aux_sym_repeat_tuning_token1] = ACTIONS(172), + [aux_sym_using_statement_token1] = ACTIONS(172), + [aux_sym_input_stream_tuning_token1] = ACTIONS(172), + [aux_sym_input_stream_tuning_token2] = ACTIONS(172), + [aux_sym_input_stream_tuning_token3] = ACTIONS(172), + [aux_sym_input_stream_tuning_token4] = ACTIONS(172), + [aux_sym_input_stream_tuning_token5] = ACTIONS(172), + [aux_sym_input_stream_tuning_token6] = ACTIONS(172), + [aux_sym_input_stream_tuning_token7] = ACTIONS(172), + [aux_sym_input_stream_tuning_token8] = ACTIONS(172), + [aux_sym_input_stream_tuning_token9] = ACTIONS(172), + [aux_sym_input_stream_tuning_token11] = ACTIONS(172), + [aux_sym_output_stream_tuning_token1] = ACTIONS(172), + [aux_sym_output_stream_tuning_token2] = ACTIONS(172), + [aux_sym_output_stream_tuning_token3] = ACTIONS(172), + [aux_sym_output_stream_tuning_token4] = ACTIONS(172), + [aux_sym_output_stream_tuning_token5] = ACTIONS(172), + [aux_sym_output_stream_tuning_token6] = ACTIONS(172), + [aux_sym_output_stream_tuning_token7] = ACTIONS(172), + [aux_sym_output_stream_statement_token1] = ACTIONS(172), + [aux_sym_on_error_phrase_token1] = ACTIONS(172), + [aux_sym_stop_after_phrase_token1] = ACTIONS(172), + [aux_sym_do_tuning_token1] = ACTIONS(172), + [anon_sym_BY] = ACTIONS(172), + [aux_sym_where_clause_token1] = ACTIONS(172), + [aux_sym_query_tuning_token1] = ACTIONS(172), + [aux_sym_query_tuning_token2] = ACTIONS(172), + [aux_sym_query_tuning_token3] = ACTIONS(172), + [aux_sym_query_tuning_token4] = ACTIONS(172), + [aux_sym_query_tuning_token5] = ACTIONS(172), + [aux_sym_of_token1] = ACTIONS(172), + [aux_sym_field_option_token1] = ACTIONS(172), + [aux_sym_field_option_token2] = ACTIONS(172), + [aux_sym_field_option_token3] = ACTIONS(172), + [aux_sym_field_option_token4] = ACTIONS(172), + [aux_sym_field_option_token5] = ACTIONS(172), + [aux_sym_field_option_token6] = ACTIONS(172), + [aux_sym_field_definition_token1] = ACTIONS(172), + [aux_sym_index_definition_token1] = ACTIONS(172), + [aux_sym_on_statement_token1] = ACTIONS(172), + [sym__or_operator] = ACTIONS(172), + [sym__and_operator] = ACTIONS(172), }, [29] = { [sym_comment] = STATE(29), [sym_include] = STATE(29), - [anon_sym_COLON] = ACTIONS(170), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(172), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(170), - [sym__terminator] = ACTIONS(170), - [aux_sym__block_terminator_token1] = ACTIONS(170), - [anon_sym_COMMA] = ACTIONS(170), - [anon_sym_RBRACK] = ACTIONS(170), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(170), - [aux_sym_unary_expression_token2] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(170), - [anon_sym_DASH] = ACTIONS(170), - [aux_sym__multiplicative_operator_token1] = ACTIONS(170), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(170), - [anon_sym_LT_GT] = ACTIONS(170), - [anon_sym_EQ] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(172), - [anon_sym_GT_EQ] = ACTIONS(170), - [aux_sym__comparison_operator_token1] = ACTIONS(170), - [aux_sym__comparison_operator_token2] = ACTIONS(170), - [aux_sym__comparison_operator_token3] = ACTIONS(170), - [aux_sym__comparison_operator_token4] = ACTIONS(170), - [aux_sym__comparison_operator_token5] = ACTIONS(170), - [aux_sym__comparison_operator_token6] = ACTIONS(170), - [aux_sym__comparison_operator_token7] = ACTIONS(170), - [aux_sym__comparison_operator_token8] = ACTIONS(170), - [aux_sym__comparison_operator_token9] = ACTIONS(170), - [aux_sym_when_expression_token1] = ACTIONS(170), - [aux_sym_variable_tuning_token1] = ACTIONS(170), - [aux_sym_variable_tuning_token2] = ACTIONS(172), - [aux_sym_variable_tuning_token3] = ACTIONS(170), - [aux_sym_variable_tuning_token4] = ACTIONS(170), - [aux_sym_variable_tuning_token5] = ACTIONS(170), - [aux_sym_variable_tuning_token6] = ACTIONS(170), - [aux_sym_variable_tuning_token7] = ACTIONS(170), - [aux_sym_variable_tuning_token8] = ACTIONS(170), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(170), - [aux_sym_function_call_token1] = ACTIONS(170), - [aux_sym_if_statement_token2] = ACTIONS(170), - [aux_sym_else_statement_token1] = ACTIONS(170), - [aux_sym_while_phrase_token1] = ACTIONS(170), - [aux_sym_repeat_tuning_token1] = ACTIONS(170), - [aux_sym_using_statement_token1] = ACTIONS(170), - [aux_sym_input_stream_tuning_token1] = ACTIONS(170), - [aux_sym_input_stream_tuning_token2] = ACTIONS(170), - [aux_sym_input_stream_tuning_token3] = ACTIONS(170), - [aux_sym_input_stream_tuning_token4] = ACTIONS(170), - [aux_sym_input_stream_tuning_token5] = ACTIONS(170), - [aux_sym_input_stream_tuning_token6] = ACTIONS(170), - [aux_sym_input_stream_tuning_token7] = ACTIONS(170), - [aux_sym_input_stream_tuning_token8] = ACTIONS(170), - [aux_sym_input_stream_tuning_token9] = ACTIONS(170), - [aux_sym_input_stream_tuning_token11] = ACTIONS(170), - [aux_sym_output_stream_tuning_token1] = ACTIONS(170), - [aux_sym_output_stream_tuning_token2] = ACTIONS(170), - [aux_sym_output_stream_tuning_token3] = ACTIONS(170), - [aux_sym_output_stream_tuning_token4] = ACTIONS(170), - [aux_sym_output_stream_tuning_token5] = ACTIONS(170), - [aux_sym_output_stream_tuning_token6] = ACTIONS(170), - [aux_sym_output_stream_tuning_token7] = ACTIONS(170), - [aux_sym_output_stream_statement_token1] = ACTIONS(170), - [aux_sym_on_error_phrase_token1] = ACTIONS(170), - [aux_sym_stop_after_phrase_token1] = ACTIONS(170), - [aux_sym_do_tuning_token1] = ACTIONS(170), - [anon_sym_BY] = ACTIONS(170), - [aux_sym_where_clause_token1] = ACTIONS(170), - [aux_sym_query_tuning_token1] = ACTIONS(170), - [aux_sym_query_tuning_token2] = ACTIONS(170), - [aux_sym_query_tuning_token3] = ACTIONS(170), - [aux_sym_query_tuning_token4] = ACTIONS(170), - [aux_sym_query_tuning_token5] = ACTIONS(170), - [aux_sym_of_token1] = ACTIONS(170), - [aux_sym_field_option_token1] = ACTIONS(170), - [aux_sym_field_option_token2] = ACTIONS(170), - [aux_sym_field_option_token3] = ACTIONS(170), - [aux_sym_field_option_token4] = ACTIONS(170), - [aux_sym_field_option_token5] = ACTIONS(170), - [aux_sym_field_option_token6] = ACTIONS(170), - [aux_sym_field_definition_token1] = ACTIONS(170), - [aux_sym_index_definition_token1] = ACTIONS(170), - [aux_sym_on_statement_token1] = ACTIONS(170), - [sym__or_operator] = ACTIONS(170), - [sym__and_operator] = ACTIONS(170), + [anon_sym_COLON] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(87), + [sym__terminator] = ACTIONS(87), + [aux_sym__block_terminator_token1] = 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__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), }, [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), + [anon_sym_COLON] = ACTIONS(102), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(75), + [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), }, [31] = { [sym_comment] = STATE(31), [sym_include] = STATE(31), - [anon_sym_COLON] = ACTIONS(174), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(176), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(174), - [sym__terminator] = ACTIONS(174), - [aux_sym__block_terminator_token1] = ACTIONS(174), - [anon_sym_COMMA] = ACTIONS(174), - [anon_sym_RBRACK] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(174), - [anon_sym_RPAREN] = ACTIONS(174), - [aux_sym_unary_expression_token2] = ACTIONS(174), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [aux_sym__multiplicative_operator_token1] = ACTIONS(174), - [anon_sym_LT] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(174), - [anon_sym_LT_GT] = ACTIONS(174), - [anon_sym_EQ] = ACTIONS(174), - [anon_sym_GT] = ACTIONS(176), - [anon_sym_GT_EQ] = ACTIONS(174), - [aux_sym__comparison_operator_token1] = ACTIONS(174), - [aux_sym__comparison_operator_token2] = ACTIONS(174), - [aux_sym__comparison_operator_token3] = ACTIONS(174), - [aux_sym__comparison_operator_token4] = ACTIONS(174), - [aux_sym__comparison_operator_token5] = ACTIONS(174), - [aux_sym__comparison_operator_token6] = ACTIONS(174), - [aux_sym__comparison_operator_token7] = ACTIONS(174), - [aux_sym__comparison_operator_token8] = ACTIONS(174), - [aux_sym__comparison_operator_token9] = ACTIONS(174), - [aux_sym_when_expression_token1] = ACTIONS(174), - [aux_sym_variable_tuning_token1] = ACTIONS(174), - [aux_sym_variable_tuning_token2] = ACTIONS(176), - [aux_sym_variable_tuning_token3] = ACTIONS(174), - [aux_sym_variable_tuning_token4] = ACTIONS(174), - [aux_sym_variable_tuning_token5] = ACTIONS(174), - [aux_sym_variable_tuning_token6] = ACTIONS(174), - [aux_sym_variable_tuning_token7] = ACTIONS(174), - [aux_sym_variable_tuning_token8] = ACTIONS(174), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(174), - [aux_sym_function_call_token1] = ACTIONS(174), - [aux_sym_if_statement_token2] = ACTIONS(174), - [aux_sym_else_statement_token1] = ACTIONS(174), - [aux_sym_while_phrase_token1] = ACTIONS(174), - [aux_sym_repeat_tuning_token1] = ACTIONS(174), - [aux_sym_using_statement_token1] = ACTIONS(174), - [aux_sym_input_stream_tuning_token1] = ACTIONS(174), - [aux_sym_input_stream_tuning_token2] = ACTIONS(174), - [aux_sym_input_stream_tuning_token3] = ACTIONS(174), - [aux_sym_input_stream_tuning_token4] = ACTIONS(174), - [aux_sym_input_stream_tuning_token5] = ACTIONS(174), - [aux_sym_input_stream_tuning_token6] = ACTIONS(174), - [aux_sym_input_stream_tuning_token7] = ACTIONS(174), - [aux_sym_input_stream_tuning_token8] = ACTIONS(174), - [aux_sym_input_stream_tuning_token9] = ACTIONS(174), - [aux_sym_input_stream_tuning_token11] = ACTIONS(174), - [aux_sym_output_stream_tuning_token1] = ACTIONS(174), - [aux_sym_output_stream_tuning_token2] = ACTIONS(174), - [aux_sym_output_stream_tuning_token3] = ACTIONS(174), - [aux_sym_output_stream_tuning_token4] = ACTIONS(174), - [aux_sym_output_stream_tuning_token5] = ACTIONS(174), - [aux_sym_output_stream_tuning_token6] = ACTIONS(174), - [aux_sym_output_stream_tuning_token7] = ACTIONS(174), - [aux_sym_output_stream_statement_token1] = ACTIONS(174), - [aux_sym_on_error_phrase_token1] = ACTIONS(174), - [aux_sym_stop_after_phrase_token1] = ACTIONS(174), - [aux_sym_do_tuning_token1] = ACTIONS(174), - [anon_sym_BY] = ACTIONS(174), - [aux_sym_where_clause_token1] = ACTIONS(174), - [aux_sym_query_tuning_token1] = ACTIONS(174), - [aux_sym_query_tuning_token2] = ACTIONS(174), - [aux_sym_query_tuning_token3] = ACTIONS(174), - [aux_sym_query_tuning_token4] = ACTIONS(174), - [aux_sym_query_tuning_token5] = ACTIONS(174), - [aux_sym_of_token1] = ACTIONS(174), - [aux_sym_field_option_token1] = ACTIONS(174), - [aux_sym_field_option_token2] = ACTIONS(174), - [aux_sym_field_option_token3] = ACTIONS(174), - [aux_sym_field_option_token4] = ACTIONS(174), - [aux_sym_field_option_token5] = ACTIONS(174), - [aux_sym_field_option_token6] = ACTIONS(174), - [aux_sym_field_definition_token1] = ACTIONS(174), - [aux_sym_index_definition_token1] = ACTIONS(174), - [aux_sym_on_statement_token1] = ACTIONS(174), - [sym__or_operator] = ACTIONS(174), - [sym__and_operator] = ACTIONS(174), + [anon_sym_COLON] = ACTIONS(176), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(176), + [sym__terminator] = ACTIONS(176), + [aux_sym__block_terminator_token1] = ACTIONS(176), + [anon_sym_COMMA] = ACTIONS(176), + [anon_sym_RBRACK] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_RPAREN] = ACTIONS(176), + [aux_sym_unary_expression_token2] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(176), + [aux_sym__multiplicative_operator_token1] = ACTIONS(176), + [anon_sym_LT] = ACTIONS(178), + [anon_sym_LT_EQ] = ACTIONS(176), + [anon_sym_LT_GT] = ACTIONS(176), + [anon_sym_EQ] = ACTIONS(176), + [anon_sym_GT] = ACTIONS(178), + [anon_sym_GT_EQ] = ACTIONS(176), + [aux_sym__comparison_operator_token1] = ACTIONS(176), + [aux_sym__comparison_operator_token2] = ACTIONS(176), + [aux_sym__comparison_operator_token3] = ACTIONS(176), + [aux_sym__comparison_operator_token4] = ACTIONS(176), + [aux_sym__comparison_operator_token5] = ACTIONS(176), + [aux_sym__comparison_operator_token6] = ACTIONS(176), + [aux_sym__comparison_operator_token7] = ACTIONS(176), + [aux_sym__comparison_operator_token8] = ACTIONS(176), + [aux_sym__comparison_operator_token9] = ACTIONS(176), + [aux_sym_when_expression_token1] = ACTIONS(176), + [aux_sym_variable_tuning_token1] = ACTIONS(176), + [aux_sym_variable_tuning_token2] = ACTIONS(178), + [aux_sym_variable_tuning_token3] = ACTIONS(176), + [aux_sym_variable_tuning_token4] = ACTIONS(176), + [aux_sym_variable_tuning_token5] = ACTIONS(176), + [aux_sym_variable_tuning_token6] = ACTIONS(176), + [aux_sym_variable_tuning_token7] = ACTIONS(176), + [aux_sym_variable_tuning_token8] = ACTIONS(176), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(176), + [aux_sym_function_call_token1] = ACTIONS(176), + [aux_sym_if_statement_token2] = ACTIONS(176), + [aux_sym_else_statement_token1] = ACTIONS(176), + [aux_sym_while_phrase_token1] = ACTIONS(176), + [aux_sym_repeat_tuning_token1] = ACTIONS(176), + [aux_sym_using_statement_token1] = ACTIONS(176), + [aux_sym_input_stream_tuning_token1] = ACTIONS(176), + [aux_sym_input_stream_tuning_token2] = ACTIONS(176), + [aux_sym_input_stream_tuning_token3] = ACTIONS(176), + [aux_sym_input_stream_tuning_token4] = ACTIONS(176), + [aux_sym_input_stream_tuning_token5] = ACTIONS(176), + [aux_sym_input_stream_tuning_token6] = ACTIONS(176), + [aux_sym_input_stream_tuning_token7] = ACTIONS(176), + [aux_sym_input_stream_tuning_token8] = ACTIONS(176), + [aux_sym_input_stream_tuning_token9] = ACTIONS(176), + [aux_sym_input_stream_tuning_token11] = ACTIONS(176), + [aux_sym_output_stream_tuning_token1] = ACTIONS(176), + [aux_sym_output_stream_tuning_token2] = ACTIONS(176), + [aux_sym_output_stream_tuning_token3] = ACTIONS(176), + [aux_sym_output_stream_tuning_token4] = ACTIONS(176), + [aux_sym_output_stream_tuning_token5] = ACTIONS(176), + [aux_sym_output_stream_tuning_token6] = ACTIONS(176), + [aux_sym_output_stream_tuning_token7] = ACTIONS(176), + [aux_sym_output_stream_statement_token1] = ACTIONS(176), + [aux_sym_on_error_phrase_token1] = ACTIONS(176), + [aux_sym_stop_after_phrase_token1] = ACTIONS(176), + [aux_sym_do_tuning_token1] = ACTIONS(176), + [anon_sym_BY] = ACTIONS(176), + [aux_sym_where_clause_token1] = ACTIONS(176), + [aux_sym_query_tuning_token1] = ACTIONS(176), + [aux_sym_query_tuning_token2] = ACTIONS(176), + [aux_sym_query_tuning_token3] = ACTIONS(176), + [aux_sym_query_tuning_token4] = ACTIONS(176), + [aux_sym_query_tuning_token5] = ACTIONS(176), + [aux_sym_of_token1] = ACTIONS(176), + [aux_sym_field_option_token1] = ACTIONS(176), + [aux_sym_field_option_token2] = ACTIONS(176), + [aux_sym_field_option_token3] = ACTIONS(176), + [aux_sym_field_option_token4] = ACTIONS(176), + [aux_sym_field_option_token5] = ACTIONS(176), + [aux_sym_field_option_token6] = ACTIONS(176), + [aux_sym_field_definition_token1] = ACTIONS(176), + [aux_sym_index_definition_token1] = ACTIONS(176), + [aux_sym_on_statement_token1] = ACTIONS(176), + [sym__or_operator] = ACTIONS(176), + [sym__and_operator] = ACTIONS(176), }, [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), + [anon_sym_COLON] = ACTIONS(180), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(180), + [sym__terminator] = ACTIONS(180), + [aux_sym__block_terminator_token1] = ACTIONS(180), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_RBRACK] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [aux_sym_unary_expression_token2] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [aux_sym__multiplicative_operator_token1] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_LT_EQ] = ACTIONS(180), + [anon_sym_LT_GT] = ACTIONS(180), + [anon_sym_EQ] = ACTIONS(180), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_GT_EQ] = ACTIONS(180), + [aux_sym__comparison_operator_token1] = ACTIONS(180), + [aux_sym__comparison_operator_token2] = ACTIONS(180), + [aux_sym__comparison_operator_token3] = ACTIONS(180), + [aux_sym__comparison_operator_token4] = ACTIONS(180), + [aux_sym__comparison_operator_token5] = ACTIONS(180), + [aux_sym__comparison_operator_token6] = ACTIONS(180), + [aux_sym__comparison_operator_token7] = ACTIONS(180), + [aux_sym__comparison_operator_token8] = ACTIONS(180), + [aux_sym__comparison_operator_token9] = ACTIONS(180), + [aux_sym_when_expression_token1] = ACTIONS(180), + [aux_sym_variable_tuning_token1] = ACTIONS(180), + [aux_sym_variable_tuning_token2] = ACTIONS(182), + [aux_sym_variable_tuning_token3] = ACTIONS(180), + [aux_sym_variable_tuning_token4] = ACTIONS(180), + [aux_sym_variable_tuning_token5] = ACTIONS(180), + [aux_sym_variable_tuning_token6] = ACTIONS(180), + [aux_sym_variable_tuning_token7] = ACTIONS(180), + [aux_sym_variable_tuning_token8] = ACTIONS(180), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(180), + [aux_sym_function_call_token1] = ACTIONS(180), + [aux_sym_if_statement_token2] = ACTIONS(180), + [aux_sym_else_statement_token1] = ACTIONS(180), + [aux_sym_while_phrase_token1] = ACTIONS(180), + [aux_sym_repeat_tuning_token1] = ACTIONS(180), + [aux_sym_using_statement_token1] = ACTIONS(180), + [aux_sym_input_stream_tuning_token1] = ACTIONS(180), + [aux_sym_input_stream_tuning_token2] = ACTIONS(180), + [aux_sym_input_stream_tuning_token3] = ACTIONS(180), + [aux_sym_input_stream_tuning_token4] = ACTIONS(180), + [aux_sym_input_stream_tuning_token5] = ACTIONS(180), + [aux_sym_input_stream_tuning_token6] = ACTIONS(180), + [aux_sym_input_stream_tuning_token7] = ACTIONS(180), + [aux_sym_input_stream_tuning_token8] = ACTIONS(180), + [aux_sym_input_stream_tuning_token9] = ACTIONS(180), + [aux_sym_input_stream_tuning_token11] = ACTIONS(180), + [aux_sym_output_stream_tuning_token1] = ACTIONS(180), + [aux_sym_output_stream_tuning_token2] = ACTIONS(180), + [aux_sym_output_stream_tuning_token3] = ACTIONS(180), + [aux_sym_output_stream_tuning_token4] = ACTIONS(180), + [aux_sym_output_stream_tuning_token5] = ACTIONS(180), + [aux_sym_output_stream_tuning_token6] = ACTIONS(180), + [aux_sym_output_stream_tuning_token7] = ACTIONS(180), + [aux_sym_output_stream_statement_token1] = ACTIONS(180), + [aux_sym_on_error_phrase_token1] = ACTIONS(180), + [aux_sym_stop_after_phrase_token1] = ACTIONS(180), + [aux_sym_do_tuning_token1] = ACTIONS(180), + [anon_sym_BY] = ACTIONS(180), + [aux_sym_where_clause_token1] = ACTIONS(180), + [aux_sym_query_tuning_token1] = ACTIONS(180), + [aux_sym_query_tuning_token2] = ACTIONS(180), + [aux_sym_query_tuning_token3] = ACTIONS(180), + [aux_sym_query_tuning_token4] = ACTIONS(180), + [aux_sym_query_tuning_token5] = ACTIONS(180), + [aux_sym_of_token1] = ACTIONS(180), + [aux_sym_field_option_token1] = ACTIONS(180), + [aux_sym_field_option_token2] = ACTIONS(180), + [aux_sym_field_option_token3] = ACTIONS(180), + [aux_sym_field_option_token4] = ACTIONS(180), + [aux_sym_field_option_token5] = ACTIONS(180), + [aux_sym_field_option_token6] = ACTIONS(180), + [aux_sym_field_definition_token1] = ACTIONS(180), + [aux_sym_index_definition_token1] = ACTIONS(180), + [aux_sym_on_statement_token1] = ACTIONS(180), + [sym__or_operator] = ACTIONS(180), + [sym__and_operator] = ACTIONS(180), }, [33] = { [sym_comment] = STATE(33), [sym_include] = STATE(33), - [anon_sym_COLON] = ACTIONS(178), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(178), - [sym__terminator] = ACTIONS(178), - [aux_sym__block_terminator_token1] = ACTIONS(178), - [anon_sym_COMMA] = ACTIONS(178), - [anon_sym_RBRACK] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(178), - [anon_sym_RPAREN] = ACTIONS(178), - [aux_sym_unary_expression_token2] = ACTIONS(178), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [aux_sym__multiplicative_operator_token1] = ACTIONS(178), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(178), - [anon_sym_LT_GT] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_GT] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(178), - [aux_sym__comparison_operator_token1] = ACTIONS(178), - [aux_sym__comparison_operator_token2] = ACTIONS(178), - [aux_sym__comparison_operator_token3] = ACTIONS(178), - [aux_sym__comparison_operator_token4] = ACTIONS(178), - [aux_sym__comparison_operator_token5] = ACTIONS(178), - [aux_sym__comparison_operator_token6] = ACTIONS(178), - [aux_sym__comparison_operator_token7] = ACTIONS(178), - [aux_sym__comparison_operator_token8] = ACTIONS(178), - [aux_sym__comparison_operator_token9] = ACTIONS(178), - [aux_sym_when_expression_token1] = ACTIONS(178), - [aux_sym_variable_tuning_token1] = ACTIONS(178), - [aux_sym_variable_tuning_token2] = ACTIONS(180), - [aux_sym_variable_tuning_token3] = ACTIONS(178), - [aux_sym_variable_tuning_token4] = ACTIONS(178), - [aux_sym_variable_tuning_token5] = ACTIONS(178), - [aux_sym_variable_tuning_token6] = ACTIONS(178), - [aux_sym_variable_tuning_token7] = ACTIONS(178), - [aux_sym_variable_tuning_token8] = ACTIONS(178), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(178), - [aux_sym_function_call_token1] = ACTIONS(178), - [aux_sym_if_statement_token2] = ACTIONS(178), - [aux_sym_else_statement_token1] = ACTIONS(178), - [aux_sym_while_phrase_token1] = ACTIONS(178), - [aux_sym_repeat_tuning_token1] = ACTIONS(178), - [aux_sym_using_statement_token1] = ACTIONS(178), - [aux_sym_input_stream_tuning_token1] = ACTIONS(178), - [aux_sym_input_stream_tuning_token2] = ACTIONS(178), - [aux_sym_input_stream_tuning_token3] = ACTIONS(178), - [aux_sym_input_stream_tuning_token4] = ACTIONS(178), - [aux_sym_input_stream_tuning_token5] = ACTIONS(178), - [aux_sym_input_stream_tuning_token6] = ACTIONS(178), - [aux_sym_input_stream_tuning_token7] = ACTIONS(178), - [aux_sym_input_stream_tuning_token8] = ACTIONS(178), - [aux_sym_input_stream_tuning_token9] = ACTIONS(178), - [aux_sym_input_stream_tuning_token11] = ACTIONS(178), - [aux_sym_output_stream_tuning_token1] = ACTIONS(178), - [aux_sym_output_stream_tuning_token2] = ACTIONS(178), - [aux_sym_output_stream_tuning_token3] = ACTIONS(178), - [aux_sym_output_stream_tuning_token4] = ACTIONS(178), - [aux_sym_output_stream_tuning_token5] = ACTIONS(178), - [aux_sym_output_stream_tuning_token6] = ACTIONS(178), - [aux_sym_output_stream_tuning_token7] = ACTIONS(178), - [aux_sym_output_stream_statement_token1] = ACTIONS(178), - [aux_sym_on_error_phrase_token1] = ACTIONS(178), - [aux_sym_stop_after_phrase_token1] = ACTIONS(178), - [aux_sym_do_tuning_token1] = ACTIONS(178), - [anon_sym_BY] = ACTIONS(178), - [aux_sym_where_clause_token1] = ACTIONS(178), - [aux_sym_query_tuning_token1] = ACTIONS(178), - [aux_sym_query_tuning_token2] = ACTIONS(178), - [aux_sym_query_tuning_token3] = ACTIONS(178), - [aux_sym_query_tuning_token4] = ACTIONS(178), - [aux_sym_query_tuning_token5] = ACTIONS(178), - [aux_sym_of_token1] = ACTIONS(178), - [aux_sym_field_option_token1] = ACTIONS(178), - [aux_sym_field_option_token2] = ACTIONS(178), - [aux_sym_field_option_token3] = ACTIONS(178), - [aux_sym_field_option_token4] = ACTIONS(178), - [aux_sym_field_option_token5] = ACTIONS(178), - [aux_sym_field_option_token6] = ACTIONS(178), - [aux_sym_field_definition_token1] = ACTIONS(178), - [aux_sym_index_definition_token1] = ACTIONS(178), - [aux_sym_on_statement_token1] = ACTIONS(178), - [sym__or_operator] = ACTIONS(178), - [sym__and_operator] = ACTIONS(178), + [anon_sym_COLON] = ACTIONS(184), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(184), + [sym__terminator] = ACTIONS(184), + [aux_sym__block_terminator_token1] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(184), + [anon_sym_RBRACK] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_RPAREN] = ACTIONS(184), + [aux_sym_unary_expression_token2] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(184), + [anon_sym_DASH] = ACTIONS(184), + [aux_sym__multiplicative_operator_token1] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(186), + [anon_sym_LT_EQ] = ACTIONS(184), + [anon_sym_LT_GT] = ACTIONS(184), + [anon_sym_EQ] = ACTIONS(184), + [anon_sym_GT] = ACTIONS(186), + [anon_sym_GT_EQ] = ACTIONS(184), + [aux_sym__comparison_operator_token1] = ACTIONS(184), + [aux_sym__comparison_operator_token2] = ACTIONS(184), + [aux_sym__comparison_operator_token3] = ACTIONS(184), + [aux_sym__comparison_operator_token4] = ACTIONS(184), + [aux_sym__comparison_operator_token5] = ACTIONS(184), + [aux_sym__comparison_operator_token6] = ACTIONS(184), + [aux_sym__comparison_operator_token7] = ACTIONS(184), + [aux_sym__comparison_operator_token8] = ACTIONS(184), + [aux_sym__comparison_operator_token9] = ACTIONS(184), + [aux_sym_when_expression_token1] = ACTIONS(184), + [aux_sym_variable_tuning_token1] = ACTIONS(184), + [aux_sym_variable_tuning_token2] = ACTIONS(186), + [aux_sym_variable_tuning_token3] = ACTIONS(184), + [aux_sym_variable_tuning_token4] = ACTIONS(184), + [aux_sym_variable_tuning_token5] = ACTIONS(184), + [aux_sym_variable_tuning_token6] = ACTIONS(184), + [aux_sym_variable_tuning_token7] = ACTIONS(184), + [aux_sym_variable_tuning_token8] = ACTIONS(184), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(184), + [aux_sym_function_call_token1] = ACTIONS(184), + [aux_sym_if_statement_token2] = ACTIONS(184), + [aux_sym_else_statement_token1] = ACTIONS(184), + [aux_sym_while_phrase_token1] = ACTIONS(184), + [aux_sym_repeat_tuning_token1] = ACTIONS(184), + [aux_sym_using_statement_token1] = ACTIONS(184), + [aux_sym_input_stream_tuning_token1] = ACTIONS(184), + [aux_sym_input_stream_tuning_token2] = ACTIONS(184), + [aux_sym_input_stream_tuning_token3] = ACTIONS(184), + [aux_sym_input_stream_tuning_token4] = ACTIONS(184), + [aux_sym_input_stream_tuning_token5] = ACTIONS(184), + [aux_sym_input_stream_tuning_token6] = ACTIONS(184), + [aux_sym_input_stream_tuning_token7] = ACTIONS(184), + [aux_sym_input_stream_tuning_token8] = ACTIONS(184), + [aux_sym_input_stream_tuning_token9] = ACTIONS(184), + [aux_sym_input_stream_tuning_token11] = ACTIONS(184), + [aux_sym_output_stream_tuning_token1] = ACTIONS(184), + [aux_sym_output_stream_tuning_token2] = ACTIONS(184), + [aux_sym_output_stream_tuning_token3] = ACTIONS(184), + [aux_sym_output_stream_tuning_token4] = ACTIONS(184), + [aux_sym_output_stream_tuning_token5] = ACTIONS(184), + [aux_sym_output_stream_tuning_token6] = ACTIONS(184), + [aux_sym_output_stream_tuning_token7] = ACTIONS(184), + [aux_sym_output_stream_statement_token1] = ACTIONS(184), + [aux_sym_on_error_phrase_token1] = ACTIONS(184), + [aux_sym_stop_after_phrase_token1] = ACTIONS(184), + [aux_sym_do_tuning_token1] = ACTIONS(184), + [anon_sym_BY] = ACTIONS(184), + [aux_sym_where_clause_token1] = ACTIONS(184), + [aux_sym_query_tuning_token1] = ACTIONS(184), + [aux_sym_query_tuning_token2] = ACTIONS(184), + [aux_sym_query_tuning_token3] = ACTIONS(184), + [aux_sym_query_tuning_token4] = ACTIONS(184), + [aux_sym_query_tuning_token5] = ACTIONS(184), + [aux_sym_of_token1] = ACTIONS(184), + [aux_sym_field_option_token1] = ACTIONS(184), + [aux_sym_field_option_token2] = ACTIONS(184), + [aux_sym_field_option_token3] = ACTIONS(184), + [aux_sym_field_option_token4] = ACTIONS(184), + [aux_sym_field_option_token5] = ACTIONS(184), + [aux_sym_field_option_token6] = ACTIONS(184), + [aux_sym_field_definition_token1] = ACTIONS(184), + [aux_sym_index_definition_token1] = ACTIONS(184), + [aux_sym_on_statement_token1] = ACTIONS(184), + [sym__or_operator] = ACTIONS(184), + [sym__and_operator] = ACTIONS(184), }, [34] = { [sym_comment] = STATE(34), [sym_include] = STATE(34), - [anon_sym_COLON] = ACTIONS(182), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(184), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(182), - [sym__terminator] = ACTIONS(182), - [aux_sym__block_terminator_token1] = ACTIONS(182), - [anon_sym_COMMA] = ACTIONS(182), - [anon_sym_RBRACK] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(182), - [anon_sym_RPAREN] = ACTIONS(182), - [aux_sym_unary_expression_token2] = ACTIONS(182), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [aux_sym__multiplicative_operator_token1] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(184), - [anon_sym_LT_EQ] = ACTIONS(182), - [anon_sym_LT_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(182), - [aux_sym__comparison_operator_token1] = ACTIONS(182), - [aux_sym__comparison_operator_token2] = ACTIONS(182), - [aux_sym__comparison_operator_token3] = ACTIONS(182), - [aux_sym__comparison_operator_token4] = ACTIONS(182), - [aux_sym__comparison_operator_token5] = ACTIONS(182), - [aux_sym__comparison_operator_token6] = ACTIONS(182), - [aux_sym__comparison_operator_token7] = ACTIONS(182), - [aux_sym__comparison_operator_token8] = ACTIONS(182), - [aux_sym__comparison_operator_token9] = ACTIONS(182), - [aux_sym_when_expression_token1] = ACTIONS(182), - [aux_sym_variable_tuning_token1] = ACTIONS(182), - [aux_sym_variable_tuning_token2] = ACTIONS(184), - [aux_sym_variable_tuning_token3] = ACTIONS(182), - [aux_sym_variable_tuning_token4] = ACTIONS(182), - [aux_sym_variable_tuning_token5] = ACTIONS(182), - [aux_sym_variable_tuning_token6] = ACTIONS(182), - [aux_sym_variable_tuning_token7] = ACTIONS(182), - [aux_sym_variable_tuning_token8] = ACTIONS(182), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(182), - [aux_sym_function_call_token1] = ACTIONS(182), - [aux_sym_if_statement_token2] = ACTIONS(182), - [aux_sym_else_statement_token1] = ACTIONS(182), - [aux_sym_while_phrase_token1] = ACTIONS(182), - [aux_sym_repeat_tuning_token1] = ACTIONS(182), - [aux_sym_using_statement_token1] = ACTIONS(182), - [aux_sym_input_stream_tuning_token1] = ACTIONS(182), - [aux_sym_input_stream_tuning_token2] = ACTIONS(182), - [aux_sym_input_stream_tuning_token3] = ACTIONS(182), - [aux_sym_input_stream_tuning_token4] = ACTIONS(182), - [aux_sym_input_stream_tuning_token5] = ACTIONS(182), - [aux_sym_input_stream_tuning_token6] = ACTIONS(182), - [aux_sym_input_stream_tuning_token7] = ACTIONS(182), - [aux_sym_input_stream_tuning_token8] = ACTIONS(182), - [aux_sym_input_stream_tuning_token9] = ACTIONS(182), - [aux_sym_input_stream_tuning_token11] = ACTIONS(182), - [aux_sym_output_stream_tuning_token1] = ACTIONS(182), - [aux_sym_output_stream_tuning_token2] = ACTIONS(182), - [aux_sym_output_stream_tuning_token3] = ACTIONS(182), - [aux_sym_output_stream_tuning_token4] = ACTIONS(182), - [aux_sym_output_stream_tuning_token5] = ACTIONS(182), - [aux_sym_output_stream_tuning_token6] = ACTIONS(182), - [aux_sym_output_stream_tuning_token7] = ACTIONS(182), - [aux_sym_output_stream_statement_token1] = ACTIONS(182), - [aux_sym_on_error_phrase_token1] = ACTIONS(182), - [aux_sym_stop_after_phrase_token1] = ACTIONS(182), - [aux_sym_do_tuning_token1] = ACTIONS(182), - [anon_sym_BY] = ACTIONS(182), - [aux_sym_where_clause_token1] = ACTIONS(182), - [aux_sym_query_tuning_token1] = ACTIONS(182), - [aux_sym_query_tuning_token2] = ACTIONS(182), - [aux_sym_query_tuning_token3] = ACTIONS(182), - [aux_sym_query_tuning_token4] = ACTIONS(182), - [aux_sym_query_tuning_token5] = ACTIONS(182), - [aux_sym_of_token1] = ACTIONS(182), - [aux_sym_field_option_token1] = ACTIONS(182), - [aux_sym_field_option_token2] = ACTIONS(182), - [aux_sym_field_option_token3] = ACTIONS(182), - [aux_sym_field_option_token4] = ACTIONS(182), - [aux_sym_field_option_token5] = ACTIONS(182), - [aux_sym_field_option_token6] = ACTIONS(182), - [aux_sym_field_definition_token1] = ACTIONS(182), - [aux_sym_index_definition_token1] = ACTIONS(182), - [aux_sym_on_statement_token1] = ACTIONS(182), - [sym__or_operator] = ACTIONS(182), - [sym__and_operator] = ACTIONS(182), + [anon_sym_COLON] = ACTIONS(188), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(188), + [sym__terminator] = ACTIONS(188), + [aux_sym__block_terminator_token1] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [aux_sym_unary_expression_token2] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [aux_sym__multiplicative_operator_token1] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_LT_GT] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(188), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_GT_EQ] = ACTIONS(188), + [aux_sym__comparison_operator_token1] = ACTIONS(188), + [aux_sym__comparison_operator_token2] = ACTIONS(188), + [aux_sym__comparison_operator_token3] = ACTIONS(188), + [aux_sym__comparison_operator_token4] = ACTIONS(188), + [aux_sym__comparison_operator_token5] = ACTIONS(188), + [aux_sym__comparison_operator_token6] = ACTIONS(188), + [aux_sym__comparison_operator_token7] = ACTIONS(188), + [aux_sym__comparison_operator_token8] = ACTIONS(188), + [aux_sym__comparison_operator_token9] = ACTIONS(188), + [aux_sym_when_expression_token1] = ACTIONS(188), + [aux_sym_variable_tuning_token1] = ACTIONS(188), + [aux_sym_variable_tuning_token2] = ACTIONS(190), + [aux_sym_variable_tuning_token3] = ACTIONS(188), + [aux_sym_variable_tuning_token4] = ACTIONS(188), + [aux_sym_variable_tuning_token5] = ACTIONS(188), + [aux_sym_variable_tuning_token6] = ACTIONS(188), + [aux_sym_variable_tuning_token7] = ACTIONS(188), + [aux_sym_variable_tuning_token8] = ACTIONS(188), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(188), + [aux_sym_function_call_token1] = ACTIONS(188), + [aux_sym_if_statement_token2] = ACTIONS(188), + [aux_sym_else_statement_token1] = ACTIONS(188), + [aux_sym_while_phrase_token1] = ACTIONS(188), + [aux_sym_repeat_tuning_token1] = ACTIONS(188), + [aux_sym_using_statement_token1] = ACTIONS(188), + [aux_sym_input_stream_tuning_token1] = ACTIONS(188), + [aux_sym_input_stream_tuning_token2] = ACTIONS(188), + [aux_sym_input_stream_tuning_token3] = ACTIONS(188), + [aux_sym_input_stream_tuning_token4] = ACTIONS(188), + [aux_sym_input_stream_tuning_token5] = ACTIONS(188), + [aux_sym_input_stream_tuning_token6] = ACTIONS(188), + [aux_sym_input_stream_tuning_token7] = ACTIONS(188), + [aux_sym_input_stream_tuning_token8] = ACTIONS(188), + [aux_sym_input_stream_tuning_token9] = ACTIONS(188), + [aux_sym_input_stream_tuning_token11] = ACTIONS(188), + [aux_sym_output_stream_tuning_token1] = ACTIONS(188), + [aux_sym_output_stream_tuning_token2] = ACTIONS(188), + [aux_sym_output_stream_tuning_token3] = ACTIONS(188), + [aux_sym_output_stream_tuning_token4] = ACTIONS(188), + [aux_sym_output_stream_tuning_token5] = ACTIONS(188), + [aux_sym_output_stream_tuning_token6] = ACTIONS(188), + [aux_sym_output_stream_tuning_token7] = ACTIONS(188), + [aux_sym_output_stream_statement_token1] = ACTIONS(188), + [aux_sym_on_error_phrase_token1] = ACTIONS(188), + [aux_sym_stop_after_phrase_token1] = ACTIONS(188), + [aux_sym_do_tuning_token1] = ACTIONS(188), + [anon_sym_BY] = ACTIONS(188), + [aux_sym_where_clause_token1] = ACTIONS(188), + [aux_sym_query_tuning_token1] = ACTIONS(188), + [aux_sym_query_tuning_token2] = ACTIONS(188), + [aux_sym_query_tuning_token3] = ACTIONS(188), + [aux_sym_query_tuning_token4] = ACTIONS(188), + [aux_sym_query_tuning_token5] = ACTIONS(188), + [aux_sym_of_token1] = ACTIONS(188), + [aux_sym_field_option_token1] = ACTIONS(188), + [aux_sym_field_option_token2] = ACTIONS(188), + [aux_sym_field_option_token3] = ACTIONS(188), + [aux_sym_field_option_token4] = ACTIONS(188), + [aux_sym_field_option_token5] = ACTIONS(188), + [aux_sym_field_option_token6] = ACTIONS(188), + [aux_sym_field_definition_token1] = ACTIONS(188), + [aux_sym_index_definition_token1] = ACTIONS(188), + [aux_sym_on_statement_token1] = ACTIONS(188), + [sym__or_operator] = ACTIONS(188), + [sym__and_operator] = ACTIONS(188), }, [35] = { [sym_comment] = STATE(35), [sym_include] = STATE(35), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(188), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(186), - [sym__terminator] = ACTIONS(186), - [aux_sym__block_terminator_token1] = ACTIONS(186), - [anon_sym_COMMA] = ACTIONS(186), - [anon_sym_RBRACK] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(186), - [anon_sym_RPAREN] = ACTIONS(186), - [aux_sym_unary_expression_token2] = ACTIONS(186), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [aux_sym__multiplicative_operator_token1] = ACTIONS(186), - [anon_sym_LT] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(186), - [anon_sym_LT_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_GT] = ACTIONS(188), - [anon_sym_GT_EQ] = ACTIONS(186), - [aux_sym__comparison_operator_token1] = ACTIONS(186), - [aux_sym__comparison_operator_token2] = ACTIONS(186), - [aux_sym__comparison_operator_token3] = ACTIONS(186), - [aux_sym__comparison_operator_token4] = ACTIONS(186), - [aux_sym__comparison_operator_token5] = ACTIONS(186), - [aux_sym__comparison_operator_token6] = ACTIONS(186), - [aux_sym__comparison_operator_token7] = ACTIONS(186), - [aux_sym__comparison_operator_token8] = ACTIONS(186), - [aux_sym__comparison_operator_token9] = ACTIONS(186), - [aux_sym_when_expression_token1] = ACTIONS(186), - [aux_sym_variable_tuning_token1] = ACTIONS(186), - [aux_sym_variable_tuning_token2] = ACTIONS(188), - [aux_sym_variable_tuning_token3] = ACTIONS(186), - [aux_sym_variable_tuning_token4] = ACTIONS(186), - [aux_sym_variable_tuning_token5] = ACTIONS(186), - [aux_sym_variable_tuning_token6] = ACTIONS(186), - [aux_sym_variable_tuning_token7] = ACTIONS(186), - [aux_sym_variable_tuning_token8] = ACTIONS(186), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(186), - [aux_sym_function_call_token1] = ACTIONS(186), - [aux_sym_if_statement_token2] = ACTIONS(186), - [aux_sym_else_statement_token1] = ACTIONS(186), - [aux_sym_while_phrase_token1] = ACTIONS(186), - [aux_sym_repeat_tuning_token1] = ACTIONS(186), - [aux_sym_using_statement_token1] = ACTIONS(186), - [aux_sym_input_stream_tuning_token1] = ACTIONS(186), - [aux_sym_input_stream_tuning_token2] = ACTIONS(186), - [aux_sym_input_stream_tuning_token3] = ACTIONS(186), - [aux_sym_input_stream_tuning_token4] = ACTIONS(186), - [aux_sym_input_stream_tuning_token5] = ACTIONS(186), - [aux_sym_input_stream_tuning_token6] = ACTIONS(186), - [aux_sym_input_stream_tuning_token7] = ACTIONS(186), - [aux_sym_input_stream_tuning_token8] = ACTIONS(186), - [aux_sym_input_stream_tuning_token9] = ACTIONS(186), - [aux_sym_input_stream_tuning_token11] = ACTIONS(186), - [aux_sym_output_stream_tuning_token1] = ACTIONS(186), - [aux_sym_output_stream_tuning_token2] = ACTIONS(186), - [aux_sym_output_stream_tuning_token3] = ACTIONS(186), - [aux_sym_output_stream_tuning_token4] = ACTIONS(186), - [aux_sym_output_stream_tuning_token5] = ACTIONS(186), - [aux_sym_output_stream_tuning_token6] = ACTIONS(186), - [aux_sym_output_stream_tuning_token7] = ACTIONS(186), - [aux_sym_output_stream_statement_token1] = ACTIONS(186), - [aux_sym_on_error_phrase_token1] = ACTIONS(186), - [aux_sym_stop_after_phrase_token1] = ACTIONS(186), - [aux_sym_do_tuning_token1] = ACTIONS(186), - [anon_sym_BY] = ACTIONS(186), - [aux_sym_where_clause_token1] = ACTIONS(186), - [aux_sym_query_tuning_token1] = ACTIONS(186), - [aux_sym_query_tuning_token2] = ACTIONS(186), - [aux_sym_query_tuning_token3] = ACTIONS(186), - [aux_sym_query_tuning_token4] = ACTIONS(186), - [aux_sym_query_tuning_token5] = ACTIONS(186), - [aux_sym_of_token1] = ACTIONS(186), - [aux_sym_field_option_token1] = ACTIONS(186), - [aux_sym_field_option_token2] = ACTIONS(186), - [aux_sym_field_option_token3] = ACTIONS(186), - [aux_sym_field_option_token4] = ACTIONS(186), - [aux_sym_field_option_token5] = ACTIONS(186), - [aux_sym_field_option_token6] = ACTIONS(186), - [aux_sym_field_definition_token1] = ACTIONS(186), - [aux_sym_index_definition_token1] = ACTIONS(186), - [aux_sym_on_statement_token1] = ACTIONS(186), - [sym__or_operator] = ACTIONS(186), - [sym__and_operator] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(136), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(136), + [sym__terminator] = ACTIONS(136), + [aux_sym__block_terminator_token1] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(136), + [anon_sym_RBRACK] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(136), + [aux_sym_unary_expression_token2] = ACTIONS(136), + [anon_sym_PLUS] = ACTIONS(136), + [anon_sym_DASH] = ACTIONS(136), + [aux_sym__multiplicative_operator_token1] = ACTIONS(136), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_LT_EQ] = ACTIONS(136), + [anon_sym_LT_GT] = ACTIONS(136), + [anon_sym_EQ] = ACTIONS(136), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_GT_EQ] = ACTIONS(136), + [aux_sym__comparison_operator_token1] = ACTIONS(136), + [aux_sym__comparison_operator_token2] = ACTIONS(136), + [aux_sym__comparison_operator_token3] = ACTIONS(136), + [aux_sym__comparison_operator_token4] = ACTIONS(136), + [aux_sym__comparison_operator_token5] = ACTIONS(136), + [aux_sym__comparison_operator_token6] = ACTIONS(136), + [aux_sym__comparison_operator_token7] = ACTIONS(136), + [aux_sym__comparison_operator_token8] = ACTIONS(136), + [aux_sym__comparison_operator_token9] = ACTIONS(136), + [aux_sym_when_expression_token1] = ACTIONS(136), + [aux_sym_variable_tuning_token1] = ACTIONS(136), + [aux_sym_variable_tuning_token2] = ACTIONS(138), + [aux_sym_variable_tuning_token3] = ACTIONS(136), + [aux_sym_variable_tuning_token4] = ACTIONS(136), + [aux_sym_variable_tuning_token5] = ACTIONS(136), + [aux_sym_variable_tuning_token6] = ACTIONS(136), + [aux_sym_variable_tuning_token7] = ACTIONS(136), + [aux_sym_variable_tuning_token8] = ACTIONS(136), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(136), + [aux_sym_function_call_token1] = ACTIONS(136), + [aux_sym_if_statement_token2] = ACTIONS(136), + [aux_sym_else_statement_token1] = ACTIONS(136), + [aux_sym_while_phrase_token1] = ACTIONS(136), + [aux_sym_repeat_tuning_token1] = ACTIONS(136), + [aux_sym_using_statement_token1] = ACTIONS(136), + [aux_sym_input_stream_tuning_token1] = ACTIONS(136), + [aux_sym_input_stream_tuning_token2] = ACTIONS(136), + [aux_sym_input_stream_tuning_token3] = ACTIONS(136), + [aux_sym_input_stream_tuning_token4] = ACTIONS(136), + [aux_sym_input_stream_tuning_token5] = ACTIONS(136), + [aux_sym_input_stream_tuning_token6] = ACTIONS(136), + [aux_sym_input_stream_tuning_token7] = ACTIONS(136), + [aux_sym_input_stream_tuning_token8] = ACTIONS(136), + [aux_sym_input_stream_tuning_token9] = ACTIONS(136), + [aux_sym_input_stream_tuning_token11] = ACTIONS(136), + [aux_sym_output_stream_tuning_token1] = ACTIONS(136), + [aux_sym_output_stream_tuning_token2] = ACTIONS(136), + [aux_sym_output_stream_tuning_token3] = ACTIONS(136), + [aux_sym_output_stream_tuning_token4] = ACTIONS(136), + [aux_sym_output_stream_tuning_token5] = ACTIONS(136), + [aux_sym_output_stream_tuning_token6] = ACTIONS(136), + [aux_sym_output_stream_tuning_token7] = ACTIONS(136), + [aux_sym_output_stream_statement_token1] = ACTIONS(136), + [aux_sym_on_error_phrase_token1] = ACTIONS(136), + [aux_sym_stop_after_phrase_token1] = ACTIONS(136), + [aux_sym_do_tuning_token1] = ACTIONS(136), + [anon_sym_BY] = ACTIONS(136), + [aux_sym_where_clause_token1] = ACTIONS(136), + [aux_sym_query_tuning_token1] = ACTIONS(136), + [aux_sym_query_tuning_token2] = ACTIONS(136), + [aux_sym_query_tuning_token3] = ACTIONS(136), + [aux_sym_query_tuning_token4] = ACTIONS(136), + [aux_sym_query_tuning_token5] = ACTIONS(136), + [aux_sym_of_token1] = ACTIONS(136), + [aux_sym_field_option_token1] = ACTIONS(136), + [aux_sym_field_option_token2] = ACTIONS(136), + [aux_sym_field_option_token3] = ACTIONS(136), + [aux_sym_field_option_token4] = ACTIONS(136), + [aux_sym_field_option_token5] = ACTIONS(136), + [aux_sym_field_option_token6] = ACTIONS(136), + [aux_sym_field_definition_token1] = ACTIONS(136), + [aux_sym_index_definition_token1] = ACTIONS(136), + [aux_sym_on_statement_token1] = ACTIONS(136), + [sym__or_operator] = ACTIONS(136), + [sym__and_operator] = ACTIONS(136), }, [36] = { [sym_comment] = STATE(36), [sym_include] = STATE(36), - [anon_sym_COLON] = ACTIONS(190), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(192), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(190), - [sym__terminator] = ACTIONS(190), - [aux_sym__block_terminator_token1] = ACTIONS(190), - [anon_sym_COMMA] = ACTIONS(190), - [anon_sym_RBRACK] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(190), - [anon_sym_RPAREN] = ACTIONS(190), - [aux_sym_unary_expression_token2] = ACTIONS(190), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(190), - [aux_sym__multiplicative_operator_token1] = ACTIONS(190), - [anon_sym_LT] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(190), - [anon_sym_LT_GT] = ACTIONS(190), - [anon_sym_EQ] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(190), - [aux_sym__comparison_operator_token1] = ACTIONS(190), - [aux_sym__comparison_operator_token2] = ACTIONS(190), - [aux_sym__comparison_operator_token3] = ACTIONS(190), - [aux_sym__comparison_operator_token4] = ACTIONS(190), - [aux_sym__comparison_operator_token5] = ACTIONS(190), - [aux_sym__comparison_operator_token6] = ACTIONS(190), - [aux_sym__comparison_operator_token7] = ACTIONS(190), - [aux_sym__comparison_operator_token8] = ACTIONS(190), - [aux_sym__comparison_operator_token9] = ACTIONS(190), - [aux_sym_when_expression_token1] = ACTIONS(190), - [aux_sym_variable_tuning_token1] = ACTIONS(190), - [aux_sym_variable_tuning_token2] = ACTIONS(192), - [aux_sym_variable_tuning_token3] = ACTIONS(190), - [aux_sym_variable_tuning_token4] = ACTIONS(190), - [aux_sym_variable_tuning_token5] = ACTIONS(190), - [aux_sym_variable_tuning_token6] = ACTIONS(190), - [aux_sym_variable_tuning_token7] = ACTIONS(190), - [aux_sym_variable_tuning_token8] = ACTIONS(190), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(190), - [aux_sym_function_call_token1] = ACTIONS(190), - [aux_sym_if_statement_token2] = ACTIONS(190), - [aux_sym_else_statement_token1] = ACTIONS(190), - [aux_sym_while_phrase_token1] = ACTIONS(190), - [aux_sym_repeat_tuning_token1] = ACTIONS(190), - [aux_sym_using_statement_token1] = ACTIONS(190), - [aux_sym_input_stream_tuning_token1] = ACTIONS(190), - [aux_sym_input_stream_tuning_token2] = ACTIONS(190), - [aux_sym_input_stream_tuning_token3] = ACTIONS(190), - [aux_sym_input_stream_tuning_token4] = ACTIONS(190), - [aux_sym_input_stream_tuning_token5] = ACTIONS(190), - [aux_sym_input_stream_tuning_token6] = ACTIONS(190), - [aux_sym_input_stream_tuning_token7] = ACTIONS(190), - [aux_sym_input_stream_tuning_token8] = ACTIONS(190), - [aux_sym_input_stream_tuning_token9] = ACTIONS(190), - [aux_sym_input_stream_tuning_token11] = ACTIONS(190), - [aux_sym_output_stream_tuning_token1] = ACTIONS(190), - [aux_sym_output_stream_tuning_token2] = ACTIONS(190), - [aux_sym_output_stream_tuning_token3] = ACTIONS(190), - [aux_sym_output_stream_tuning_token4] = ACTIONS(190), - [aux_sym_output_stream_tuning_token5] = ACTIONS(190), - [aux_sym_output_stream_tuning_token6] = ACTIONS(190), - [aux_sym_output_stream_tuning_token7] = ACTIONS(190), - [aux_sym_output_stream_statement_token1] = ACTIONS(190), - [aux_sym_on_error_phrase_token1] = ACTIONS(190), - [aux_sym_stop_after_phrase_token1] = ACTIONS(190), - [aux_sym_do_tuning_token1] = ACTIONS(190), - [anon_sym_BY] = ACTIONS(190), - [aux_sym_where_clause_token1] = ACTIONS(190), - [aux_sym_query_tuning_token1] = ACTIONS(190), - [aux_sym_query_tuning_token2] = ACTIONS(190), - [aux_sym_query_tuning_token3] = ACTIONS(190), - [aux_sym_query_tuning_token4] = ACTIONS(190), - [aux_sym_query_tuning_token5] = ACTIONS(190), - [aux_sym_of_token1] = ACTIONS(190), - [aux_sym_field_option_token1] = ACTIONS(190), - [aux_sym_field_option_token2] = ACTIONS(190), - [aux_sym_field_option_token3] = ACTIONS(190), - [aux_sym_field_option_token4] = ACTIONS(190), - [aux_sym_field_option_token5] = ACTIONS(190), - [aux_sym_field_option_token6] = ACTIONS(190), - [aux_sym_field_definition_token1] = ACTIONS(190), - [aux_sym_index_definition_token1] = ACTIONS(190), - [aux_sym_on_statement_token1] = ACTIONS(190), - [sym__or_operator] = ACTIONS(190), - [sym__and_operator] = ACTIONS(190), + [anon_sym_COLON] = ACTIONS(192), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(194), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(192), + [sym__terminator] = ACTIONS(192), + [aux_sym__block_terminator_token1] = ACTIONS(192), + [anon_sym_COMMA] = ACTIONS(192), + [anon_sym_RBRACK] = ACTIONS(192), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_RPAREN] = ACTIONS(192), + [aux_sym_unary_expression_token2] = ACTIONS(192), + [anon_sym_PLUS] = ACTIONS(192), + [anon_sym_DASH] = ACTIONS(192), + [aux_sym__multiplicative_operator_token1] = ACTIONS(192), + [anon_sym_LT] = ACTIONS(194), + [anon_sym_LT_EQ] = ACTIONS(192), + [anon_sym_LT_GT] = ACTIONS(192), + [anon_sym_EQ] = ACTIONS(192), + [anon_sym_GT] = ACTIONS(194), + [anon_sym_GT_EQ] = ACTIONS(192), + [aux_sym__comparison_operator_token1] = ACTIONS(192), + [aux_sym__comparison_operator_token2] = ACTIONS(192), + [aux_sym__comparison_operator_token3] = ACTIONS(192), + [aux_sym__comparison_operator_token4] = ACTIONS(192), + [aux_sym__comparison_operator_token5] = ACTIONS(192), + [aux_sym__comparison_operator_token6] = ACTIONS(192), + [aux_sym__comparison_operator_token7] = ACTIONS(192), + [aux_sym__comparison_operator_token8] = ACTIONS(192), + [aux_sym__comparison_operator_token9] = ACTIONS(192), + [aux_sym_when_expression_token1] = ACTIONS(192), + [aux_sym_variable_tuning_token1] = ACTIONS(192), + [aux_sym_variable_tuning_token2] = ACTIONS(194), + [aux_sym_variable_tuning_token3] = ACTIONS(192), + [aux_sym_variable_tuning_token4] = ACTIONS(192), + [aux_sym_variable_tuning_token5] = ACTIONS(192), + [aux_sym_variable_tuning_token6] = ACTIONS(192), + [aux_sym_variable_tuning_token7] = ACTIONS(192), + [aux_sym_variable_tuning_token8] = ACTIONS(192), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(192), + [aux_sym_function_call_token1] = ACTIONS(192), + [aux_sym_if_statement_token2] = ACTIONS(192), + [aux_sym_else_statement_token1] = ACTIONS(192), + [aux_sym_while_phrase_token1] = ACTIONS(192), + [aux_sym_repeat_tuning_token1] = ACTIONS(192), + [aux_sym_using_statement_token1] = ACTIONS(192), + [aux_sym_input_stream_tuning_token1] = ACTIONS(192), + [aux_sym_input_stream_tuning_token2] = ACTIONS(192), + [aux_sym_input_stream_tuning_token3] = ACTIONS(192), + [aux_sym_input_stream_tuning_token4] = ACTIONS(192), + [aux_sym_input_stream_tuning_token5] = ACTIONS(192), + [aux_sym_input_stream_tuning_token6] = ACTIONS(192), + [aux_sym_input_stream_tuning_token7] = ACTIONS(192), + [aux_sym_input_stream_tuning_token8] = ACTIONS(192), + [aux_sym_input_stream_tuning_token9] = ACTIONS(192), + [aux_sym_input_stream_tuning_token11] = ACTIONS(192), + [aux_sym_output_stream_tuning_token1] = ACTIONS(192), + [aux_sym_output_stream_tuning_token2] = ACTIONS(192), + [aux_sym_output_stream_tuning_token3] = ACTIONS(192), + [aux_sym_output_stream_tuning_token4] = ACTIONS(192), + [aux_sym_output_stream_tuning_token5] = ACTIONS(192), + [aux_sym_output_stream_tuning_token6] = ACTIONS(192), + [aux_sym_output_stream_tuning_token7] = ACTIONS(192), + [aux_sym_output_stream_statement_token1] = ACTIONS(192), + [aux_sym_on_error_phrase_token1] = ACTIONS(192), + [aux_sym_stop_after_phrase_token1] = ACTIONS(192), + [aux_sym_do_tuning_token1] = ACTIONS(192), + [anon_sym_BY] = ACTIONS(192), + [aux_sym_where_clause_token1] = ACTIONS(192), + [aux_sym_query_tuning_token1] = ACTIONS(192), + [aux_sym_query_tuning_token2] = ACTIONS(192), + [aux_sym_query_tuning_token3] = ACTIONS(192), + [aux_sym_query_tuning_token4] = ACTIONS(192), + [aux_sym_query_tuning_token5] = ACTIONS(192), + [aux_sym_of_token1] = ACTIONS(192), + [aux_sym_field_option_token1] = ACTIONS(192), + [aux_sym_field_option_token2] = ACTIONS(192), + [aux_sym_field_option_token3] = ACTIONS(192), + [aux_sym_field_option_token4] = ACTIONS(192), + [aux_sym_field_option_token5] = ACTIONS(192), + [aux_sym_field_option_token6] = ACTIONS(192), + [aux_sym_field_definition_token1] = ACTIONS(192), + [aux_sym_index_definition_token1] = ACTIONS(192), + [aux_sym_on_statement_token1] = ACTIONS(192), + [sym__or_operator] = ACTIONS(192), + [sym__and_operator] = ACTIONS(192), }, [37] = { [sym_comment] = STATE(37), [sym_include] = STATE(37), - [anon_sym_COLON] = ACTIONS(194), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(194), - [sym__terminator] = ACTIONS(194), - [aux_sym__block_terminator_token1] = ACTIONS(194), - [anon_sym_COMMA] = ACTIONS(194), - [anon_sym_RBRACK] = ACTIONS(194), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_RPAREN] = ACTIONS(194), - [aux_sym_unary_expression_token2] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [aux_sym__multiplicative_operator_token1] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(196), - [anon_sym_LT_EQ] = ACTIONS(194), - [anon_sym_LT_GT] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(194), - [aux_sym__comparison_operator_token1] = ACTIONS(194), - [aux_sym__comparison_operator_token2] = ACTIONS(194), - [aux_sym__comparison_operator_token3] = ACTIONS(194), - [aux_sym__comparison_operator_token4] = ACTIONS(194), - [aux_sym__comparison_operator_token5] = ACTIONS(194), - [aux_sym__comparison_operator_token6] = ACTIONS(194), - [aux_sym__comparison_operator_token7] = ACTIONS(194), - [aux_sym__comparison_operator_token8] = ACTIONS(194), - [aux_sym__comparison_operator_token9] = ACTIONS(194), - [aux_sym_when_expression_token1] = ACTIONS(194), - [aux_sym_variable_tuning_token1] = ACTIONS(194), - [aux_sym_variable_tuning_token2] = ACTIONS(196), - [aux_sym_variable_tuning_token3] = ACTIONS(194), - [aux_sym_variable_tuning_token4] = ACTIONS(194), - [aux_sym_variable_tuning_token5] = ACTIONS(194), - [aux_sym_variable_tuning_token6] = ACTIONS(194), - [aux_sym_variable_tuning_token7] = ACTIONS(194), - [aux_sym_variable_tuning_token8] = ACTIONS(194), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(194), - [aux_sym_function_call_token1] = ACTIONS(194), - [aux_sym_if_statement_token2] = ACTIONS(194), - [aux_sym_else_statement_token1] = ACTIONS(194), - [aux_sym_while_phrase_token1] = ACTIONS(194), - [aux_sym_repeat_tuning_token1] = ACTIONS(194), - [aux_sym_using_statement_token1] = ACTIONS(194), - [aux_sym_input_stream_tuning_token1] = ACTIONS(194), - [aux_sym_input_stream_tuning_token2] = ACTIONS(194), - [aux_sym_input_stream_tuning_token3] = ACTIONS(194), - [aux_sym_input_stream_tuning_token4] = ACTIONS(194), - [aux_sym_input_stream_tuning_token5] = ACTIONS(194), - [aux_sym_input_stream_tuning_token6] = ACTIONS(194), - [aux_sym_input_stream_tuning_token7] = ACTIONS(194), - [aux_sym_input_stream_tuning_token8] = ACTIONS(194), - [aux_sym_input_stream_tuning_token9] = ACTIONS(194), - [aux_sym_input_stream_tuning_token11] = ACTIONS(194), - [aux_sym_output_stream_tuning_token1] = ACTIONS(194), - [aux_sym_output_stream_tuning_token2] = ACTIONS(194), - [aux_sym_output_stream_tuning_token3] = ACTIONS(194), - [aux_sym_output_stream_tuning_token4] = ACTIONS(194), - [aux_sym_output_stream_tuning_token5] = ACTIONS(194), - [aux_sym_output_stream_tuning_token6] = ACTIONS(194), - [aux_sym_output_stream_tuning_token7] = ACTIONS(194), - [aux_sym_output_stream_statement_token1] = ACTIONS(194), - [aux_sym_on_error_phrase_token1] = ACTIONS(194), - [aux_sym_stop_after_phrase_token1] = ACTIONS(194), - [aux_sym_do_tuning_token1] = ACTIONS(194), - [anon_sym_BY] = ACTIONS(194), - [aux_sym_where_clause_token1] = ACTIONS(194), - [aux_sym_query_tuning_token1] = ACTIONS(194), - [aux_sym_query_tuning_token2] = ACTIONS(194), - [aux_sym_query_tuning_token3] = ACTIONS(194), - [aux_sym_query_tuning_token4] = ACTIONS(194), - [aux_sym_query_tuning_token5] = ACTIONS(194), - [aux_sym_of_token1] = ACTIONS(194), - [aux_sym_field_option_token1] = ACTIONS(194), - [aux_sym_field_option_token2] = ACTIONS(194), - [aux_sym_field_option_token3] = ACTIONS(194), - [aux_sym_field_option_token4] = ACTIONS(194), - [aux_sym_field_option_token5] = ACTIONS(194), - [aux_sym_field_option_token6] = ACTIONS(194), - [aux_sym_field_definition_token1] = ACTIONS(194), - [aux_sym_index_definition_token1] = ACTIONS(194), - [aux_sym_on_statement_token1] = ACTIONS(194), - [sym__or_operator] = ACTIONS(194), - [sym__and_operator] = ACTIONS(194), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [aux_sym__block_terminator_token1] = ACTIONS(67), + [anon_sym_COMMA] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(67), + [aux_sym_unary_expression_token2] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [aux_sym__multiplicative_operator_token1] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_when_expression_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(73), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [aux_sym_variable_tuning_token7] = ACTIONS(67), + [aux_sym_variable_tuning_token8] = ACTIONS(67), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_statement_token1] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_repeat_tuning_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_option_token1] = ACTIONS(67), + [aux_sym_field_option_token2] = ACTIONS(67), + [aux_sym_field_option_token3] = ACTIONS(67), + [aux_sym_field_option_token4] = ACTIONS(67), + [aux_sym_field_option_token5] = ACTIONS(67), + [aux_sym_field_option_token6] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [38] = { [sym_comment] = STATE(38), [sym_include] = STATE(38), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(200), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(198), - [sym__terminator] = ACTIONS(198), - [aux_sym__block_terminator_token1] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_RBRACK] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [aux_sym_unary_expression_token2] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(198), - [aux_sym__multiplicative_operator_token1] = ACTIONS(198), - [anon_sym_LT] = ACTIONS(200), - [anon_sym_LT_EQ] = ACTIONS(198), - [anon_sym_LT_GT] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(200), - [anon_sym_GT_EQ] = ACTIONS(198), - [aux_sym__comparison_operator_token1] = ACTIONS(198), - [aux_sym__comparison_operator_token2] = ACTIONS(198), - [aux_sym__comparison_operator_token3] = ACTIONS(198), - [aux_sym__comparison_operator_token4] = ACTIONS(198), - [aux_sym__comparison_operator_token5] = ACTIONS(198), - [aux_sym__comparison_operator_token6] = ACTIONS(198), - [aux_sym__comparison_operator_token7] = ACTIONS(198), - [aux_sym__comparison_operator_token8] = ACTIONS(198), - [aux_sym__comparison_operator_token9] = ACTIONS(198), - [aux_sym_when_expression_token1] = ACTIONS(198), - [aux_sym_variable_tuning_token1] = ACTIONS(198), - [aux_sym_variable_tuning_token2] = ACTIONS(200), - [aux_sym_variable_tuning_token3] = ACTIONS(198), - [aux_sym_variable_tuning_token4] = ACTIONS(198), - [aux_sym_variable_tuning_token5] = ACTIONS(198), - [aux_sym_variable_tuning_token6] = ACTIONS(198), - [aux_sym_variable_tuning_token7] = ACTIONS(198), - [aux_sym_variable_tuning_token8] = ACTIONS(198), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(198), - [aux_sym_function_call_token1] = ACTIONS(198), - [aux_sym_if_statement_token2] = ACTIONS(198), - [aux_sym_else_statement_token1] = ACTIONS(198), - [aux_sym_while_phrase_token1] = ACTIONS(198), - [aux_sym_repeat_tuning_token1] = ACTIONS(198), - [aux_sym_using_statement_token1] = ACTIONS(198), - [aux_sym_input_stream_tuning_token1] = ACTIONS(198), - [aux_sym_input_stream_tuning_token2] = ACTIONS(198), - [aux_sym_input_stream_tuning_token3] = ACTIONS(198), - [aux_sym_input_stream_tuning_token4] = ACTIONS(198), - [aux_sym_input_stream_tuning_token5] = ACTIONS(198), - [aux_sym_input_stream_tuning_token6] = ACTIONS(198), - [aux_sym_input_stream_tuning_token7] = ACTIONS(198), - [aux_sym_input_stream_tuning_token8] = ACTIONS(198), - [aux_sym_input_stream_tuning_token9] = ACTIONS(198), - [aux_sym_input_stream_tuning_token11] = ACTIONS(198), - [aux_sym_output_stream_tuning_token1] = ACTIONS(198), - [aux_sym_output_stream_tuning_token2] = ACTIONS(198), - [aux_sym_output_stream_tuning_token3] = ACTIONS(198), - [aux_sym_output_stream_tuning_token4] = ACTIONS(198), - [aux_sym_output_stream_tuning_token5] = ACTIONS(198), - [aux_sym_output_stream_tuning_token6] = ACTIONS(198), - [aux_sym_output_stream_tuning_token7] = ACTIONS(198), - [aux_sym_output_stream_statement_token1] = ACTIONS(198), - [aux_sym_on_error_phrase_token1] = ACTIONS(198), - [aux_sym_stop_after_phrase_token1] = ACTIONS(198), - [aux_sym_do_tuning_token1] = ACTIONS(198), - [anon_sym_BY] = ACTIONS(198), - [aux_sym_where_clause_token1] = ACTIONS(198), - [aux_sym_query_tuning_token1] = ACTIONS(198), - [aux_sym_query_tuning_token2] = ACTIONS(198), - [aux_sym_query_tuning_token3] = ACTIONS(198), - [aux_sym_query_tuning_token4] = ACTIONS(198), - [aux_sym_query_tuning_token5] = ACTIONS(198), - [aux_sym_of_token1] = ACTIONS(198), - [aux_sym_field_option_token1] = ACTIONS(198), - [aux_sym_field_option_token2] = ACTIONS(198), - [aux_sym_field_option_token3] = ACTIONS(198), - [aux_sym_field_option_token4] = ACTIONS(198), - [aux_sym_field_option_token5] = ACTIONS(198), - [aux_sym_field_option_token6] = ACTIONS(198), - [aux_sym_field_definition_token1] = ACTIONS(198), - [aux_sym_index_definition_token1] = ACTIONS(198), - [aux_sym_on_statement_token1] = ACTIONS(198), - [sym__or_operator] = ACTIONS(198), - [sym__and_operator] = ACTIONS(198), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(198), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(196), + [sym__terminator] = ACTIONS(196), + [aux_sym__block_terminator_token1] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(196), + [anon_sym_RBRACK] = ACTIONS(196), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_RPAREN] = ACTIONS(196), + [aux_sym_unary_expression_token2] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(196), + [anon_sym_DASH] = ACTIONS(196), + [aux_sym__multiplicative_operator_token1] = ACTIONS(196), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_LT_GT] = ACTIONS(196), + [anon_sym_EQ] = ACTIONS(196), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_GT_EQ] = ACTIONS(196), + [aux_sym__comparison_operator_token1] = ACTIONS(196), + [aux_sym__comparison_operator_token2] = ACTIONS(196), + [aux_sym__comparison_operator_token3] = ACTIONS(196), + [aux_sym__comparison_operator_token4] = ACTIONS(196), + [aux_sym__comparison_operator_token5] = ACTIONS(196), + [aux_sym__comparison_operator_token6] = ACTIONS(196), + [aux_sym__comparison_operator_token7] = ACTIONS(196), + [aux_sym__comparison_operator_token8] = ACTIONS(196), + [aux_sym__comparison_operator_token9] = ACTIONS(196), + [aux_sym_when_expression_token1] = ACTIONS(196), + [aux_sym_variable_tuning_token1] = ACTIONS(196), + [aux_sym_variable_tuning_token2] = ACTIONS(198), + [aux_sym_variable_tuning_token3] = ACTIONS(196), + [aux_sym_variable_tuning_token4] = ACTIONS(196), + [aux_sym_variable_tuning_token5] = ACTIONS(196), + [aux_sym_variable_tuning_token6] = ACTIONS(196), + [aux_sym_variable_tuning_token7] = ACTIONS(196), + [aux_sym_variable_tuning_token8] = ACTIONS(196), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(196), + [aux_sym_function_call_token1] = ACTIONS(196), + [aux_sym_if_statement_token2] = ACTIONS(196), + [aux_sym_else_statement_token1] = ACTIONS(196), + [aux_sym_while_phrase_token1] = ACTIONS(196), + [aux_sym_repeat_tuning_token1] = ACTIONS(196), + [aux_sym_using_statement_token1] = ACTIONS(196), + [aux_sym_input_stream_tuning_token1] = ACTIONS(196), + [aux_sym_input_stream_tuning_token2] = ACTIONS(196), + [aux_sym_input_stream_tuning_token3] = ACTIONS(196), + [aux_sym_input_stream_tuning_token4] = ACTIONS(196), + [aux_sym_input_stream_tuning_token5] = ACTIONS(196), + [aux_sym_input_stream_tuning_token6] = ACTIONS(196), + [aux_sym_input_stream_tuning_token7] = ACTIONS(196), + [aux_sym_input_stream_tuning_token8] = ACTIONS(196), + [aux_sym_input_stream_tuning_token9] = ACTIONS(196), + [aux_sym_input_stream_tuning_token11] = ACTIONS(196), + [aux_sym_output_stream_tuning_token1] = ACTIONS(196), + [aux_sym_output_stream_tuning_token2] = ACTIONS(196), + [aux_sym_output_stream_tuning_token3] = ACTIONS(196), + [aux_sym_output_stream_tuning_token4] = ACTIONS(196), + [aux_sym_output_stream_tuning_token5] = ACTIONS(196), + [aux_sym_output_stream_tuning_token6] = ACTIONS(196), + [aux_sym_output_stream_tuning_token7] = ACTIONS(196), + [aux_sym_output_stream_statement_token1] = ACTIONS(196), + [aux_sym_on_error_phrase_token1] = ACTIONS(196), + [aux_sym_stop_after_phrase_token1] = ACTIONS(196), + [aux_sym_do_tuning_token1] = ACTIONS(196), + [anon_sym_BY] = ACTIONS(196), + [aux_sym_where_clause_token1] = ACTIONS(196), + [aux_sym_query_tuning_token1] = ACTIONS(196), + [aux_sym_query_tuning_token2] = ACTIONS(196), + [aux_sym_query_tuning_token3] = ACTIONS(196), + [aux_sym_query_tuning_token4] = ACTIONS(196), + [aux_sym_query_tuning_token5] = ACTIONS(196), + [aux_sym_of_token1] = ACTIONS(196), + [aux_sym_field_option_token1] = ACTIONS(196), + [aux_sym_field_option_token2] = ACTIONS(196), + [aux_sym_field_option_token3] = ACTIONS(196), + [aux_sym_field_option_token4] = ACTIONS(196), + [aux_sym_field_option_token5] = ACTIONS(196), + [aux_sym_field_option_token6] = ACTIONS(196), + [aux_sym_field_definition_token1] = ACTIONS(196), + [aux_sym_index_definition_token1] = ACTIONS(196), + [aux_sym_on_statement_token1] = ACTIONS(196), + [sym__or_operator] = ACTIONS(196), + [sym__and_operator] = ACTIONS(196), }, [39] = { [sym_comment] = STATE(39), [sym_include] = STATE(39), - [anon_sym_COLON] = ACTIONS(202), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(204), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(202), - [sym__terminator] = ACTIONS(202), - [aux_sym__block_terminator_token1] = ACTIONS(202), - [anon_sym_COMMA] = ACTIONS(202), - [anon_sym_RBRACK] = ACTIONS(202), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_RPAREN] = ACTIONS(202), - [aux_sym_unary_expression_token2] = ACTIONS(202), - [anon_sym_PLUS] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(202), - [aux_sym__multiplicative_operator_token1] = ACTIONS(202), - [anon_sym_LT] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(202), - [anon_sym_LT_GT] = ACTIONS(202), - [anon_sym_EQ] = ACTIONS(202), - [anon_sym_GT] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(202), - [aux_sym__comparison_operator_token1] = ACTIONS(202), - [aux_sym__comparison_operator_token2] = ACTIONS(202), - [aux_sym__comparison_operator_token3] = ACTIONS(202), - [aux_sym__comparison_operator_token4] = ACTIONS(202), - [aux_sym__comparison_operator_token5] = ACTIONS(202), - [aux_sym__comparison_operator_token6] = ACTIONS(202), - [aux_sym__comparison_operator_token7] = ACTIONS(202), - [aux_sym__comparison_operator_token8] = ACTIONS(202), - [aux_sym__comparison_operator_token9] = ACTIONS(202), - [aux_sym_when_expression_token1] = 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__function_argument_with_mode_token4] = ACTIONS(202), - [aux_sym_function_call_token1] = ACTIONS(202), - [aux_sym_if_statement_token2] = ACTIONS(202), - [aux_sym_else_statement_token1] = ACTIONS(202), - [aux_sym_while_phrase_token1] = ACTIONS(202), - [aux_sym_repeat_tuning_token1] = ACTIONS(202), - [aux_sym_using_statement_token1] = ACTIONS(202), - [aux_sym_input_stream_tuning_token1] = ACTIONS(202), - [aux_sym_input_stream_tuning_token2] = ACTIONS(202), - [aux_sym_input_stream_tuning_token3] = ACTIONS(202), - [aux_sym_input_stream_tuning_token4] = ACTIONS(202), - [aux_sym_input_stream_tuning_token5] = ACTIONS(202), - [aux_sym_input_stream_tuning_token6] = ACTIONS(202), - [aux_sym_input_stream_tuning_token7] = ACTIONS(202), - [aux_sym_input_stream_tuning_token8] = ACTIONS(202), - [aux_sym_input_stream_tuning_token9] = ACTIONS(202), - [aux_sym_input_stream_tuning_token11] = ACTIONS(202), - [aux_sym_output_stream_tuning_token1] = ACTIONS(202), - [aux_sym_output_stream_tuning_token2] = ACTIONS(202), - [aux_sym_output_stream_tuning_token3] = ACTIONS(202), - [aux_sym_output_stream_tuning_token4] = ACTIONS(202), - [aux_sym_output_stream_tuning_token5] = ACTIONS(202), - [aux_sym_output_stream_tuning_token6] = ACTIONS(202), - [aux_sym_output_stream_tuning_token7] = ACTIONS(202), - [aux_sym_output_stream_statement_token1] = 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), - [anon_sym_BY] = ACTIONS(202), - [aux_sym_where_clause_token1] = ACTIONS(202), - [aux_sym_query_tuning_token1] = ACTIONS(202), - [aux_sym_query_tuning_token2] = ACTIONS(202), - [aux_sym_query_tuning_token3] = ACTIONS(202), - [aux_sym_query_tuning_token4] = ACTIONS(202), - [aux_sym_query_tuning_token5] = ACTIONS(202), - [aux_sym_of_token1] = 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_on_statement_token1] = ACTIONS(202), - [sym__or_operator] = ACTIONS(202), - [sym__and_operator] = ACTIONS(202), + [anon_sym_COLON] = ACTIONS(200), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(200), + [sym__terminator] = ACTIONS(200), + [aux_sym__block_terminator_token1] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_RBRACK] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [aux_sym_unary_expression_token2] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(200), + [aux_sym__multiplicative_operator_token1] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_LT_GT] = ACTIONS(200), + [anon_sym_EQ] = ACTIONS(200), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_GT_EQ] = ACTIONS(200), + [aux_sym__comparison_operator_token1] = ACTIONS(200), + [aux_sym__comparison_operator_token2] = ACTIONS(200), + [aux_sym__comparison_operator_token3] = ACTIONS(200), + [aux_sym__comparison_operator_token4] = ACTIONS(200), + [aux_sym__comparison_operator_token5] = ACTIONS(200), + [aux_sym__comparison_operator_token6] = ACTIONS(200), + [aux_sym__comparison_operator_token7] = ACTIONS(200), + [aux_sym__comparison_operator_token8] = ACTIONS(200), + [aux_sym__comparison_operator_token9] = ACTIONS(200), + [aux_sym_when_expression_token1] = ACTIONS(200), + [aux_sym_variable_tuning_token1] = ACTIONS(200), + [aux_sym_variable_tuning_token2] = ACTIONS(202), + [aux_sym_variable_tuning_token3] = ACTIONS(200), + [aux_sym_variable_tuning_token4] = ACTIONS(200), + [aux_sym_variable_tuning_token5] = ACTIONS(200), + [aux_sym_variable_tuning_token6] = ACTIONS(200), + [aux_sym_variable_tuning_token7] = ACTIONS(200), + [aux_sym_variable_tuning_token8] = ACTIONS(200), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(200), + [aux_sym_function_call_token1] = ACTIONS(200), + [aux_sym_if_statement_token2] = ACTIONS(200), + [aux_sym_else_statement_token1] = ACTIONS(200), + [aux_sym_while_phrase_token1] = ACTIONS(200), + [aux_sym_repeat_tuning_token1] = ACTIONS(200), + [aux_sym_using_statement_token1] = ACTIONS(200), + [aux_sym_input_stream_tuning_token1] = ACTIONS(200), + [aux_sym_input_stream_tuning_token2] = ACTIONS(200), + [aux_sym_input_stream_tuning_token3] = ACTIONS(200), + [aux_sym_input_stream_tuning_token4] = ACTIONS(200), + [aux_sym_input_stream_tuning_token5] = ACTIONS(200), + [aux_sym_input_stream_tuning_token6] = ACTIONS(200), + [aux_sym_input_stream_tuning_token7] = ACTIONS(200), + [aux_sym_input_stream_tuning_token8] = ACTIONS(200), + [aux_sym_input_stream_tuning_token9] = ACTIONS(200), + [aux_sym_input_stream_tuning_token11] = ACTIONS(200), + [aux_sym_output_stream_tuning_token1] = ACTIONS(200), + [aux_sym_output_stream_tuning_token2] = ACTIONS(200), + [aux_sym_output_stream_tuning_token3] = ACTIONS(200), + [aux_sym_output_stream_tuning_token4] = ACTIONS(200), + [aux_sym_output_stream_tuning_token5] = ACTIONS(200), + [aux_sym_output_stream_tuning_token6] = ACTIONS(200), + [aux_sym_output_stream_tuning_token7] = ACTIONS(200), + [aux_sym_output_stream_statement_token1] = ACTIONS(200), + [aux_sym_on_error_phrase_token1] = ACTIONS(200), + [aux_sym_stop_after_phrase_token1] = ACTIONS(200), + [aux_sym_do_tuning_token1] = ACTIONS(200), + [anon_sym_BY] = ACTIONS(200), + [aux_sym_where_clause_token1] = ACTIONS(200), + [aux_sym_query_tuning_token1] = ACTIONS(200), + [aux_sym_query_tuning_token2] = ACTIONS(200), + [aux_sym_query_tuning_token3] = ACTIONS(200), + [aux_sym_query_tuning_token4] = ACTIONS(200), + [aux_sym_query_tuning_token5] = ACTIONS(200), + [aux_sym_of_token1] = ACTIONS(200), + [aux_sym_field_option_token1] = ACTIONS(200), + [aux_sym_field_option_token2] = ACTIONS(200), + [aux_sym_field_option_token3] = ACTIONS(200), + [aux_sym_field_option_token4] = ACTIONS(200), + [aux_sym_field_option_token5] = ACTIONS(200), + [aux_sym_field_option_token6] = ACTIONS(200), + [aux_sym_field_definition_token1] = ACTIONS(200), + [aux_sym_index_definition_token1] = ACTIONS(200), + [aux_sym_on_statement_token1] = ACTIONS(200), + [sym__or_operator] = ACTIONS(200), + [sym__and_operator] = ACTIONS(200), }, [40] = { [sym_comment] = STATE(40), [sym_include] = STATE(40), - [anon_sym_COLON] = ACTIONS(206), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(206), - [sym__terminator] = ACTIONS(206), - [aux_sym__block_terminator_token1] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(206), - [anon_sym_RBRACK] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(206), - [aux_sym_unary_expression_token2] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [aux_sym__multiplicative_operator_token1] = ACTIONS(206), - [anon_sym_LT] = ACTIONS(208), - [anon_sym_LT_EQ] = ACTIONS(206), - [anon_sym_LT_GT] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(206), - [aux_sym__comparison_operator_token1] = ACTIONS(206), - [aux_sym__comparison_operator_token2] = ACTIONS(206), - [aux_sym__comparison_operator_token3] = ACTIONS(206), - [aux_sym__comparison_operator_token4] = ACTIONS(206), - [aux_sym__comparison_operator_token5] = ACTIONS(206), - [aux_sym__comparison_operator_token6] = ACTIONS(206), - [aux_sym__comparison_operator_token7] = ACTIONS(206), - [aux_sym__comparison_operator_token8] = ACTIONS(206), - [aux_sym__comparison_operator_token9] = ACTIONS(206), - [aux_sym_when_expression_token1] = ACTIONS(206), - [aux_sym_variable_tuning_token1] = ACTIONS(206), - [aux_sym_variable_tuning_token2] = ACTIONS(208), - [aux_sym_variable_tuning_token3] = ACTIONS(206), - [aux_sym_variable_tuning_token4] = ACTIONS(206), - [aux_sym_variable_tuning_token5] = ACTIONS(206), - [aux_sym_variable_tuning_token6] = ACTIONS(206), - [aux_sym_variable_tuning_token7] = ACTIONS(206), - [aux_sym_variable_tuning_token8] = ACTIONS(206), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(206), - [aux_sym_function_call_token1] = ACTIONS(206), - [aux_sym_if_statement_token2] = ACTIONS(206), - [aux_sym_else_statement_token1] = ACTIONS(206), - [aux_sym_while_phrase_token1] = ACTIONS(206), - [aux_sym_repeat_tuning_token1] = ACTIONS(206), - [aux_sym_using_statement_token1] = ACTIONS(206), - [aux_sym_input_stream_tuning_token1] = ACTIONS(206), - [aux_sym_input_stream_tuning_token2] = ACTIONS(206), - [aux_sym_input_stream_tuning_token3] = ACTIONS(206), - [aux_sym_input_stream_tuning_token4] = ACTIONS(206), - [aux_sym_input_stream_tuning_token5] = ACTIONS(206), - [aux_sym_input_stream_tuning_token6] = ACTIONS(206), - [aux_sym_input_stream_tuning_token7] = ACTIONS(206), - [aux_sym_input_stream_tuning_token8] = ACTIONS(206), - [aux_sym_input_stream_tuning_token9] = ACTIONS(206), - [aux_sym_input_stream_tuning_token11] = ACTIONS(206), - [aux_sym_output_stream_tuning_token1] = ACTIONS(206), - [aux_sym_output_stream_tuning_token2] = ACTIONS(206), - [aux_sym_output_stream_tuning_token3] = ACTIONS(206), - [aux_sym_output_stream_tuning_token4] = ACTIONS(206), - [aux_sym_output_stream_tuning_token5] = ACTIONS(206), - [aux_sym_output_stream_tuning_token6] = ACTIONS(206), - [aux_sym_output_stream_tuning_token7] = ACTIONS(206), - [aux_sym_output_stream_statement_token1] = ACTIONS(206), - [aux_sym_on_error_phrase_token1] = ACTIONS(206), - [aux_sym_stop_after_phrase_token1] = ACTIONS(206), - [aux_sym_do_tuning_token1] = ACTIONS(206), - [anon_sym_BY] = ACTIONS(206), - [aux_sym_where_clause_token1] = ACTIONS(206), - [aux_sym_query_tuning_token1] = ACTIONS(206), - [aux_sym_query_tuning_token2] = ACTIONS(206), - [aux_sym_query_tuning_token3] = ACTIONS(206), - [aux_sym_query_tuning_token4] = ACTIONS(206), - [aux_sym_query_tuning_token5] = ACTIONS(206), - [aux_sym_of_token1] = ACTIONS(206), - [aux_sym_field_option_token1] = ACTIONS(206), - [aux_sym_field_option_token2] = ACTIONS(206), - [aux_sym_field_option_token3] = ACTIONS(206), - [aux_sym_field_option_token4] = ACTIONS(206), - [aux_sym_field_option_token5] = ACTIONS(206), - [aux_sym_field_option_token6] = ACTIONS(206), - [aux_sym_field_definition_token1] = ACTIONS(206), - [aux_sym_index_definition_token1] = ACTIONS(206), - [aux_sym_on_statement_token1] = ACTIONS(206), - [sym__or_operator] = ACTIONS(206), - [sym__and_operator] = ACTIONS(206), + [anon_sym_COLON] = ACTIONS(204), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(204), + [sym__terminator] = ACTIONS(204), + [aux_sym__block_terminator_token1] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_RBRACK] = ACTIONS(204), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_RPAREN] = ACTIONS(204), + [aux_sym_unary_expression_token2] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [aux_sym__multiplicative_operator_token1] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_LT_GT] = ACTIONS(204), + [anon_sym_EQ] = ACTIONS(204), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_EQ] = ACTIONS(204), + [aux_sym__comparison_operator_token1] = ACTIONS(204), + [aux_sym__comparison_operator_token2] = ACTIONS(204), + [aux_sym__comparison_operator_token3] = ACTIONS(204), + [aux_sym__comparison_operator_token4] = ACTIONS(204), + [aux_sym__comparison_operator_token5] = ACTIONS(204), + [aux_sym__comparison_operator_token6] = ACTIONS(204), + [aux_sym__comparison_operator_token7] = ACTIONS(204), + [aux_sym__comparison_operator_token8] = ACTIONS(204), + [aux_sym__comparison_operator_token9] = ACTIONS(204), + [aux_sym_when_expression_token1] = ACTIONS(204), + [aux_sym_variable_tuning_token1] = ACTIONS(204), + [aux_sym_variable_tuning_token2] = ACTIONS(206), + [aux_sym_variable_tuning_token3] = ACTIONS(204), + [aux_sym_variable_tuning_token4] = ACTIONS(204), + [aux_sym_variable_tuning_token5] = ACTIONS(204), + [aux_sym_variable_tuning_token6] = ACTIONS(204), + [aux_sym_variable_tuning_token7] = ACTIONS(204), + [aux_sym_variable_tuning_token8] = ACTIONS(204), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(204), + [aux_sym_function_call_token1] = ACTIONS(204), + [aux_sym_if_statement_token2] = ACTIONS(204), + [aux_sym_else_statement_token1] = ACTIONS(204), + [aux_sym_while_phrase_token1] = ACTIONS(204), + [aux_sym_repeat_tuning_token1] = ACTIONS(204), + [aux_sym_using_statement_token1] = ACTIONS(204), + [aux_sym_input_stream_tuning_token1] = ACTIONS(204), + [aux_sym_input_stream_tuning_token2] = ACTIONS(204), + [aux_sym_input_stream_tuning_token3] = ACTIONS(204), + [aux_sym_input_stream_tuning_token4] = ACTIONS(204), + [aux_sym_input_stream_tuning_token5] = ACTIONS(204), + [aux_sym_input_stream_tuning_token6] = ACTIONS(204), + [aux_sym_input_stream_tuning_token7] = ACTIONS(204), + [aux_sym_input_stream_tuning_token8] = ACTIONS(204), + [aux_sym_input_stream_tuning_token9] = ACTIONS(204), + [aux_sym_input_stream_tuning_token11] = ACTIONS(204), + [aux_sym_output_stream_tuning_token1] = ACTIONS(204), + [aux_sym_output_stream_tuning_token2] = ACTIONS(204), + [aux_sym_output_stream_tuning_token3] = ACTIONS(204), + [aux_sym_output_stream_tuning_token4] = ACTIONS(204), + [aux_sym_output_stream_tuning_token5] = ACTIONS(204), + [aux_sym_output_stream_tuning_token6] = ACTIONS(204), + [aux_sym_output_stream_tuning_token7] = ACTIONS(204), + [aux_sym_output_stream_statement_token1] = ACTIONS(204), + [aux_sym_on_error_phrase_token1] = ACTIONS(204), + [aux_sym_stop_after_phrase_token1] = ACTIONS(204), + [aux_sym_do_tuning_token1] = ACTIONS(204), + [anon_sym_BY] = ACTIONS(204), + [aux_sym_where_clause_token1] = ACTIONS(204), + [aux_sym_query_tuning_token1] = ACTIONS(204), + [aux_sym_query_tuning_token2] = ACTIONS(204), + [aux_sym_query_tuning_token3] = ACTIONS(204), + [aux_sym_query_tuning_token4] = ACTIONS(204), + [aux_sym_query_tuning_token5] = ACTIONS(204), + [aux_sym_of_token1] = ACTIONS(204), + [aux_sym_field_option_token1] = ACTIONS(204), + [aux_sym_field_option_token2] = ACTIONS(204), + [aux_sym_field_option_token3] = ACTIONS(204), + [aux_sym_field_option_token4] = ACTIONS(204), + [aux_sym_field_option_token5] = ACTIONS(204), + [aux_sym_field_option_token6] = ACTIONS(204), + [aux_sym_field_definition_token1] = ACTIONS(204), + [aux_sym_index_definition_token1] = ACTIONS(204), + [aux_sym_on_statement_token1] = ACTIONS(204), + [sym__or_operator] = ACTIONS(204), + [sym__and_operator] = ACTIONS(204), }, [41] = { [sym_comment] = STATE(41), [sym_include] = STATE(41), - [anon_sym_COLON] = ACTIONS(210), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(210), - [sym__terminator] = ACTIONS(210), - [aux_sym__block_terminator_token1] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_RBRACK] = ACTIONS(210), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(210), - [aux_sym_unary_expression_token2] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(210), - [anon_sym_DASH] = ACTIONS(210), - [aux_sym__multiplicative_operator_token1] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(210), - [anon_sym_LT_GT] = ACTIONS(210), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(210), - [aux_sym__comparison_operator_token1] = ACTIONS(210), - [aux_sym__comparison_operator_token2] = ACTIONS(210), - [aux_sym__comparison_operator_token3] = ACTIONS(210), - [aux_sym__comparison_operator_token4] = ACTIONS(210), - [aux_sym__comparison_operator_token5] = ACTIONS(210), - [aux_sym__comparison_operator_token6] = ACTIONS(210), - [aux_sym__comparison_operator_token7] = ACTIONS(210), - [aux_sym__comparison_operator_token8] = ACTIONS(210), - [aux_sym__comparison_operator_token9] = ACTIONS(210), - [aux_sym_when_expression_token1] = 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__function_argument_with_mode_token4] = ACTIONS(210), - [aux_sym_function_call_token1] = ACTIONS(210), - [aux_sym_if_statement_token2] = ACTIONS(210), - [aux_sym_else_statement_token1] = ACTIONS(210), - [aux_sym_while_phrase_token1] = ACTIONS(210), - [aux_sym_repeat_tuning_token1] = ACTIONS(210), - [aux_sym_using_statement_token1] = ACTIONS(210), - [aux_sym_input_stream_tuning_token1] = ACTIONS(210), - [aux_sym_input_stream_tuning_token2] = ACTIONS(210), - [aux_sym_input_stream_tuning_token3] = ACTIONS(210), - [aux_sym_input_stream_tuning_token4] = ACTIONS(210), - [aux_sym_input_stream_tuning_token5] = ACTIONS(210), - [aux_sym_input_stream_tuning_token6] = ACTIONS(210), - [aux_sym_input_stream_tuning_token7] = ACTIONS(210), - [aux_sym_input_stream_tuning_token8] = ACTIONS(210), - [aux_sym_input_stream_tuning_token9] = ACTIONS(210), - [aux_sym_input_stream_tuning_token11] = ACTIONS(210), - [aux_sym_output_stream_tuning_token1] = ACTIONS(210), - [aux_sym_output_stream_tuning_token2] = ACTIONS(210), - [aux_sym_output_stream_tuning_token3] = ACTIONS(210), - [aux_sym_output_stream_tuning_token4] = ACTIONS(210), - [aux_sym_output_stream_tuning_token5] = ACTIONS(210), - [aux_sym_output_stream_tuning_token6] = ACTIONS(210), - [aux_sym_output_stream_tuning_token7] = ACTIONS(210), - [aux_sym_output_stream_statement_token1] = 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), - [anon_sym_BY] = ACTIONS(210), - [aux_sym_where_clause_token1] = ACTIONS(210), - [aux_sym_query_tuning_token1] = ACTIONS(210), - [aux_sym_query_tuning_token2] = ACTIONS(210), - [aux_sym_query_tuning_token3] = ACTIONS(210), - [aux_sym_query_tuning_token4] = ACTIONS(210), - [aux_sym_query_tuning_token5] = ACTIONS(210), - [aux_sym_of_token1] = 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_on_statement_token1] = ACTIONS(210), - [sym__or_operator] = ACTIONS(210), - [sym__and_operator] = ACTIONS(210), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(160), + [sym__terminator] = ACTIONS(160), + [aux_sym__block_terminator_token1] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_RBRACK] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [aux_sym_unary_expression_token2] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [aux_sym__multiplicative_operator_token1] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_LT_GT] = ACTIONS(160), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_GT_EQ] = ACTIONS(160), + [aux_sym__comparison_operator_token1] = ACTIONS(160), + [aux_sym__comparison_operator_token2] = ACTIONS(160), + [aux_sym__comparison_operator_token3] = ACTIONS(160), + [aux_sym__comparison_operator_token4] = ACTIONS(160), + [aux_sym__comparison_operator_token5] = ACTIONS(160), + [aux_sym__comparison_operator_token6] = ACTIONS(160), + [aux_sym__comparison_operator_token7] = ACTIONS(160), + [aux_sym__comparison_operator_token8] = ACTIONS(160), + [aux_sym__comparison_operator_token9] = ACTIONS(160), + [aux_sym_when_expression_token1] = ACTIONS(160), + [aux_sym_variable_tuning_token1] = ACTIONS(160), + [aux_sym_variable_tuning_token2] = ACTIONS(162), + [aux_sym_variable_tuning_token3] = ACTIONS(160), + [aux_sym_variable_tuning_token4] = ACTIONS(160), + [aux_sym_variable_tuning_token5] = ACTIONS(160), + [aux_sym_variable_tuning_token6] = ACTIONS(160), + [aux_sym_variable_tuning_token7] = ACTIONS(160), + [aux_sym_variable_tuning_token8] = ACTIONS(160), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(160), + [aux_sym_function_call_token1] = ACTIONS(160), + [aux_sym_if_statement_token2] = ACTIONS(160), + [aux_sym_else_statement_token1] = ACTIONS(160), + [aux_sym_while_phrase_token1] = ACTIONS(160), + [aux_sym_repeat_tuning_token1] = ACTIONS(160), + [aux_sym_using_statement_token1] = ACTIONS(160), + [aux_sym_input_stream_tuning_token1] = ACTIONS(160), + [aux_sym_input_stream_tuning_token2] = ACTIONS(160), + [aux_sym_input_stream_tuning_token3] = ACTIONS(160), + [aux_sym_input_stream_tuning_token4] = ACTIONS(160), + [aux_sym_input_stream_tuning_token5] = ACTIONS(160), + [aux_sym_input_stream_tuning_token6] = ACTIONS(160), + [aux_sym_input_stream_tuning_token7] = ACTIONS(160), + [aux_sym_input_stream_tuning_token8] = ACTIONS(160), + [aux_sym_input_stream_tuning_token9] = ACTIONS(160), + [aux_sym_input_stream_tuning_token11] = ACTIONS(160), + [aux_sym_output_stream_tuning_token1] = ACTIONS(160), + [aux_sym_output_stream_tuning_token2] = ACTIONS(160), + [aux_sym_output_stream_tuning_token3] = ACTIONS(160), + [aux_sym_output_stream_tuning_token4] = ACTIONS(160), + [aux_sym_output_stream_tuning_token5] = ACTIONS(160), + [aux_sym_output_stream_tuning_token6] = ACTIONS(160), + [aux_sym_output_stream_tuning_token7] = ACTIONS(160), + [aux_sym_output_stream_statement_token1] = ACTIONS(160), + [aux_sym_on_error_phrase_token1] = ACTIONS(160), + [aux_sym_stop_after_phrase_token1] = ACTIONS(160), + [aux_sym_do_tuning_token1] = ACTIONS(160), + [anon_sym_BY] = ACTIONS(160), + [aux_sym_where_clause_token1] = ACTIONS(160), + [aux_sym_query_tuning_token1] = ACTIONS(160), + [aux_sym_query_tuning_token2] = ACTIONS(160), + [aux_sym_query_tuning_token3] = ACTIONS(160), + [aux_sym_query_tuning_token4] = ACTIONS(160), + [aux_sym_query_tuning_token5] = ACTIONS(160), + [aux_sym_of_token1] = ACTIONS(160), + [aux_sym_field_option_token1] = ACTIONS(160), + [aux_sym_field_option_token2] = ACTIONS(160), + [aux_sym_field_option_token3] = ACTIONS(160), + [aux_sym_field_option_token4] = ACTIONS(160), + [aux_sym_field_option_token5] = ACTIONS(160), + [aux_sym_field_option_token6] = ACTIONS(160), + [aux_sym_field_definition_token1] = ACTIONS(160), + [aux_sym_index_definition_token1] = ACTIONS(160), + [aux_sym_on_statement_token1] = ACTIONS(160), + [sym__or_operator] = ACTIONS(160), + [sym__and_operator] = ACTIONS(160), }, [42] = { [sym_comment] = STATE(42), [sym_include] = STATE(42), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(216), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(214), - [sym__terminator] = ACTIONS(214), - [aux_sym__block_terminator_token1] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(214), - [anon_sym_RBRACK] = ACTIONS(214), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_RPAREN] = ACTIONS(214), - [aux_sym_unary_expression_token2] = ACTIONS(214), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [aux_sym__multiplicative_operator_token1] = ACTIONS(214), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_LT_EQ] = ACTIONS(214), - [anon_sym_LT_GT] = ACTIONS(214), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(216), - [anon_sym_GT_EQ] = ACTIONS(214), - [aux_sym__comparison_operator_token1] = ACTIONS(214), - [aux_sym__comparison_operator_token2] = ACTIONS(214), - [aux_sym__comparison_operator_token3] = ACTIONS(214), - [aux_sym__comparison_operator_token4] = ACTIONS(214), - [aux_sym__comparison_operator_token5] = ACTIONS(214), - [aux_sym__comparison_operator_token6] = ACTIONS(214), - [aux_sym__comparison_operator_token7] = ACTIONS(214), - [aux_sym__comparison_operator_token8] = ACTIONS(214), - [aux_sym__comparison_operator_token9] = ACTIONS(214), - [aux_sym_when_expression_token1] = ACTIONS(214), - [aux_sym_variable_tuning_token1] = ACTIONS(214), - [aux_sym_variable_tuning_token2] = ACTIONS(216), - [aux_sym_variable_tuning_token3] = ACTIONS(214), - [aux_sym_variable_tuning_token4] = ACTIONS(214), - [aux_sym_variable_tuning_token5] = ACTIONS(214), - [aux_sym_variable_tuning_token6] = ACTIONS(214), - [aux_sym_variable_tuning_token7] = ACTIONS(214), - [aux_sym_variable_tuning_token8] = ACTIONS(214), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(214), - [aux_sym_function_call_token1] = ACTIONS(214), - [aux_sym_if_statement_token2] = ACTIONS(214), - [aux_sym_else_statement_token1] = ACTIONS(214), - [aux_sym_while_phrase_token1] = ACTIONS(214), - [aux_sym_repeat_tuning_token1] = ACTIONS(214), - [aux_sym_using_statement_token1] = ACTIONS(214), - [aux_sym_input_stream_tuning_token1] = ACTIONS(214), - [aux_sym_input_stream_tuning_token2] = ACTIONS(214), - [aux_sym_input_stream_tuning_token3] = ACTIONS(214), - [aux_sym_input_stream_tuning_token4] = ACTIONS(214), - [aux_sym_input_stream_tuning_token5] = ACTIONS(214), - [aux_sym_input_stream_tuning_token6] = ACTIONS(214), - [aux_sym_input_stream_tuning_token7] = ACTIONS(214), - [aux_sym_input_stream_tuning_token8] = ACTIONS(214), - [aux_sym_input_stream_tuning_token9] = ACTIONS(214), - [aux_sym_input_stream_tuning_token11] = ACTIONS(214), - [aux_sym_output_stream_tuning_token1] = ACTIONS(214), - [aux_sym_output_stream_tuning_token2] = ACTIONS(214), - [aux_sym_output_stream_tuning_token3] = ACTIONS(214), - [aux_sym_output_stream_tuning_token4] = ACTIONS(214), - [aux_sym_output_stream_tuning_token5] = ACTIONS(214), - [aux_sym_output_stream_tuning_token6] = ACTIONS(214), - [aux_sym_output_stream_tuning_token7] = ACTIONS(214), - [aux_sym_output_stream_statement_token1] = ACTIONS(214), - [aux_sym_on_error_phrase_token1] = ACTIONS(214), - [aux_sym_stop_after_phrase_token1] = ACTIONS(214), - [aux_sym_do_tuning_token1] = ACTIONS(214), - [anon_sym_BY] = ACTIONS(214), - [aux_sym_where_clause_token1] = ACTIONS(214), - [aux_sym_query_tuning_token1] = ACTIONS(214), - [aux_sym_query_tuning_token2] = ACTIONS(214), - [aux_sym_query_tuning_token3] = ACTIONS(214), - [aux_sym_query_tuning_token4] = ACTIONS(214), - [aux_sym_query_tuning_token5] = ACTIONS(214), - [aux_sym_of_token1] = ACTIONS(214), - [aux_sym_field_option_token1] = ACTIONS(214), - [aux_sym_field_option_token2] = ACTIONS(214), - [aux_sym_field_option_token3] = ACTIONS(214), - [aux_sym_field_option_token4] = ACTIONS(214), - [aux_sym_field_option_token5] = ACTIONS(214), - [aux_sym_field_option_token6] = ACTIONS(214), - [aux_sym_field_definition_token1] = ACTIONS(214), - [aux_sym_index_definition_token1] = ACTIONS(214), - [aux_sym_on_statement_token1] = ACTIONS(214), - [sym__or_operator] = ACTIONS(214), - [sym__and_operator] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(208), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(208), + [sym__terminator] = ACTIONS(208), + [aux_sym__block_terminator_token1] = ACTIONS(208), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_RBRACK] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(208), + [aux_sym_unary_expression_token2] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(208), + [anon_sym_DASH] = ACTIONS(208), + [aux_sym__multiplicative_operator_token1] = ACTIONS(208), + [anon_sym_LT] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(208), + [anon_sym_LT_GT] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_GT] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(208), + [aux_sym__comparison_operator_token1] = ACTIONS(208), + [aux_sym__comparison_operator_token2] = ACTIONS(208), + [aux_sym__comparison_operator_token3] = ACTIONS(208), + [aux_sym__comparison_operator_token4] = ACTIONS(208), + [aux_sym__comparison_operator_token5] = ACTIONS(208), + [aux_sym__comparison_operator_token6] = ACTIONS(208), + [aux_sym__comparison_operator_token7] = ACTIONS(208), + [aux_sym__comparison_operator_token8] = ACTIONS(208), + [aux_sym__comparison_operator_token9] = ACTIONS(208), + [aux_sym_when_expression_token1] = ACTIONS(208), + [aux_sym_variable_tuning_token1] = ACTIONS(208), + [aux_sym_variable_tuning_token2] = ACTIONS(210), + [aux_sym_variable_tuning_token3] = ACTIONS(208), + [aux_sym_variable_tuning_token4] = ACTIONS(208), + [aux_sym_variable_tuning_token5] = ACTIONS(208), + [aux_sym_variable_tuning_token6] = ACTIONS(208), + [aux_sym_variable_tuning_token7] = ACTIONS(208), + [aux_sym_variable_tuning_token8] = ACTIONS(208), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(208), + [aux_sym_function_call_token1] = ACTIONS(208), + [aux_sym_if_statement_token2] = ACTIONS(208), + [aux_sym_else_statement_token1] = ACTIONS(208), + [aux_sym_while_phrase_token1] = ACTIONS(208), + [aux_sym_repeat_tuning_token1] = ACTIONS(208), + [aux_sym_using_statement_token1] = ACTIONS(208), + [aux_sym_input_stream_tuning_token1] = ACTIONS(208), + [aux_sym_input_stream_tuning_token2] = ACTIONS(208), + [aux_sym_input_stream_tuning_token3] = ACTIONS(208), + [aux_sym_input_stream_tuning_token4] = ACTIONS(208), + [aux_sym_input_stream_tuning_token5] = ACTIONS(208), + [aux_sym_input_stream_tuning_token6] = ACTIONS(208), + [aux_sym_input_stream_tuning_token7] = ACTIONS(208), + [aux_sym_input_stream_tuning_token8] = ACTIONS(208), + [aux_sym_input_stream_tuning_token9] = ACTIONS(208), + [aux_sym_input_stream_tuning_token11] = ACTIONS(208), + [aux_sym_output_stream_tuning_token1] = ACTIONS(208), + [aux_sym_output_stream_tuning_token2] = ACTIONS(208), + [aux_sym_output_stream_tuning_token3] = ACTIONS(208), + [aux_sym_output_stream_tuning_token4] = ACTIONS(208), + [aux_sym_output_stream_tuning_token5] = ACTIONS(208), + [aux_sym_output_stream_tuning_token6] = ACTIONS(208), + [aux_sym_output_stream_tuning_token7] = ACTIONS(208), + [aux_sym_output_stream_statement_token1] = ACTIONS(208), + [aux_sym_on_error_phrase_token1] = ACTIONS(208), + [aux_sym_stop_after_phrase_token1] = ACTIONS(208), + [aux_sym_do_tuning_token1] = ACTIONS(208), + [anon_sym_BY] = ACTIONS(208), + [aux_sym_where_clause_token1] = ACTIONS(208), + [aux_sym_query_tuning_token1] = ACTIONS(208), + [aux_sym_query_tuning_token2] = ACTIONS(208), + [aux_sym_query_tuning_token3] = ACTIONS(208), + [aux_sym_query_tuning_token4] = ACTIONS(208), + [aux_sym_query_tuning_token5] = ACTIONS(208), + [aux_sym_of_token1] = ACTIONS(208), + [aux_sym_field_option_token1] = ACTIONS(208), + [aux_sym_field_option_token2] = ACTIONS(208), + [aux_sym_field_option_token3] = ACTIONS(208), + [aux_sym_field_option_token4] = ACTIONS(208), + [aux_sym_field_option_token5] = ACTIONS(208), + [aux_sym_field_option_token6] = ACTIONS(208), + [aux_sym_field_definition_token1] = ACTIONS(208), + [aux_sym_index_definition_token1] = ACTIONS(208), + [aux_sym_on_statement_token1] = ACTIONS(208), + [sym__or_operator] = ACTIONS(208), + [sym__and_operator] = ACTIONS(208), }, [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), + [anon_sym_COLON] = ACTIONS(212), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(212), + [sym__terminator] = ACTIONS(212), + [aux_sym__block_terminator_token1] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_RBRACK] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_RPAREN] = ACTIONS(212), + [aux_sym_unary_expression_token2] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(212), + [anon_sym_DASH] = ACTIONS(212), + [aux_sym__multiplicative_operator_token1] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_LT_GT] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_GT_EQ] = ACTIONS(212), + [aux_sym__comparison_operator_token1] = ACTIONS(212), + [aux_sym__comparison_operator_token2] = ACTIONS(212), + [aux_sym__comparison_operator_token3] = ACTIONS(212), + [aux_sym__comparison_operator_token4] = ACTIONS(212), + [aux_sym__comparison_operator_token5] = ACTIONS(212), + [aux_sym__comparison_operator_token6] = ACTIONS(212), + [aux_sym__comparison_operator_token7] = ACTIONS(212), + [aux_sym__comparison_operator_token8] = ACTIONS(212), + [aux_sym__comparison_operator_token9] = ACTIONS(212), + [aux_sym_when_expression_token1] = ACTIONS(212), + [aux_sym_variable_tuning_token1] = ACTIONS(212), + [aux_sym_variable_tuning_token2] = ACTIONS(214), + [aux_sym_variable_tuning_token3] = ACTIONS(212), + [aux_sym_variable_tuning_token4] = ACTIONS(212), + [aux_sym_variable_tuning_token5] = ACTIONS(212), + [aux_sym_variable_tuning_token6] = ACTIONS(212), + [aux_sym_variable_tuning_token7] = ACTIONS(212), + [aux_sym_variable_tuning_token8] = ACTIONS(212), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(212), + [aux_sym_function_call_token1] = ACTIONS(212), + [aux_sym_if_statement_token2] = ACTIONS(212), + [aux_sym_else_statement_token1] = ACTIONS(212), + [aux_sym_while_phrase_token1] = ACTIONS(212), + [aux_sym_repeat_tuning_token1] = ACTIONS(212), + [aux_sym_using_statement_token1] = ACTIONS(212), + [aux_sym_input_stream_tuning_token1] = ACTIONS(212), + [aux_sym_input_stream_tuning_token2] = ACTIONS(212), + [aux_sym_input_stream_tuning_token3] = ACTIONS(212), + [aux_sym_input_stream_tuning_token4] = ACTIONS(212), + [aux_sym_input_stream_tuning_token5] = ACTIONS(212), + [aux_sym_input_stream_tuning_token6] = ACTIONS(212), + [aux_sym_input_stream_tuning_token7] = ACTIONS(212), + [aux_sym_input_stream_tuning_token8] = ACTIONS(212), + [aux_sym_input_stream_tuning_token9] = ACTIONS(212), + [aux_sym_input_stream_tuning_token11] = ACTIONS(212), + [aux_sym_output_stream_tuning_token1] = ACTIONS(212), + [aux_sym_output_stream_tuning_token2] = ACTIONS(212), + [aux_sym_output_stream_tuning_token3] = ACTIONS(212), + [aux_sym_output_stream_tuning_token4] = ACTIONS(212), + [aux_sym_output_stream_tuning_token5] = ACTIONS(212), + [aux_sym_output_stream_tuning_token6] = ACTIONS(212), + [aux_sym_output_stream_tuning_token7] = ACTIONS(212), + [aux_sym_output_stream_statement_token1] = ACTIONS(212), + [aux_sym_on_error_phrase_token1] = ACTIONS(212), + [aux_sym_stop_after_phrase_token1] = ACTIONS(212), + [aux_sym_do_tuning_token1] = ACTIONS(212), + [anon_sym_BY] = ACTIONS(212), + [aux_sym_where_clause_token1] = ACTIONS(212), + [aux_sym_query_tuning_token1] = ACTIONS(212), + [aux_sym_query_tuning_token2] = ACTIONS(212), + [aux_sym_query_tuning_token3] = ACTIONS(212), + [aux_sym_query_tuning_token4] = ACTIONS(212), + [aux_sym_query_tuning_token5] = ACTIONS(212), + [aux_sym_of_token1] = ACTIONS(212), + [aux_sym_field_option_token1] = ACTIONS(212), + [aux_sym_field_option_token2] = ACTIONS(212), + [aux_sym_field_option_token3] = ACTIONS(212), + [aux_sym_field_option_token4] = ACTIONS(212), + [aux_sym_field_option_token5] = ACTIONS(212), + [aux_sym_field_option_token6] = ACTIONS(212), + [aux_sym_field_definition_token1] = ACTIONS(212), + [aux_sym_index_definition_token1] = ACTIONS(212), + [aux_sym_on_statement_token1] = ACTIONS(212), + [sym__or_operator] = ACTIONS(212), + [sym__and_operator] = ACTIONS(212), }, [44] = { [sym_comment] = STATE(44), [sym_include] = STATE(44), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(218), - [sym__terminator] = ACTIONS(218), - [aux_sym__block_terminator_token1] = ACTIONS(218), - [anon_sym_COMMA] = ACTIONS(218), - [anon_sym_RBRACK] = ACTIONS(218), - [anon_sym_LPAREN] = ACTIONS(218), - [anon_sym_RPAREN] = ACTIONS(218), - [aux_sym_unary_expression_token2] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(218), - [anon_sym_DASH] = ACTIONS(218), - [aux_sym__multiplicative_operator_token1] = ACTIONS(218), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_LT_GT] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_GT_EQ] = ACTIONS(218), - [aux_sym__comparison_operator_token1] = ACTIONS(218), - [aux_sym__comparison_operator_token2] = ACTIONS(218), - [aux_sym__comparison_operator_token3] = ACTIONS(218), - [aux_sym__comparison_operator_token4] = ACTIONS(218), - [aux_sym__comparison_operator_token5] = ACTIONS(218), - [aux_sym__comparison_operator_token6] = ACTIONS(218), - [aux_sym__comparison_operator_token7] = ACTIONS(218), - [aux_sym__comparison_operator_token8] = ACTIONS(218), - [aux_sym__comparison_operator_token9] = ACTIONS(218), - [aux_sym_when_expression_token1] = ACTIONS(218), - [aux_sym_variable_tuning_token1] = ACTIONS(218), - [aux_sym_variable_tuning_token2] = ACTIONS(220), - [aux_sym_variable_tuning_token3] = ACTIONS(218), - [aux_sym_variable_tuning_token4] = ACTIONS(218), - [aux_sym_variable_tuning_token5] = ACTIONS(218), - [aux_sym_variable_tuning_token6] = ACTIONS(218), - [aux_sym_variable_tuning_token7] = ACTIONS(218), - [aux_sym_variable_tuning_token8] = ACTIONS(218), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(218), - [aux_sym_function_call_token1] = ACTIONS(218), - [aux_sym_if_statement_token2] = ACTIONS(218), - [aux_sym_else_statement_token1] = ACTIONS(218), - [aux_sym_while_phrase_token1] = ACTIONS(218), - [aux_sym_repeat_tuning_token1] = ACTIONS(218), - [aux_sym_using_statement_token1] = ACTIONS(218), - [aux_sym_input_stream_tuning_token1] = ACTIONS(218), - [aux_sym_input_stream_tuning_token2] = ACTIONS(218), - [aux_sym_input_stream_tuning_token3] = ACTIONS(218), - [aux_sym_input_stream_tuning_token4] = ACTIONS(218), - [aux_sym_input_stream_tuning_token5] = ACTIONS(218), - [aux_sym_input_stream_tuning_token6] = ACTIONS(218), - [aux_sym_input_stream_tuning_token7] = ACTIONS(218), - [aux_sym_input_stream_tuning_token8] = ACTIONS(218), - [aux_sym_input_stream_tuning_token9] = ACTIONS(218), - [aux_sym_input_stream_tuning_token11] = ACTIONS(218), - [aux_sym_output_stream_tuning_token1] = ACTIONS(218), - [aux_sym_output_stream_tuning_token2] = ACTIONS(218), - [aux_sym_output_stream_tuning_token3] = ACTIONS(218), - [aux_sym_output_stream_tuning_token4] = ACTIONS(218), - [aux_sym_output_stream_tuning_token5] = ACTIONS(218), - [aux_sym_output_stream_tuning_token6] = ACTIONS(218), - [aux_sym_output_stream_tuning_token7] = ACTIONS(218), - [aux_sym_output_stream_statement_token1] = ACTIONS(218), - [aux_sym_on_error_phrase_token1] = ACTIONS(218), - [aux_sym_stop_after_phrase_token1] = ACTIONS(218), - [aux_sym_do_tuning_token1] = ACTIONS(218), - [anon_sym_BY] = ACTIONS(218), - [aux_sym_where_clause_token1] = ACTIONS(218), - [aux_sym_query_tuning_token1] = ACTIONS(218), - [aux_sym_query_tuning_token2] = ACTIONS(218), - [aux_sym_query_tuning_token3] = ACTIONS(218), - [aux_sym_query_tuning_token4] = ACTIONS(218), - [aux_sym_query_tuning_token5] = ACTIONS(218), - [aux_sym_of_token1] = ACTIONS(218), - [aux_sym_field_option_token1] = ACTIONS(218), - [aux_sym_field_option_token2] = ACTIONS(218), - [aux_sym_field_option_token3] = ACTIONS(218), - [aux_sym_field_option_token4] = ACTIONS(218), - [aux_sym_field_option_token5] = ACTIONS(218), - [aux_sym_field_option_token6] = ACTIONS(218), - [aux_sym_field_definition_token1] = ACTIONS(218), - [aux_sym_index_definition_token1] = ACTIONS(218), - [aux_sym_on_statement_token1] = ACTIONS(218), - [sym__or_operator] = ACTIONS(218), - [sym__and_operator] = ACTIONS(218), + [anon_sym_COLON] = ACTIONS(216), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(218), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(216), + [sym__terminator] = ACTIONS(216), + [aux_sym__block_terminator_token1] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(216), + [aux_sym_unary_expression_token2] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(216), + [anon_sym_DASH] = ACTIONS(216), + [aux_sym__multiplicative_operator_token1] = ACTIONS(216), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_LT_EQ] = ACTIONS(216), + [anon_sym_LT_GT] = ACTIONS(216), + [anon_sym_EQ] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(216), + [aux_sym__comparison_operator_token1] = ACTIONS(216), + [aux_sym__comparison_operator_token2] = ACTIONS(216), + [aux_sym__comparison_operator_token3] = ACTIONS(216), + [aux_sym__comparison_operator_token4] = ACTIONS(216), + [aux_sym__comparison_operator_token5] = ACTIONS(216), + [aux_sym__comparison_operator_token6] = ACTIONS(216), + [aux_sym__comparison_operator_token7] = ACTIONS(216), + [aux_sym__comparison_operator_token8] = ACTIONS(216), + [aux_sym__comparison_operator_token9] = ACTIONS(216), + [aux_sym_when_expression_token1] = ACTIONS(216), + [aux_sym_variable_tuning_token1] = ACTIONS(216), + [aux_sym_variable_tuning_token2] = ACTIONS(218), + [aux_sym_variable_tuning_token3] = ACTIONS(216), + [aux_sym_variable_tuning_token4] = ACTIONS(216), + [aux_sym_variable_tuning_token5] = ACTIONS(216), + [aux_sym_variable_tuning_token6] = ACTIONS(216), + [aux_sym_variable_tuning_token7] = ACTIONS(216), + [aux_sym_variable_tuning_token8] = ACTIONS(216), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(216), + [aux_sym_function_call_token1] = ACTIONS(216), + [aux_sym_if_statement_token2] = ACTIONS(216), + [aux_sym_else_statement_token1] = ACTIONS(216), + [aux_sym_while_phrase_token1] = ACTIONS(216), + [aux_sym_repeat_tuning_token1] = ACTIONS(216), + [aux_sym_using_statement_token1] = ACTIONS(216), + [aux_sym_input_stream_tuning_token1] = ACTIONS(216), + [aux_sym_input_stream_tuning_token2] = ACTIONS(216), + [aux_sym_input_stream_tuning_token3] = ACTIONS(216), + [aux_sym_input_stream_tuning_token4] = ACTIONS(216), + [aux_sym_input_stream_tuning_token5] = ACTIONS(216), + [aux_sym_input_stream_tuning_token6] = ACTIONS(216), + [aux_sym_input_stream_tuning_token7] = ACTIONS(216), + [aux_sym_input_stream_tuning_token8] = ACTIONS(216), + [aux_sym_input_stream_tuning_token9] = ACTIONS(216), + [aux_sym_input_stream_tuning_token11] = ACTIONS(216), + [aux_sym_output_stream_tuning_token1] = ACTIONS(216), + [aux_sym_output_stream_tuning_token2] = ACTIONS(216), + [aux_sym_output_stream_tuning_token3] = ACTIONS(216), + [aux_sym_output_stream_tuning_token4] = ACTIONS(216), + [aux_sym_output_stream_tuning_token5] = ACTIONS(216), + [aux_sym_output_stream_tuning_token6] = ACTIONS(216), + [aux_sym_output_stream_tuning_token7] = ACTIONS(216), + [aux_sym_output_stream_statement_token1] = ACTIONS(216), + [aux_sym_on_error_phrase_token1] = ACTIONS(216), + [aux_sym_stop_after_phrase_token1] = ACTIONS(216), + [aux_sym_do_tuning_token1] = ACTIONS(216), + [anon_sym_BY] = ACTIONS(216), + [aux_sym_where_clause_token1] = ACTIONS(216), + [aux_sym_query_tuning_token1] = ACTIONS(216), + [aux_sym_query_tuning_token2] = ACTIONS(216), + [aux_sym_query_tuning_token3] = ACTIONS(216), + [aux_sym_query_tuning_token4] = ACTIONS(216), + [aux_sym_query_tuning_token5] = ACTIONS(216), + [aux_sym_of_token1] = ACTIONS(216), + [aux_sym_field_option_token1] = ACTIONS(216), + [aux_sym_field_option_token2] = ACTIONS(216), + [aux_sym_field_option_token3] = ACTIONS(216), + [aux_sym_field_option_token4] = ACTIONS(216), + [aux_sym_field_option_token5] = ACTIONS(216), + [aux_sym_field_option_token6] = ACTIONS(216), + [aux_sym_field_definition_token1] = ACTIONS(216), + [aux_sym_index_definition_token1] = ACTIONS(216), + [aux_sym_on_statement_token1] = ACTIONS(216), + [sym__or_operator] = ACTIONS(216), + [sym__and_operator] = ACTIONS(216), }, [45] = { [sym_comment] = STATE(45), [sym_include] = STATE(45), - [anon_sym_COLON] = ACTIONS(222), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(224), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(222), - [sym__terminator] = ACTIONS(222), - [aux_sym__block_terminator_token1] = ACTIONS(222), - [anon_sym_COMMA] = ACTIONS(222), - [anon_sym_RBRACK] = ACTIONS(222), - [anon_sym_LPAREN] = ACTIONS(222), - [anon_sym_RPAREN] = ACTIONS(222), - [aux_sym_unary_expression_token2] = ACTIONS(222), - [anon_sym_PLUS] = ACTIONS(222), - [anon_sym_DASH] = ACTIONS(222), - [aux_sym__multiplicative_operator_token1] = ACTIONS(222), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_LT_EQ] = ACTIONS(222), - [anon_sym_LT_GT] = ACTIONS(222), - [anon_sym_EQ] = ACTIONS(222), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_GT_EQ] = ACTIONS(222), - [aux_sym__comparison_operator_token1] = ACTIONS(222), - [aux_sym__comparison_operator_token2] = ACTIONS(222), - [aux_sym__comparison_operator_token3] = ACTIONS(222), - [aux_sym__comparison_operator_token4] = ACTIONS(222), - [aux_sym__comparison_operator_token5] = ACTIONS(222), - [aux_sym__comparison_operator_token6] = ACTIONS(222), - [aux_sym__comparison_operator_token7] = ACTIONS(222), - [aux_sym__comparison_operator_token8] = ACTIONS(222), - [aux_sym__comparison_operator_token9] = ACTIONS(222), - [aux_sym_when_expression_token1] = ACTIONS(222), - [aux_sym_variable_tuning_token1] = ACTIONS(222), - [aux_sym_variable_tuning_token2] = ACTIONS(224), - [aux_sym_variable_tuning_token3] = ACTIONS(222), - [aux_sym_variable_tuning_token4] = ACTIONS(222), - [aux_sym_variable_tuning_token5] = ACTIONS(222), - [aux_sym_variable_tuning_token6] = ACTIONS(222), - [aux_sym_variable_tuning_token7] = ACTIONS(222), - [aux_sym_variable_tuning_token8] = ACTIONS(222), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(222), - [aux_sym_function_call_token1] = ACTIONS(222), - [aux_sym_if_statement_token2] = ACTIONS(222), - [aux_sym_else_statement_token1] = ACTIONS(222), - [aux_sym_while_phrase_token1] = ACTIONS(222), - [aux_sym_repeat_tuning_token1] = ACTIONS(222), - [aux_sym_using_statement_token1] = ACTIONS(222), - [aux_sym_input_stream_tuning_token1] = ACTIONS(222), - [aux_sym_input_stream_tuning_token2] = ACTIONS(222), - [aux_sym_input_stream_tuning_token3] = ACTIONS(222), - [aux_sym_input_stream_tuning_token4] = ACTIONS(222), - [aux_sym_input_stream_tuning_token5] = ACTIONS(222), - [aux_sym_input_stream_tuning_token6] = ACTIONS(222), - [aux_sym_input_stream_tuning_token7] = ACTIONS(222), - [aux_sym_input_stream_tuning_token8] = ACTIONS(222), - [aux_sym_input_stream_tuning_token9] = ACTIONS(222), - [aux_sym_input_stream_tuning_token11] = ACTIONS(222), - [aux_sym_output_stream_tuning_token1] = ACTIONS(222), - [aux_sym_output_stream_tuning_token2] = ACTIONS(222), - [aux_sym_output_stream_tuning_token3] = ACTIONS(222), - [aux_sym_output_stream_tuning_token4] = ACTIONS(222), - [aux_sym_output_stream_tuning_token5] = ACTIONS(222), - [aux_sym_output_stream_tuning_token6] = ACTIONS(222), - [aux_sym_output_stream_tuning_token7] = ACTIONS(222), - [aux_sym_output_stream_statement_token1] = ACTIONS(222), - [aux_sym_on_error_phrase_token1] = ACTIONS(222), - [aux_sym_stop_after_phrase_token1] = ACTIONS(222), - [aux_sym_do_tuning_token1] = ACTIONS(222), - [anon_sym_BY] = ACTIONS(222), - [aux_sym_where_clause_token1] = ACTIONS(222), - [aux_sym_query_tuning_token1] = ACTIONS(222), - [aux_sym_query_tuning_token2] = ACTIONS(222), - [aux_sym_query_tuning_token3] = ACTIONS(222), - [aux_sym_query_tuning_token4] = ACTIONS(222), - [aux_sym_query_tuning_token5] = ACTIONS(222), - [aux_sym_of_token1] = ACTIONS(222), - [aux_sym_field_option_token1] = ACTIONS(222), - [aux_sym_field_option_token2] = ACTIONS(222), - [aux_sym_field_option_token3] = ACTIONS(222), - [aux_sym_field_option_token4] = ACTIONS(222), - [aux_sym_field_option_token5] = ACTIONS(222), - [aux_sym_field_option_token6] = ACTIONS(222), - [aux_sym_field_definition_token1] = ACTIONS(222), - [aux_sym_index_definition_token1] = ACTIONS(222), - [aux_sym_on_statement_token1] = ACTIONS(222), - [sym__or_operator] = ACTIONS(222), - [sym__and_operator] = ACTIONS(222), + [anon_sym_COLON] = ACTIONS(220), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(222), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(220), + [sym__terminator] = ACTIONS(220), + [aux_sym__block_terminator_token1] = ACTIONS(220), + [anon_sym_COMMA] = ACTIONS(220), + [anon_sym_RBRACK] = ACTIONS(220), + [anon_sym_LPAREN] = ACTIONS(220), + [anon_sym_RPAREN] = ACTIONS(220), + [aux_sym_unary_expression_token2] = ACTIONS(220), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [aux_sym__multiplicative_operator_token1] = ACTIONS(220), + [anon_sym_LT] = ACTIONS(222), + [anon_sym_LT_EQ] = ACTIONS(220), + [anon_sym_LT_GT] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(222), + [anon_sym_GT_EQ] = ACTIONS(220), + [aux_sym__comparison_operator_token1] = ACTIONS(220), + [aux_sym__comparison_operator_token2] = ACTIONS(220), + [aux_sym__comparison_operator_token3] = ACTIONS(220), + [aux_sym__comparison_operator_token4] = ACTIONS(220), + [aux_sym__comparison_operator_token5] = ACTIONS(220), + [aux_sym__comparison_operator_token6] = ACTIONS(220), + [aux_sym__comparison_operator_token7] = ACTIONS(220), + [aux_sym__comparison_operator_token8] = ACTIONS(220), + [aux_sym__comparison_operator_token9] = ACTIONS(220), + [aux_sym_when_expression_token1] = ACTIONS(220), + [aux_sym_variable_tuning_token1] = ACTIONS(220), + [aux_sym_variable_tuning_token2] = ACTIONS(222), + [aux_sym_variable_tuning_token3] = ACTIONS(220), + [aux_sym_variable_tuning_token4] = ACTIONS(220), + [aux_sym_variable_tuning_token5] = ACTIONS(220), + [aux_sym_variable_tuning_token6] = ACTIONS(220), + [aux_sym_variable_tuning_token7] = ACTIONS(220), + [aux_sym_variable_tuning_token8] = ACTIONS(220), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(220), + [aux_sym_function_call_token1] = ACTIONS(220), + [aux_sym_if_statement_token2] = ACTIONS(220), + [aux_sym_else_statement_token1] = ACTIONS(220), + [aux_sym_while_phrase_token1] = ACTIONS(220), + [aux_sym_repeat_tuning_token1] = ACTIONS(220), + [aux_sym_using_statement_token1] = ACTIONS(220), + [aux_sym_input_stream_tuning_token1] = ACTIONS(220), + [aux_sym_input_stream_tuning_token2] = ACTIONS(220), + [aux_sym_input_stream_tuning_token3] = ACTIONS(220), + [aux_sym_input_stream_tuning_token4] = ACTIONS(220), + [aux_sym_input_stream_tuning_token5] = ACTIONS(220), + [aux_sym_input_stream_tuning_token6] = ACTIONS(220), + [aux_sym_input_stream_tuning_token7] = ACTIONS(220), + [aux_sym_input_stream_tuning_token8] = ACTIONS(220), + [aux_sym_input_stream_tuning_token9] = ACTIONS(220), + [aux_sym_input_stream_tuning_token11] = ACTIONS(220), + [aux_sym_output_stream_tuning_token1] = ACTIONS(220), + [aux_sym_output_stream_tuning_token2] = ACTIONS(220), + [aux_sym_output_stream_tuning_token3] = ACTIONS(220), + [aux_sym_output_stream_tuning_token4] = ACTIONS(220), + [aux_sym_output_stream_tuning_token5] = ACTIONS(220), + [aux_sym_output_stream_tuning_token6] = ACTIONS(220), + [aux_sym_output_stream_tuning_token7] = ACTIONS(220), + [aux_sym_output_stream_statement_token1] = ACTIONS(220), + [aux_sym_on_error_phrase_token1] = ACTIONS(220), + [aux_sym_stop_after_phrase_token1] = ACTIONS(220), + [aux_sym_do_tuning_token1] = ACTIONS(220), + [anon_sym_BY] = ACTIONS(220), + [aux_sym_where_clause_token1] = ACTIONS(220), + [aux_sym_query_tuning_token1] = ACTIONS(220), + [aux_sym_query_tuning_token2] = ACTIONS(220), + [aux_sym_query_tuning_token3] = ACTIONS(220), + [aux_sym_query_tuning_token4] = ACTIONS(220), + [aux_sym_query_tuning_token5] = ACTIONS(220), + [aux_sym_of_token1] = ACTIONS(220), + [aux_sym_field_option_token1] = ACTIONS(220), + [aux_sym_field_option_token2] = ACTIONS(220), + [aux_sym_field_option_token3] = ACTIONS(220), + [aux_sym_field_option_token4] = ACTIONS(220), + [aux_sym_field_option_token5] = ACTIONS(220), + [aux_sym_field_option_token6] = ACTIONS(220), + [aux_sym_field_definition_token1] = ACTIONS(220), + [aux_sym_index_definition_token1] = ACTIONS(220), + [aux_sym_on_statement_token1] = ACTIONS(220), + [sym__or_operator] = ACTIONS(220), + [sym__and_operator] = ACTIONS(220), }, [46] = { [sym_comment] = STATE(46), [sym_include] = STATE(46), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(226), - [sym__terminator] = ACTIONS(226), - [aux_sym__block_terminator_token1] = ACTIONS(226), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_RPAREN] = ACTIONS(226), - [aux_sym_unary_expression_token2] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_DASH] = ACTIONS(226), - [aux_sym__multiplicative_operator_token1] = ACTIONS(226), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_LT_EQ] = ACTIONS(226), - [anon_sym_LT_GT] = ACTIONS(226), - [anon_sym_EQ] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_GT_EQ] = ACTIONS(226), - [aux_sym__comparison_operator_token1] = ACTIONS(226), - [aux_sym__comparison_operator_token2] = ACTIONS(226), - [aux_sym__comparison_operator_token3] = ACTIONS(226), - [aux_sym__comparison_operator_token4] = ACTIONS(226), - [aux_sym__comparison_operator_token5] = ACTIONS(226), - [aux_sym__comparison_operator_token6] = ACTIONS(226), - [aux_sym__comparison_operator_token7] = ACTIONS(226), - [aux_sym__comparison_operator_token8] = ACTIONS(226), - [aux_sym__comparison_operator_token9] = ACTIONS(226), - [aux_sym_when_expression_token1] = ACTIONS(226), - [aux_sym_variable_tuning_token1] = ACTIONS(226), - [aux_sym_variable_tuning_token2] = ACTIONS(228), - [aux_sym_variable_tuning_token3] = ACTIONS(226), - [aux_sym_variable_tuning_token4] = ACTIONS(226), - [aux_sym_variable_tuning_token5] = ACTIONS(226), - [aux_sym_variable_tuning_token6] = ACTIONS(226), - [aux_sym_variable_tuning_token7] = ACTIONS(226), - [aux_sym_variable_tuning_token8] = ACTIONS(226), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(226), - [aux_sym_function_call_token1] = ACTIONS(226), - [aux_sym_if_statement_token2] = ACTIONS(226), - [aux_sym_else_statement_token1] = ACTIONS(226), - [aux_sym_while_phrase_token1] = ACTIONS(226), - [aux_sym_repeat_tuning_token1] = ACTIONS(226), - [aux_sym_using_statement_token1] = ACTIONS(226), - [aux_sym_input_stream_tuning_token1] = ACTIONS(226), - [aux_sym_input_stream_tuning_token2] = ACTIONS(226), - [aux_sym_input_stream_tuning_token3] = ACTIONS(226), - [aux_sym_input_stream_tuning_token4] = ACTIONS(226), - [aux_sym_input_stream_tuning_token5] = ACTIONS(226), - [aux_sym_input_stream_tuning_token6] = ACTIONS(226), - [aux_sym_input_stream_tuning_token7] = ACTIONS(226), - [aux_sym_input_stream_tuning_token8] = ACTIONS(226), - [aux_sym_input_stream_tuning_token9] = ACTIONS(226), - [aux_sym_input_stream_tuning_token11] = ACTIONS(226), - [aux_sym_output_stream_tuning_token1] = ACTIONS(226), - [aux_sym_output_stream_tuning_token2] = ACTIONS(226), - [aux_sym_output_stream_tuning_token3] = ACTIONS(226), - [aux_sym_output_stream_tuning_token4] = ACTIONS(226), - [aux_sym_output_stream_tuning_token5] = ACTIONS(226), - [aux_sym_output_stream_tuning_token6] = ACTIONS(226), - [aux_sym_output_stream_tuning_token7] = ACTIONS(226), - [aux_sym_output_stream_statement_token1] = ACTIONS(226), - [aux_sym_on_error_phrase_token1] = ACTIONS(226), - [aux_sym_stop_after_phrase_token1] = ACTIONS(226), - [aux_sym_do_tuning_token1] = ACTIONS(226), - [anon_sym_BY] = ACTIONS(226), - [aux_sym_where_clause_token1] = ACTIONS(226), - [aux_sym_query_tuning_token1] = ACTIONS(226), - [aux_sym_query_tuning_token2] = ACTIONS(226), - [aux_sym_query_tuning_token3] = ACTIONS(226), - [aux_sym_query_tuning_token4] = ACTIONS(226), - [aux_sym_query_tuning_token5] = ACTIONS(226), - [aux_sym_of_token1] = ACTIONS(226), - [aux_sym_field_option_token1] = ACTIONS(226), - [aux_sym_field_option_token2] = ACTIONS(226), - [aux_sym_field_option_token3] = ACTIONS(226), - [aux_sym_field_option_token4] = ACTIONS(226), - [aux_sym_field_option_token5] = ACTIONS(226), - [aux_sym_field_option_token6] = ACTIONS(226), - [aux_sym_field_definition_token1] = ACTIONS(226), - [aux_sym_index_definition_token1] = ACTIONS(226), - [aux_sym_on_statement_token1] = ACTIONS(226), - [sym__or_operator] = ACTIONS(226), - [sym__and_operator] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(224), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(224), + [sym__terminator] = ACTIONS(224), + [aux_sym__block_terminator_token1] = ACTIONS(224), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_LPAREN] = ACTIONS(224), + [anon_sym_RPAREN] = ACTIONS(224), + [aux_sym_unary_expression_token2] = ACTIONS(224), + [anon_sym_PLUS] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(224), + [aux_sym__multiplicative_operator_token1] = ACTIONS(224), + [anon_sym_LT] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(224), + [anon_sym_LT_GT] = ACTIONS(224), + [anon_sym_EQ] = ACTIONS(224), + [anon_sym_GT] = ACTIONS(226), + [anon_sym_GT_EQ] = ACTIONS(224), + [aux_sym__comparison_operator_token1] = ACTIONS(224), + [aux_sym__comparison_operator_token2] = ACTIONS(224), + [aux_sym__comparison_operator_token3] = ACTIONS(224), + [aux_sym__comparison_operator_token4] = ACTIONS(224), + [aux_sym__comparison_operator_token5] = ACTIONS(224), + [aux_sym__comparison_operator_token6] = ACTIONS(224), + [aux_sym__comparison_operator_token7] = ACTIONS(224), + [aux_sym__comparison_operator_token8] = ACTIONS(224), + [aux_sym__comparison_operator_token9] = ACTIONS(224), + [aux_sym_when_expression_token1] = ACTIONS(224), + [aux_sym_variable_tuning_token1] = ACTIONS(224), + [aux_sym_variable_tuning_token2] = ACTIONS(226), + [aux_sym_variable_tuning_token3] = ACTIONS(224), + [aux_sym_variable_tuning_token4] = ACTIONS(224), + [aux_sym_variable_tuning_token5] = ACTIONS(224), + [aux_sym_variable_tuning_token6] = ACTIONS(224), + [aux_sym_variable_tuning_token7] = ACTIONS(224), + [aux_sym_variable_tuning_token8] = ACTIONS(224), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(224), + [aux_sym_function_call_token1] = ACTIONS(224), + [aux_sym_if_statement_token2] = ACTIONS(224), + [aux_sym_else_statement_token1] = ACTIONS(224), + [aux_sym_while_phrase_token1] = ACTIONS(224), + [aux_sym_repeat_tuning_token1] = ACTIONS(224), + [aux_sym_using_statement_token1] = ACTIONS(224), + [aux_sym_input_stream_tuning_token1] = ACTIONS(224), + [aux_sym_input_stream_tuning_token2] = ACTIONS(224), + [aux_sym_input_stream_tuning_token3] = ACTIONS(224), + [aux_sym_input_stream_tuning_token4] = ACTIONS(224), + [aux_sym_input_stream_tuning_token5] = ACTIONS(224), + [aux_sym_input_stream_tuning_token6] = ACTIONS(224), + [aux_sym_input_stream_tuning_token7] = ACTIONS(224), + [aux_sym_input_stream_tuning_token8] = ACTIONS(224), + [aux_sym_input_stream_tuning_token9] = ACTIONS(224), + [aux_sym_input_stream_tuning_token11] = ACTIONS(224), + [aux_sym_output_stream_tuning_token1] = ACTIONS(224), + [aux_sym_output_stream_tuning_token2] = ACTIONS(224), + [aux_sym_output_stream_tuning_token3] = ACTIONS(224), + [aux_sym_output_stream_tuning_token4] = ACTIONS(224), + [aux_sym_output_stream_tuning_token5] = ACTIONS(224), + [aux_sym_output_stream_tuning_token6] = ACTIONS(224), + [aux_sym_output_stream_tuning_token7] = ACTIONS(224), + [aux_sym_output_stream_statement_token1] = ACTIONS(224), + [aux_sym_on_error_phrase_token1] = ACTIONS(224), + [aux_sym_stop_after_phrase_token1] = ACTIONS(224), + [aux_sym_do_tuning_token1] = ACTIONS(224), + [anon_sym_BY] = ACTIONS(224), + [aux_sym_where_clause_token1] = ACTIONS(224), + [aux_sym_query_tuning_token1] = ACTIONS(224), + [aux_sym_query_tuning_token2] = ACTIONS(224), + [aux_sym_query_tuning_token3] = ACTIONS(224), + [aux_sym_query_tuning_token4] = ACTIONS(224), + [aux_sym_query_tuning_token5] = ACTIONS(224), + [aux_sym_of_token1] = ACTIONS(224), + [aux_sym_field_option_token1] = ACTIONS(224), + [aux_sym_field_option_token2] = ACTIONS(224), + [aux_sym_field_option_token3] = ACTIONS(224), + [aux_sym_field_option_token4] = ACTIONS(224), + [aux_sym_field_option_token5] = ACTIONS(224), + [aux_sym_field_option_token6] = ACTIONS(224), + [aux_sym_field_definition_token1] = ACTIONS(224), + [aux_sym_index_definition_token1] = ACTIONS(224), + [aux_sym_on_statement_token1] = ACTIONS(224), + [sym__or_operator] = ACTIONS(224), + [sym__and_operator] = ACTIONS(224), }, [47] = { [sym_comment] = STATE(47), [sym_include] = STATE(47), - [anon_sym_COLON] = ACTIONS(230), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(230), - [sym__terminator] = ACTIONS(230), - [aux_sym__block_terminator_token1] = ACTIONS(230), - [anon_sym_COMMA] = ACTIONS(230), - [anon_sym_RBRACK] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(230), - [anon_sym_RPAREN] = ACTIONS(230), - [aux_sym_unary_expression_token2] = ACTIONS(230), - [anon_sym_PLUS] = ACTIONS(230), - [anon_sym_DASH] = ACTIONS(230), - [aux_sym__multiplicative_operator_token1] = ACTIONS(230), - [anon_sym_LT] = ACTIONS(232), - [anon_sym_LT_EQ] = ACTIONS(230), - [anon_sym_LT_GT] = ACTIONS(230), - [anon_sym_EQ] = ACTIONS(230), - [anon_sym_GT] = ACTIONS(232), - [anon_sym_GT_EQ] = ACTIONS(230), - [aux_sym__comparison_operator_token1] = ACTIONS(230), - [aux_sym__comparison_operator_token2] = ACTIONS(230), - [aux_sym__comparison_operator_token3] = ACTIONS(230), - [aux_sym__comparison_operator_token4] = ACTIONS(230), - [aux_sym__comparison_operator_token5] = ACTIONS(230), - [aux_sym__comparison_operator_token6] = ACTIONS(230), - [aux_sym__comparison_operator_token7] = ACTIONS(230), - [aux_sym__comparison_operator_token8] = ACTIONS(230), - [aux_sym__comparison_operator_token9] = ACTIONS(230), - [aux_sym_when_expression_token1] = ACTIONS(230), - [aux_sym_variable_tuning_token1] = ACTIONS(230), - [aux_sym_variable_tuning_token2] = ACTIONS(232), - [aux_sym_variable_tuning_token3] = ACTIONS(230), - [aux_sym_variable_tuning_token4] = ACTIONS(230), - [aux_sym_variable_tuning_token5] = ACTIONS(230), - [aux_sym_variable_tuning_token6] = ACTIONS(230), - [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(230), - [aux_sym_if_statement_token2] = ACTIONS(230), - [aux_sym_else_statement_token1] = ACTIONS(230), - [aux_sym_while_phrase_token1] = ACTIONS(230), - [aux_sym_repeat_tuning_token1] = ACTIONS(230), - [aux_sym_using_statement_token1] = ACTIONS(230), - [aux_sym_input_stream_tuning_token1] = ACTIONS(230), - [aux_sym_input_stream_tuning_token2] = ACTIONS(230), - [aux_sym_input_stream_tuning_token3] = ACTIONS(230), - [aux_sym_input_stream_tuning_token4] = ACTIONS(230), - [aux_sym_input_stream_tuning_token5] = ACTIONS(230), - [aux_sym_input_stream_tuning_token6] = ACTIONS(230), - [aux_sym_input_stream_tuning_token7] = ACTIONS(230), - [aux_sym_input_stream_tuning_token8] = ACTIONS(230), - [aux_sym_input_stream_tuning_token9] = ACTIONS(230), - [aux_sym_input_stream_tuning_token11] = ACTIONS(230), - [aux_sym_output_stream_tuning_token1] = ACTIONS(230), - [aux_sym_output_stream_tuning_token2] = ACTIONS(230), - [aux_sym_output_stream_tuning_token3] = ACTIONS(230), - [aux_sym_output_stream_tuning_token4] = ACTIONS(230), - [aux_sym_output_stream_tuning_token5] = ACTIONS(230), - [aux_sym_output_stream_tuning_token6] = ACTIONS(230), - [aux_sym_output_stream_tuning_token7] = ACTIONS(230), - [aux_sym_output_stream_statement_token1] = ACTIONS(230), - [aux_sym_on_error_phrase_token1] = ACTIONS(230), - [aux_sym_stop_after_phrase_token1] = ACTIONS(230), - [aux_sym_do_tuning_token1] = ACTIONS(230), - [anon_sym_BY] = ACTIONS(230), - [aux_sym_where_clause_token1] = ACTIONS(230), - [aux_sym_query_tuning_token1] = ACTIONS(230), - [aux_sym_query_tuning_token2] = ACTIONS(230), - [aux_sym_query_tuning_token3] = ACTIONS(230), - [aux_sym_query_tuning_token4] = ACTIONS(230), - [aux_sym_query_tuning_token5] = ACTIONS(230), - [aux_sym_of_token1] = ACTIONS(230), - [aux_sym_field_option_token1] = ACTIONS(230), - [aux_sym_field_option_token2] = ACTIONS(230), - [aux_sym_field_option_token3] = ACTIONS(230), - [aux_sym_field_option_token4] = ACTIONS(230), - [aux_sym_field_option_token5] = ACTIONS(230), - [aux_sym_field_option_token6] = ACTIONS(230), - [aux_sym_field_definition_token1] = ACTIONS(230), - [aux_sym_index_definition_token1] = ACTIONS(230), - [aux_sym_on_statement_token1] = ACTIONS(230), - [sym__or_operator] = ACTIONS(230), - [sym__and_operator] = ACTIONS(230), + [anon_sym_COLON] = ACTIONS(228), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(228), + [sym__terminator] = ACTIONS(228), + [aux_sym__block_terminator_token1] = ACTIONS(228), + [anon_sym_COMMA] = ACTIONS(228), + [anon_sym_RBRACK] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [aux_sym_unary_expression_token2] = ACTIONS(228), + [anon_sym_PLUS] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(228), + [aux_sym__multiplicative_operator_token1] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_LT_GT] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_GT_EQ] = ACTIONS(228), + [aux_sym__comparison_operator_token1] = ACTIONS(228), + [aux_sym__comparison_operator_token2] = ACTIONS(228), + [aux_sym__comparison_operator_token3] = ACTIONS(228), + [aux_sym__comparison_operator_token4] = ACTIONS(228), + [aux_sym__comparison_operator_token5] = ACTIONS(228), + [aux_sym__comparison_operator_token6] = ACTIONS(228), + [aux_sym__comparison_operator_token7] = ACTIONS(228), + [aux_sym__comparison_operator_token8] = ACTIONS(228), + [aux_sym__comparison_operator_token9] = ACTIONS(228), + [aux_sym_when_expression_token1] = ACTIONS(228), + [aux_sym_variable_tuning_token1] = ACTIONS(228), + [aux_sym_variable_tuning_token2] = ACTIONS(230), + [aux_sym_variable_tuning_token3] = ACTIONS(228), + [aux_sym_variable_tuning_token4] = ACTIONS(228), + [aux_sym_variable_tuning_token5] = ACTIONS(228), + [aux_sym_variable_tuning_token6] = ACTIONS(228), + [aux_sym_variable_tuning_token7] = ACTIONS(228), + [aux_sym_variable_tuning_token8] = ACTIONS(228), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(228), + [aux_sym_function_call_token1] = ACTIONS(228), + [aux_sym_if_statement_token2] = ACTIONS(228), + [aux_sym_else_statement_token1] = ACTIONS(228), + [aux_sym_while_phrase_token1] = ACTIONS(228), + [aux_sym_repeat_tuning_token1] = ACTIONS(228), + [aux_sym_using_statement_token1] = ACTIONS(228), + [aux_sym_input_stream_tuning_token1] = ACTIONS(228), + [aux_sym_input_stream_tuning_token2] = ACTIONS(228), + [aux_sym_input_stream_tuning_token3] = ACTIONS(228), + [aux_sym_input_stream_tuning_token4] = ACTIONS(228), + [aux_sym_input_stream_tuning_token5] = ACTIONS(228), + [aux_sym_input_stream_tuning_token6] = ACTIONS(228), + [aux_sym_input_stream_tuning_token7] = ACTIONS(228), + [aux_sym_input_stream_tuning_token8] = ACTIONS(228), + [aux_sym_input_stream_tuning_token9] = ACTIONS(228), + [aux_sym_input_stream_tuning_token11] = ACTIONS(228), + [aux_sym_output_stream_tuning_token1] = ACTIONS(228), + [aux_sym_output_stream_tuning_token2] = ACTIONS(228), + [aux_sym_output_stream_tuning_token3] = ACTIONS(228), + [aux_sym_output_stream_tuning_token4] = ACTIONS(228), + [aux_sym_output_stream_tuning_token5] = ACTIONS(228), + [aux_sym_output_stream_tuning_token6] = ACTIONS(228), + [aux_sym_output_stream_tuning_token7] = ACTIONS(228), + [aux_sym_output_stream_statement_token1] = ACTIONS(228), + [aux_sym_on_error_phrase_token1] = ACTIONS(228), + [aux_sym_stop_after_phrase_token1] = ACTIONS(228), + [aux_sym_do_tuning_token1] = ACTIONS(228), + [anon_sym_BY] = ACTIONS(228), + [aux_sym_where_clause_token1] = ACTIONS(228), + [aux_sym_query_tuning_token1] = ACTIONS(228), + [aux_sym_query_tuning_token2] = ACTIONS(228), + [aux_sym_query_tuning_token3] = ACTIONS(228), + [aux_sym_query_tuning_token4] = ACTIONS(228), + [aux_sym_query_tuning_token5] = ACTIONS(228), + [aux_sym_of_token1] = ACTIONS(228), + [aux_sym_field_option_token1] = ACTIONS(228), + [aux_sym_field_option_token2] = ACTIONS(228), + [aux_sym_field_option_token3] = ACTIONS(228), + [aux_sym_field_option_token4] = ACTIONS(228), + [aux_sym_field_option_token5] = ACTIONS(228), + [aux_sym_field_option_token6] = ACTIONS(228), + [aux_sym_field_definition_token1] = ACTIONS(228), + [aux_sym_index_definition_token1] = ACTIONS(228), + [aux_sym_on_statement_token1] = ACTIONS(228), + [sym__or_operator] = ACTIONS(228), + [sym__and_operator] = ACTIONS(228), }, [48] = { [sym_comment] = STATE(48), [sym_include] = STATE(48), - [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), + [anon_sym_COLON] = ACTIONS(232), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(234), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(232), + [sym__terminator] = ACTIONS(232), + [aux_sym__block_terminator_token1] = ACTIONS(232), + [anon_sym_COMMA] = ACTIONS(232), + [anon_sym_RBRACK] = ACTIONS(232), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_RPAREN] = ACTIONS(232), + [aux_sym_unary_expression_token2] = ACTIONS(232), + [anon_sym_PLUS] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(232), + [aux_sym__multiplicative_operator_token1] = ACTIONS(232), + [anon_sym_LT] = ACTIONS(234), + [anon_sym_LT_EQ] = ACTIONS(232), + [anon_sym_LT_GT] = ACTIONS(232), + [anon_sym_EQ] = ACTIONS(232), + [anon_sym_GT] = ACTIONS(234), + [anon_sym_GT_EQ] = ACTIONS(232), + [aux_sym__comparison_operator_token1] = ACTIONS(232), + [aux_sym__comparison_operator_token2] = ACTIONS(232), + [aux_sym__comparison_operator_token3] = ACTIONS(232), + [aux_sym__comparison_operator_token4] = ACTIONS(232), + [aux_sym__comparison_operator_token5] = ACTIONS(232), + [aux_sym__comparison_operator_token6] = ACTIONS(232), + [aux_sym__comparison_operator_token7] = ACTIONS(232), + [aux_sym__comparison_operator_token8] = ACTIONS(232), + [aux_sym__comparison_operator_token9] = ACTIONS(232), + [aux_sym_when_expression_token1] = ACTIONS(232), + [aux_sym_variable_tuning_token1] = ACTIONS(232), + [aux_sym_variable_tuning_token2] = ACTIONS(234), + [aux_sym_variable_tuning_token3] = ACTIONS(232), + [aux_sym_variable_tuning_token4] = ACTIONS(232), + [aux_sym_variable_tuning_token5] = ACTIONS(232), + [aux_sym_variable_tuning_token6] = ACTIONS(232), + [aux_sym_variable_tuning_token7] = ACTIONS(232), + [aux_sym_variable_tuning_token8] = ACTIONS(232), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(232), + [aux_sym_function_call_token1] = ACTIONS(232), + [aux_sym_if_statement_token2] = ACTIONS(232), + [aux_sym_else_statement_token1] = ACTIONS(232), + [aux_sym_while_phrase_token1] = ACTIONS(232), + [aux_sym_repeat_tuning_token1] = ACTIONS(232), + [aux_sym_using_statement_token1] = ACTIONS(232), + [aux_sym_input_stream_tuning_token1] = ACTIONS(232), + [aux_sym_input_stream_tuning_token2] = ACTIONS(232), + [aux_sym_input_stream_tuning_token3] = ACTIONS(232), + [aux_sym_input_stream_tuning_token4] = ACTIONS(232), + [aux_sym_input_stream_tuning_token5] = ACTIONS(232), + [aux_sym_input_stream_tuning_token6] = ACTIONS(232), + [aux_sym_input_stream_tuning_token7] = ACTIONS(232), + [aux_sym_input_stream_tuning_token8] = ACTIONS(232), + [aux_sym_input_stream_tuning_token9] = ACTIONS(232), + [aux_sym_input_stream_tuning_token11] = ACTIONS(232), + [aux_sym_output_stream_tuning_token1] = ACTIONS(232), + [aux_sym_output_stream_tuning_token2] = ACTIONS(232), + [aux_sym_output_stream_tuning_token3] = ACTIONS(232), + [aux_sym_output_stream_tuning_token4] = ACTIONS(232), + [aux_sym_output_stream_tuning_token5] = ACTIONS(232), + [aux_sym_output_stream_tuning_token6] = ACTIONS(232), + [aux_sym_output_stream_tuning_token7] = ACTIONS(232), + [aux_sym_output_stream_statement_token1] = ACTIONS(232), + [aux_sym_on_error_phrase_token1] = ACTIONS(232), + [aux_sym_stop_after_phrase_token1] = ACTIONS(232), + [aux_sym_do_tuning_token1] = ACTIONS(232), + [anon_sym_BY] = ACTIONS(232), + [aux_sym_where_clause_token1] = ACTIONS(232), + [aux_sym_query_tuning_token1] = ACTIONS(232), + [aux_sym_query_tuning_token2] = ACTIONS(232), + [aux_sym_query_tuning_token3] = ACTIONS(232), + [aux_sym_query_tuning_token4] = ACTIONS(232), + [aux_sym_query_tuning_token5] = ACTIONS(232), + [aux_sym_of_token1] = ACTIONS(232), + [aux_sym_field_option_token1] = ACTIONS(232), + [aux_sym_field_option_token2] = ACTIONS(232), + [aux_sym_field_option_token3] = ACTIONS(232), + [aux_sym_field_option_token4] = ACTIONS(232), + [aux_sym_field_option_token5] = ACTIONS(232), + [aux_sym_field_option_token6] = ACTIONS(232), + [aux_sym_field_definition_token1] = ACTIONS(232), + [aux_sym_index_definition_token1] = ACTIONS(232), + [aux_sym_on_statement_token1] = ACTIONS(232), + [sym__or_operator] = ACTIONS(232), + [sym__and_operator] = ACTIONS(232), }, [49] = { [sym_comment] = STATE(49), [sym_include] = STATE(49), - [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), + [anon_sym_COLON] = ACTIONS(236), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(238), + [anon_sym_LBRACE] = ACTIONS(75), + [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), }, [50] = { [sym_comment] = STATE(50), [sym_include] = STATE(50), - [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), + [anon_sym_COLON] = ACTIONS(240), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(242), + [anon_sym_LBRACE] = ACTIONS(75), + [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), }, [51] = { [sym_comment] = STATE(51), [sym_include] = STATE(51), - [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), + [anon_sym_COLON] = ACTIONS(244), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_LBRACE] = ACTIONS(75), + [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), }, [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), + [anon_sym_COLON] = ACTIONS(248), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(75), + [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_function_call_token1] = 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), + [aux_sym_using_statement_token1] = ACTIONS(248), + [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_where_clause_token1] = ACTIONS(248), + [aux_sym_query_tuning_token1] = ACTIONS(248), + [aux_sym_query_tuning_token2] = ACTIONS(248), + [aux_sym_query_tuning_token3] = ACTIONS(248), + [aux_sym_query_tuning_token4] = ACTIONS(248), + [aux_sym_query_tuning_token5] = 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), }, [53] = { [sym_comment] = STATE(53), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [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_assignment] = STATE(6885), + [sym_variable_assignment] = STATE(2292), + [sym_variable_definition] = STATE(2292), + [sym_buffer_definition] = STATE(2292), + [sym_query_definition] = STATE(2292), + [sym_function_call_statement] = STATE(2292), + [sym_function_call] = STATE(5492), + [sym_if_statement] = STATE(2292), + [sym_label] = STATE(2291), + [sym_repeat_statement] = STATE(2292), + [sym_procedure_statement] = STATE(2292), + [sym_procedure_parameter_definition] = STATE(2292), + [sym_function_statement] = STATE(2292), + [sym_return_statement] = STATE(2292), + [sym_interface_statement] = STATE(2292), + [sym_dataset_definition] = STATE(2292), + [sym_using_statement] = STATE(2292), + [sym_class_statement] = STATE(2292), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2292), + [sym_input_close_statement] = STATE(2292), + [sym_output_close_statement] = STATE(2292), + [sym__stream_statement] = STATE(2292), + [sym_input_stream_statement] = STATE(2290), + [sym_output_stream_statement] = STATE(2290), + [sym_do_block] = STATE(2292), + [sym_case_statement] = STATE(2292), + [sym_for_statement] = STATE(2292), + [sym_find_statement] = STATE(2292), + [sym_abl_statement] = STATE(2292), + [sym_assign_statement] = STATE(2292), + [sym_catch_statement] = STATE(2292), + [sym_finally_statement] = STATE(2292), + [sym_accumulate_statement] = STATE(2292), + [sym_undo_statement] = STATE(2292), + [sym_error_scope_statement] = STATE(2292), + [sym_workfile_definition] = STATE(2292), + [sym_temp_table_definition] = STATE(2292), + [sym_on_statement] = STATE(2292), + [sym_prompt_for_statement] = STATE(2292), + [sym_var_statement] = STATE(2292), + [sym_button_definition] = STATE(2292), + [sym_run_statement] = STATE(2292), + [sym_enum_statement] = STATE(2292), + [sym__statement] = STATE(2228), + [aux_sym_source_code_repeat1] = STATE(53), + [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(255), + [aux_sym_input_expression_token1] = ACTIONS(257), + [aux_sym_class_type_token1] = ACTIONS(260), + [aux_sym_scope_tuning_token1] = ACTIONS(263), + [aux_sym_variable_definition_token1] = ACTIONS(266), + [aux_sym_variable_definition_token2] = ACTIONS(266), + [aux_sym_buffer_definition_token2] = ACTIONS(269), + [aux_sym_return_type_token2] = ACTIONS(272), + [aux_sym_argument_mode_token1] = ACTIONS(275), + [aux_sym_if_statement_token1] = ACTIONS(278), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(284), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(290), + [aux_sym_using_statement_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token1] = ACTIONS(296), + [aux_sym_on_error_phrase_token3] = ACTIONS(299), + [aux_sym_do_block_token1] = ACTIONS(302), + [aux_sym__case_terminator_token1] = ACTIONS(305), + [aux_sym_find_statement_token1] = ACTIONS(308), + [aux_sym_assign_statement_token1] = ACTIONS(311), + [aux_sym_catch_statement_token1] = ACTIONS(314), + [aux_sym_finally_statement_token1] = ACTIONS(317), + [aux_sym_accumulate_statement_token1] = ACTIONS(320), + [aux_sym_error_scope_statement_token1] = ACTIONS(323), + [aux_sym_error_scope_statement_token2] = ACTIONS(323), + [aux_sym_prompt_for_statement_token1] = ACTIONS(326), + [aux_sym_var_statement_token1] = ACTIONS(329), + [aux_sym_run_statement_token1] = ACTIONS(332), + [aux_sym_enum_definition_token1] = ACTIONS(335), + }, + [54] = { + [sym_comment] = STATE(54), + [sym_qualified_name] = STATE(5530), + [sym_include] = STATE(54), + [sym_assignment] = STATE(6885), + [sym_variable_assignment] = STATE(2292), + [sym_variable_definition] = STATE(2292), + [sym_buffer_definition] = STATE(2292), + [sym_query_definition] = STATE(2292), + [sym_function_call_statement] = STATE(2292), + [sym_function_call] = STATE(5492), + [sym_if_statement] = STATE(2292), + [sym_label] = STATE(2291), + [sym_repeat_statement] = STATE(2292), + [sym_procedure_statement] = STATE(2292), + [sym_procedure_parameter_definition] = STATE(2292), + [sym_function_statement] = STATE(2292), + [sym_return_statement] = STATE(2292), + [sym_interface_statement] = STATE(2292), + [sym_dataset_definition] = STATE(2292), + [sym_using_statement] = STATE(2292), + [sym_class_statement] = STATE(2292), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2292), + [sym_input_close_statement] = STATE(2292), + [sym_output_close_statement] = STATE(2292), + [sym__stream_statement] = STATE(2292), + [sym_input_stream_statement] = STATE(2290), + [sym_output_stream_statement] = STATE(2290), + [sym_do_block] = STATE(2292), + [sym_case_statement] = STATE(2292), + [sym_for_statement] = STATE(2292), + [sym_find_statement] = STATE(2292), + [sym_abl_statement] = STATE(2292), + [sym_assign_statement] = STATE(2292), + [sym_catch_statement] = STATE(2292), + [sym_finally_statement] = STATE(2292), + [sym_accumulate_statement] = STATE(2292), + [sym_undo_statement] = STATE(2292), + [sym_error_scope_statement] = STATE(2292), + [sym_workfile_definition] = STATE(2292), + [sym_temp_table_definition] = STATE(2292), + [sym_on_statement] = STATE(2292), + [sym_prompt_for_statement] = STATE(2292), + [sym_var_statement] = STATE(2292), + [sym_button_definition] = STATE(2292), + [sym_run_statement] = STATE(2292), + [sym_enum_statement] = STATE(2292), + [sym__statement] = STATE(2228), + [aux_sym_source_code_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(340), + [aux_sym_input_expression_token1] = ACTIONS(342), + [aux_sym_class_type_token1] = ACTIONS(344), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(346), + [aux_sym_variable_definition_token2] = ACTIONS(346), + [aux_sym_buffer_definition_token2] = ACTIONS(348), + [aux_sym_return_type_token2] = ACTIONS(350), + [aux_sym_argument_mode_token1] = ACTIONS(352), + [aux_sym_if_statement_token1] = ACTIONS(354), + [aux_sym_repeat_statement_token1] = ACTIONS(356), + [aux_sym__procedure_terminator_token1] = ACTIONS(358), + [aux_sym__function_terminator_token1] = ACTIONS(360), + [aux_sym_interface_statement_token1] = ACTIONS(362), + [aux_sym_using_statement_token1] = ACTIONS(364), + [aux_sym_on_error_phrase_token1] = ACTIONS(366), + [aux_sym_on_error_phrase_token3] = ACTIONS(368), + [aux_sym_do_block_token1] = ACTIONS(370), + [aux_sym__case_terminator_token1] = ACTIONS(372), + [aux_sym_find_statement_token1] = ACTIONS(374), + [aux_sym_assign_statement_token1] = ACTIONS(376), + [aux_sym_catch_statement_token1] = ACTIONS(378), + [aux_sym_finally_statement_token1] = ACTIONS(380), + [aux_sym_accumulate_statement_token1] = ACTIONS(382), + [aux_sym_error_scope_statement_token1] = ACTIONS(384), + [aux_sym_error_scope_statement_token2] = ACTIONS(384), + [aux_sym_prompt_for_statement_token1] = ACTIONS(386), + [aux_sym_var_statement_token1] = ACTIONS(388), + [aux_sym_run_statement_token1] = ACTIONS(390), + [aux_sym_enum_definition_token1] = ACTIONS(392), + }, + [55] = { + [sym_comment] = STATE(55), + [sym_qualified_name] = STATE(5530), + [sym_include] = STATE(55), + [sym_assignment] = STATE(6885), + [sym_variable_assignment] = STATE(2292), + [sym_variable_definition] = STATE(2292), + [sym_buffer_definition] = STATE(2292), + [sym_query_definition] = STATE(2292), + [sym_function_call_statement] = STATE(2292), + [sym_function_call] = STATE(5492), + [sym_if_statement] = STATE(2292), + [sym_label] = STATE(2291), + [sym_repeat_statement] = STATE(2292), + [sym_procedure_statement] = STATE(2292), + [sym_procedure_parameter_definition] = STATE(2292), + [sym_function_statement] = STATE(2292), + [sym_return_statement] = STATE(2292), + [sym_interface_statement] = STATE(2292), + [sym_dataset_definition] = STATE(2292), + [sym_using_statement] = STATE(2292), + [sym_class_statement] = STATE(2292), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2292), + [sym_input_close_statement] = STATE(2292), + [sym_output_close_statement] = STATE(2292), + [sym__stream_statement] = STATE(2292), + [sym_input_stream_statement] = STATE(2290), + [sym_output_stream_statement] = STATE(2290), + [sym_do_block] = STATE(2292), + [sym_case_statement] = STATE(2292), + [sym_for_statement] = STATE(2292), + [sym_find_statement] = STATE(2292), + [sym_abl_statement] = STATE(2292), + [sym_assign_statement] = STATE(2292), + [sym_catch_statement] = STATE(2292), + [sym_finally_statement] = STATE(2292), + [sym_accumulate_statement] = STATE(2292), + [sym_undo_statement] = STATE(2292), + [sym_error_scope_statement] = STATE(2292), + [sym_workfile_definition] = STATE(2292), + [sym_temp_table_definition] = STATE(2292), + [sym_on_statement] = STATE(2292), + [sym_prompt_for_statement] = STATE(2292), + [sym_var_statement] = STATE(2292), + [sym_button_definition] = STATE(2292), + [sym_run_statement] = STATE(2292), + [sym_enum_statement] = STATE(2292), + [sym__statement] = STATE(2228), + [aux_sym_source_code_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(394), + [aux_sym_input_expression_token1] = ACTIONS(342), + [aux_sym_class_type_token1] = ACTIONS(344), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(346), + [aux_sym_variable_definition_token2] = ACTIONS(346), + [aux_sym_buffer_definition_token2] = ACTIONS(348), + [aux_sym_return_type_token2] = ACTIONS(350), + [aux_sym_argument_mode_token1] = ACTIONS(352), + [aux_sym_if_statement_token1] = ACTIONS(354), + [aux_sym_repeat_statement_token1] = ACTIONS(356), + [aux_sym__procedure_terminator_token1] = ACTIONS(358), + [aux_sym__function_terminator_token1] = ACTIONS(360), + [aux_sym_interface_statement_token1] = ACTIONS(362), + [aux_sym_using_statement_token1] = ACTIONS(364), + [aux_sym_on_error_phrase_token1] = ACTIONS(366), + [aux_sym_on_error_phrase_token3] = ACTIONS(368), + [aux_sym_do_block_token1] = ACTIONS(370), + [aux_sym__case_terminator_token1] = ACTIONS(372), + [aux_sym_find_statement_token1] = ACTIONS(374), + [aux_sym_assign_statement_token1] = ACTIONS(376), + [aux_sym_catch_statement_token1] = ACTIONS(378), + [aux_sym_finally_statement_token1] = ACTIONS(380), + [aux_sym_accumulate_statement_token1] = ACTIONS(382), + [aux_sym_error_scope_statement_token1] = ACTIONS(384), + [aux_sym_error_scope_statement_token2] = ACTIONS(384), + [aux_sym_prompt_for_statement_token1] = ACTIONS(386), + [aux_sym_var_statement_token1] = ACTIONS(388), + [aux_sym_run_statement_token1] = ACTIONS(390), + [aux_sym_enum_definition_token1] = ACTIONS(392), + }, + [56] = { + [sym_comment] = STATE(56), + [sym_qualified_name] = STATE(5530), + [sym_include] = STATE(56), + [sym_assignment] = STATE(6864), + [sym_variable_assignment] = STATE(2002), + [sym_variable_definition] = STATE(2002), + [sym_buffer_definition] = STATE(2002), + [sym_query_definition] = STATE(2002), + [sym_function_call_statement] = STATE(2002), + [sym_function_call] = STATE(5221), + [sym_if_statement] = STATE(2002), + [sym_label] = STATE(2006), + [sym_repeat_statement] = STATE(2002), + [sym_procedure_statement] = STATE(2002), + [sym_procedure_parameter_definition] = STATE(2002), + [sym_function_statement] = STATE(2002), + [sym_return_statement] = STATE(2002), + [sym_interface_statement] = STATE(2002), + [sym_dataset_definition] = STATE(2002), + [sym_using_statement] = STATE(2002), + [sym_class_statement] = STATE(2002), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2002), + [sym_input_close_statement] = STATE(2002), + [sym_output_close_statement] = STATE(2002), + [sym__stream_statement] = STATE(2002), + [sym_input_stream_statement] = STATE(2009), + [sym_output_stream_statement] = STATE(2009), + [sym_do_block] = STATE(2002), + [sym_case_statement] = STATE(2002), + [sym_for_statement] = STATE(2002), + [sym_find_statement] = STATE(2002), + [sym_abl_statement] = STATE(2002), + [sym_assign_statement] = STATE(2002), + [sym_catch_statement] = STATE(2002), + [sym_finally_statement] = STATE(2002), + [sym_accumulate_statement] = STATE(2002), + [sym_undo_statement] = STATE(2002), + [sym_error_scope_statement] = STATE(2002), + [sym_workfile_definition] = STATE(2002), + [sym_temp_table_definition] = STATE(2002), + [sym_on_statement] = STATE(2002), + [sym_prompt_for_statement] = STATE(2002), + [sym_var_statement] = STATE(2002), + [sym_button_definition] = STATE(2002), + [sym_run_statement] = STATE(2002), + [sym_enum_statement] = STATE(2002), + [sym__statement] = STATE(2030), + [aux_sym_source_code_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(396), + [sym_identifier] = ACTIONS(398), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(401), + [aux_sym_class_type_token1] = ACTIONS(404), + [aux_sym_scope_tuning_token1] = ACTIONS(263), + [aux_sym_variable_definition_token1] = ACTIONS(407), + [aux_sym_variable_definition_token2] = ACTIONS(407), + [aux_sym_buffer_definition_token2] = ACTIONS(410), + [aux_sym_return_type_token2] = ACTIONS(413), + [aux_sym_argument_mode_token1] = ACTIONS(416), + [aux_sym_if_statement_token1] = ACTIONS(419), + [aux_sym_repeat_statement_token1] = ACTIONS(422), + [aux_sym__procedure_terminator_token1] = ACTIONS(425), + [aux_sym__function_terminator_token1] = ACTIONS(428), + [aux_sym_interface_statement_token1] = ACTIONS(431), + [aux_sym_using_statement_token1] = ACTIONS(434), + [aux_sym_on_error_phrase_token1] = ACTIONS(437), + [aux_sym_on_error_phrase_token3] = ACTIONS(440), + [aux_sym_do_block_token1] = ACTIONS(443), + [aux_sym__case_terminator_token1] = ACTIONS(446), + [aux_sym_find_statement_token1] = ACTIONS(449), + [aux_sym_assign_statement_token1] = ACTIONS(452), + [aux_sym_catch_statement_token1] = ACTIONS(455), + [aux_sym_finally_statement_token1] = ACTIONS(458), + [aux_sym_accumulate_statement_token1] = ACTIONS(461), + [aux_sym_error_scope_statement_token1] = ACTIONS(464), + [aux_sym_error_scope_statement_token2] = ACTIONS(464), + [aux_sym_prompt_for_statement_token1] = ACTIONS(467), + [aux_sym_var_statement_token1] = ACTIONS(470), + [aux_sym_run_statement_token1] = ACTIONS(473), + [aux_sym_enum_definition_token1] = ACTIONS(476), + }, + [57] = { + [sym_comment] = STATE(57), + [sym_qualified_name] = STATE(5530), + [sym_include] = STATE(57), + [sym_assignment] = STATE(6864), + [sym_variable_assignment] = STATE(2002), + [sym_variable_definition] = STATE(2002), + [sym_buffer_definition] = STATE(2002), + [sym_query_definition] = STATE(2002), + [sym_function_call_statement] = STATE(2002), + [sym_function_call] = STATE(5221), + [sym_if_statement] = STATE(2002), + [sym_label] = STATE(2006), + [sym_repeat_statement] = STATE(2002), + [sym_procedure_statement] = STATE(2002), + [sym_procedure_parameter_definition] = STATE(2002), + [sym_function_statement] = STATE(2002), + [sym_return_statement] = STATE(2002), + [sym_interface_statement] = STATE(2002), + [sym_dataset_definition] = STATE(2002), + [sym_using_statement] = STATE(2002), + [sym_class_statement] = STATE(2002), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2002), + [sym_input_close_statement] = STATE(2002), + [sym_output_close_statement] = STATE(2002), + [sym__stream_statement] = STATE(2002), + [sym_input_stream_statement] = STATE(2009), + [sym_output_stream_statement] = STATE(2009), + [sym_do_block] = STATE(2002), + [sym_case_statement] = STATE(2002), + [sym_for_statement] = STATE(2002), + [sym_find_statement] = STATE(2002), + [sym_abl_statement] = STATE(2002), + [sym_assign_statement] = STATE(2002), + [sym_catch_statement] = STATE(2002), + [sym_finally_statement] = STATE(2002), + [sym_accumulate_statement] = STATE(2002), + [sym_undo_statement] = STATE(2002), + [sym_error_scope_statement] = STATE(2002), + [sym_workfile_definition] = STATE(2002), + [sym_temp_table_definition] = STATE(2002), + [sym_on_statement] = STATE(2002), + [sym_prompt_for_statement] = STATE(2002), + [sym_var_statement] = STATE(2002), + [sym_button_definition] = STATE(2002), + [sym_run_statement] = STATE(2002), + [sym_enum_statement] = STATE(2002), + [sym__statement] = STATE(2030), + [aux_sym_source_code_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(479), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -49523,7258 +50290,6724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_prompt_for_statement_token1] = ACTIONS(59), [aux_sym_var_statement_token1] = ACTIONS(61), [aux_sym_run_statement_token1] = ACTIONS(63), + [aux_sym_enum_definition_token1] = ACTIONS(65), }, - [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), + [58] = { + [sym_comment] = STATE(58), + [sym_qualified_name] = STATE(5530), + [sym_include] = STATE(58), + [sym_assignment] = STATE(6885), + [sym_variable_assignment] = STATE(2292), + [sym_variable_definition] = STATE(2292), + [sym_buffer_definition] = STATE(2292), + [sym_query_definition] = STATE(2292), + [sym_function_call_statement] = STATE(2292), + [sym_function_call] = STATE(5492), + [sym_if_statement] = STATE(2292), + [sym_label] = STATE(2291), + [sym_repeat_statement] = STATE(2292), + [sym_procedure_statement] = STATE(2292), + [sym_procedure_parameter_definition] = STATE(2292), + [sym_function_statement] = STATE(2292), + [sym_return_statement] = STATE(2292), + [sym_interface_statement] = STATE(2292), + [sym_dataset_definition] = STATE(2292), + [sym_using_statement] = STATE(2292), + [sym_class_statement] = STATE(2292), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2292), + [sym_input_close_statement] = STATE(2292), + [sym_output_close_statement] = STATE(2292), + [sym__stream_statement] = STATE(2292), + [sym_input_stream_statement] = STATE(2290), + [sym_output_stream_statement] = STATE(2290), + [sym_do_block] = STATE(2292), + [sym_case_statement] = STATE(2292), + [sym_for_statement] = STATE(2292), + [sym_find_statement] = STATE(2292), + [sym_abl_statement] = STATE(2292), + [sym_assign_statement] = STATE(2292), + [sym_catch_statement] = STATE(2292), + [sym_finally_statement] = STATE(2292), + [sym_accumulate_statement] = STATE(2292), + [sym_undo_statement] = STATE(2292), + [sym_error_scope_statement] = STATE(2292), + [sym_workfile_definition] = STATE(2292), + [sym_temp_table_definition] = STATE(2292), + [sym_on_statement] = STATE(2292), + [sym_prompt_for_statement] = STATE(2292), + [sym_var_statement] = STATE(2292), + [sym_button_definition] = STATE(2292), + [sym_run_statement] = STATE(2292), + [sym_enum_statement] = STATE(2292), + [sym__statement] = STATE(2228), + [aux_sym_source_code_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(338), [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__block_terminator_token1] = ACTIONS(481), + [aux_sym_input_expression_token1] = ACTIONS(342), + [aux_sym_class_type_token1] = ACTIONS(344), [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), + [aux_sym_variable_definition_token1] = ACTIONS(346), + [aux_sym_variable_definition_token2] = ACTIONS(346), + [aux_sym_buffer_definition_token2] = ACTIONS(348), + [aux_sym_return_type_token2] = ACTIONS(350), + [aux_sym_argument_mode_token1] = ACTIONS(352), + [aux_sym_if_statement_token1] = ACTIONS(354), + [aux_sym_repeat_statement_token1] = ACTIONS(356), + [aux_sym__procedure_terminator_token1] = ACTIONS(358), + [aux_sym__function_terminator_token1] = ACTIONS(360), + [aux_sym_interface_statement_token1] = ACTIONS(362), + [aux_sym_using_statement_token1] = ACTIONS(364), + [aux_sym_on_error_phrase_token1] = ACTIONS(366), + [aux_sym_on_error_phrase_token3] = ACTIONS(368), + [aux_sym_do_block_token1] = ACTIONS(370), + [aux_sym__case_terminator_token1] = ACTIONS(372), + [aux_sym_find_statement_token1] = ACTIONS(374), + [aux_sym_assign_statement_token1] = ACTIONS(376), + [aux_sym_catch_statement_token1] = ACTIONS(378), + [aux_sym_finally_statement_token1] = ACTIONS(380), + [aux_sym_accumulate_statement_token1] = ACTIONS(382), + [aux_sym_error_scope_statement_token1] = ACTIONS(384), + [aux_sym_error_scope_statement_token2] = ACTIONS(384), + [aux_sym_prompt_for_statement_token1] = ACTIONS(386), + [aux_sym_var_statement_token1] = ACTIONS(388), + [aux_sym_run_statement_token1] = ACTIONS(390), + [aux_sym_enum_definition_token1] = ACTIONS(392), }, - [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), + [59] = { + [sym_comment] = STATE(59), + [sym_qualified_name] = STATE(5530), + [sym_include] = STATE(59), + [sym_assignment] = STATE(6885), + [sym_variable_assignment] = STATE(2292), + [sym_variable_definition] = STATE(2292), + [sym_buffer_definition] = STATE(2292), + [sym_query_definition] = STATE(2292), + [sym_function_call_statement] = STATE(2292), + [sym_function_call] = STATE(5492), + [sym_if_statement] = STATE(2292), + [sym_label] = STATE(2291), + [sym_repeat_statement] = STATE(2292), + [sym_procedure_statement] = STATE(2292), + [sym_procedure_parameter_definition] = STATE(2292), + [sym_function_statement] = STATE(2292), + [sym_return_statement] = STATE(2292), + [sym_interface_statement] = STATE(2292), + [sym_dataset_definition] = STATE(2292), + [sym_using_statement] = STATE(2292), + [sym_class_statement] = STATE(2292), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(2292), + [sym_input_close_statement] = STATE(2292), + [sym_output_close_statement] = STATE(2292), + [sym__stream_statement] = STATE(2292), + [sym_input_stream_statement] = STATE(2290), + [sym_output_stream_statement] = STATE(2290), + [sym_do_block] = STATE(2292), + [sym_case_statement] = STATE(2292), + [sym_for_statement] = STATE(2292), + [sym_find_statement] = STATE(2292), + [sym_abl_statement] = STATE(2292), + [sym_assign_statement] = STATE(2292), + [sym_catch_statement] = STATE(2292), + [sym_finally_statement] = STATE(2292), + [sym_accumulate_statement] = STATE(2292), + [sym_undo_statement] = STATE(2292), + [sym_error_scope_statement] = STATE(2292), + [sym_workfile_definition] = STATE(2292), + [sym_temp_table_definition] = STATE(2292), + [sym_on_statement] = STATE(2292), + [sym_prompt_for_statement] = STATE(2292), + [sym_var_statement] = STATE(2292), + [sym_button_definition] = STATE(2292), + [sym_run_statement] = STATE(2292), + [sym_enum_statement] = STATE(2292), + [sym__statement] = STATE(2228), + [aux_sym_source_code_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(338), [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__block_terminator_token1] = ACTIONS(483), + [aux_sym_input_expression_token1] = ACTIONS(342), + [aux_sym_class_type_token1] = ACTIONS(344), [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(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(138), - [sym__terminator] = ACTIONS(138), - [aux_sym__block_terminator_token1] = ACTIONS(138), - [anon_sym_COMMA] = ACTIONS(138), - [anon_sym_RBRACK] = ACTIONS(138), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(138), - [aux_sym_unary_expression_token2] = ACTIONS(138), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [aux_sym__multiplicative_operator_token1] = ACTIONS(138), - [anon_sym_LT] = ACTIONS(140), - [anon_sym_LT_EQ] = ACTIONS(138), - [anon_sym_LT_GT] = ACTIONS(138), - [anon_sym_EQ] = ACTIONS(138), - [anon_sym_GT] = ACTIONS(140), - [anon_sym_GT_EQ] = ACTIONS(138), - [aux_sym__comparison_operator_token1] = ACTIONS(138), - [aux_sym__comparison_operator_token2] = ACTIONS(138), - [aux_sym__comparison_operator_token3] = ACTIONS(138), - [aux_sym__comparison_operator_token4] = ACTIONS(138), - [aux_sym__comparison_operator_token5] = ACTIONS(138), - [aux_sym__comparison_operator_token6] = ACTIONS(138), - [aux_sym__comparison_operator_token7] = ACTIONS(138), - [aux_sym__comparison_operator_token8] = ACTIONS(138), - [aux_sym__comparison_operator_token9] = ACTIONS(138), - [aux_sym_when_expression_token1] = ACTIONS(138), - [aux_sym_variable_tuning_token1] = ACTIONS(138), - [aux_sym_variable_tuning_token2] = ACTIONS(140), - [aux_sym_variable_tuning_token3] = ACTIONS(138), - [aux_sym_variable_tuning_token4] = ACTIONS(138), - [aux_sym_variable_tuning_token5] = ACTIONS(138), - [aux_sym_variable_tuning_token6] = ACTIONS(138), - [aux_sym_variable_tuning_token7] = ACTIONS(138), - [aux_sym_variable_tuning_token8] = ACTIONS(138), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(138), - [aux_sym_if_statement_token2] = ACTIONS(138), - [aux_sym_else_statement_token1] = ACTIONS(138), - [aux_sym_while_phrase_token1] = ACTIONS(138), - [aux_sym_repeat_tuning_token1] = ACTIONS(138), - [anon_sym_NO_DASHERROR] = ACTIONS(138), - [aux_sym_input_stream_tuning_token1] = ACTIONS(138), - [aux_sym_input_stream_tuning_token2] = ACTIONS(138), - [aux_sym_input_stream_tuning_token3] = ACTIONS(138), - [aux_sym_input_stream_tuning_token4] = ACTIONS(138), - [aux_sym_input_stream_tuning_token5] = ACTIONS(138), - [aux_sym_input_stream_tuning_token6] = ACTIONS(138), - [aux_sym_input_stream_tuning_token7] = ACTIONS(138), - [aux_sym_input_stream_tuning_token8] = ACTIONS(138), - [aux_sym_input_stream_tuning_token9] = ACTIONS(138), - [aux_sym_input_stream_tuning_token11] = ACTIONS(138), - [aux_sym_output_stream_tuning_token1] = ACTIONS(138), - [aux_sym_output_stream_tuning_token2] = ACTIONS(138), - [aux_sym_output_stream_tuning_token3] = ACTIONS(138), - [aux_sym_output_stream_tuning_token4] = ACTIONS(138), - [aux_sym_output_stream_tuning_token5] = ACTIONS(138), - [aux_sym_output_stream_tuning_token6] = ACTIONS(138), - [aux_sym_output_stream_tuning_token7] = ACTIONS(138), - [aux_sym_output_stream_statement_token1] = ACTIONS(138), - [aux_sym_on_error_phrase_token1] = ACTIONS(138), - [aux_sym_stop_after_phrase_token1] = ACTIONS(138), - [aux_sym_do_tuning_token1] = ACTIONS(138), - [anon_sym_BY] = ACTIONS(138), - [aux_sym_of_token1] = ACTIONS(138), - [aux_sym_field_option_token1] = ACTIONS(138), - [aux_sym_field_option_token2] = ACTIONS(138), - [aux_sym_field_option_token3] = ACTIONS(138), - [aux_sym_field_option_token4] = ACTIONS(138), - [aux_sym_field_option_token5] = ACTIONS(138), - [aux_sym_field_option_token6] = ACTIONS(138), - [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), - }, - [59] = { - [sym_comment] = STATE(59), - [sym_include] = STATE(59), - [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), + [aux_sym_variable_definition_token1] = ACTIONS(346), + [aux_sym_variable_definition_token2] = ACTIONS(346), + [aux_sym_buffer_definition_token2] = ACTIONS(348), + [aux_sym_return_type_token2] = ACTIONS(350), + [aux_sym_argument_mode_token1] = ACTIONS(352), + [aux_sym_if_statement_token1] = ACTIONS(354), + [aux_sym_repeat_statement_token1] = ACTIONS(356), + [aux_sym__procedure_terminator_token1] = ACTIONS(358), + [aux_sym__function_terminator_token1] = ACTIONS(360), + [aux_sym_interface_statement_token1] = ACTIONS(362), + [aux_sym_using_statement_token1] = ACTIONS(364), + [aux_sym_on_error_phrase_token1] = ACTIONS(366), + [aux_sym_on_error_phrase_token3] = ACTIONS(368), + [aux_sym_do_block_token1] = ACTIONS(370), + [aux_sym__case_terminator_token1] = ACTIONS(372), + [aux_sym_find_statement_token1] = ACTIONS(374), + [aux_sym_assign_statement_token1] = ACTIONS(376), + [aux_sym_catch_statement_token1] = ACTIONS(378), + [aux_sym_finally_statement_token1] = ACTIONS(380), + [aux_sym_accumulate_statement_token1] = ACTIONS(382), + [aux_sym_error_scope_statement_token1] = ACTIONS(384), + [aux_sym_error_scope_statement_token2] = ACTIONS(384), + [aux_sym_prompt_for_statement_token1] = ACTIONS(386), + [aux_sym_var_statement_token1] = ACTIONS(388), + [aux_sym_run_statement_token1] = ACTIONS(390), + [aux_sym_enum_definition_token1] = ACTIONS(392), }, [60] = { [sym_comment] = STATE(60), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(60), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(5434), + [sym__case_branch_body] = STATE(5395), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(5429), + [sym_identifier] = ACTIONS(485), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(499), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [61] = { [sym_comment] = STATE(61), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(61), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(5434), + [sym__case_branch_body] = STATE(6607), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(5429), + [sym_identifier] = ACTIONS(485), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(499), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [62] = { [sym_comment] = STATE(62), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(62), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(5434), + [sym__case_branch_body] = STATE(5433), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(5429), + [sym_identifier] = ACTIONS(485), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(477), - [aux_sym_input_expression_token1] = ACTIONS(256), - [aux_sym_class_type_token1] = ACTIONS(258), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), [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), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(499), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [63] = { [sym_comment] = STATE(63), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(63), - [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), + [sym_assignment] = STATE(6454), + [sym_variable_assignment] = STATE(1902), + [sym_variable_definition] = STATE(1902), + [sym_buffer_definition] = STATE(1902), + [sym_query_definition] = STATE(1902), + [sym_function_call_statement] = STATE(1902), + [sym_function_call] = STATE(5306), + [sym_if_statement] = STATE(1902), + [sym_label] = STATE(1903), + [sym_repeat_statement] = STATE(1902), + [sym_procedure_statement] = STATE(1902), + [sym_procedure_parameter_definition] = STATE(1902), + [sym_function_statement] = STATE(1902), + [sym_return_statement] = STATE(1902), + [sym_interface_statement] = STATE(1902), + [sym_dataset_definition] = STATE(1902), + [sym_using_statement] = STATE(1902), + [sym_class_statement] = STATE(1902), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1902), + [sym_input_close_statement] = STATE(1902), + [sym_output_close_statement] = STATE(1902), + [sym__stream_statement] = STATE(1902), + [sym_input_stream_statement] = STATE(1904), + [sym_output_stream_statement] = STATE(1904), + [sym_do_block] = STATE(1468), + [sym_case_statement] = STATE(1902), + [sym_for_statement] = STATE(1902), + [sym_find_statement] = STATE(1902), + [sym_abl_statement] = STATE(1902), + [sym_assign_statement] = STATE(1902), + [sym_catch_statement] = STATE(1902), + [sym_finally_statement] = STATE(1902), + [sym_accumulate_statement] = STATE(1902), + [sym_undo_statement] = STATE(1902), + [sym_error_scope_statement] = STATE(1902), + [sym_workfile_definition] = STATE(1902), + [sym_temp_table_definition] = STATE(1902), + [sym_on_statement] = STATE(1902), + [sym_prompt_for_statement] = STATE(1902), + [sym_var_statement] = STATE(1902), + [sym_button_definition] = STATE(1902), + [sym_run_statement] = STATE(1902), + [sym_enum_statement] = STATE(1902), + [sym__statement] = STATE(1467), + [sym_identifier] = ACTIONS(539), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(479), - [aux_sym_input_expression_token1] = ACTIONS(256), - [aux_sym_class_type_token1] = ACTIONS(258), + [aux_sym_input_expression_token1] = ACTIONS(541), + [aux_sym_class_type_token1] = ACTIONS(543), [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), + [aux_sym_variable_definition_token1] = ACTIONS(545), + [aux_sym_variable_definition_token2] = ACTIONS(545), + [aux_sym_buffer_definition_token2] = ACTIONS(547), + [aux_sym_return_type_token2] = ACTIONS(549), + [aux_sym_argument_mode_token1] = ACTIONS(551), + [aux_sym_if_statement_token1] = ACTIONS(553), + [aux_sym_repeat_statement_token1] = ACTIONS(555), + [aux_sym__procedure_terminator_token1] = ACTIONS(557), + [aux_sym__function_terminator_token1] = ACTIONS(559), + [aux_sym_interface_statement_token1] = ACTIONS(561), + [aux_sym_using_statement_token1] = ACTIONS(563), + [aux_sym_on_error_phrase_token1] = ACTIONS(565), + [aux_sym_on_error_phrase_token3] = ACTIONS(567), + [aux_sym_do_block_token1] = ACTIONS(569), + [aux_sym__case_terminator_token1] = ACTIONS(571), + [aux_sym_find_statement_token1] = ACTIONS(573), + [aux_sym_assign_statement_token1] = ACTIONS(575), + [aux_sym_catch_statement_token1] = ACTIONS(577), + [aux_sym_finally_statement_token1] = ACTIONS(579), + [aux_sym_accumulate_statement_token1] = ACTIONS(581), + [aux_sym_error_scope_statement_token1] = ACTIONS(583), + [aux_sym_error_scope_statement_token2] = ACTIONS(583), + [aux_sym_prompt_for_statement_token1] = ACTIONS(585), + [aux_sym_var_statement_token1] = ACTIONS(587), + [aux_sym_run_statement_token1] = ACTIONS(589), + [aux_sym_enum_definition_token1] = ACTIONS(591), }, [64] = { [sym_comment] = STATE(64), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(64), - [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), + [sym_assignment] = STATE(6223), + [sym_variable_assignment] = STATE(1683), + [sym_variable_definition] = STATE(1683), + [sym_buffer_definition] = STATE(1683), + [sym_query_definition] = STATE(1683), + [sym_function_call_statement] = STATE(1683), + [sym_function_call] = STATE(5350), + [sym_if_statement] = STATE(1683), + [sym_label] = STATE(1682), + [sym_repeat_statement] = STATE(1683), + [sym_procedure_statement] = STATE(1683), + [sym_procedure_parameter_definition] = STATE(1683), + [sym_function_statement] = STATE(1683), + [sym_return_statement] = STATE(1683), + [sym_interface_statement] = STATE(1683), + [sym_dataset_definition] = STATE(1683), + [sym_using_statement] = STATE(1683), + [sym_class_statement] = STATE(1683), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1683), + [sym_input_close_statement] = STATE(1683), + [sym_output_close_statement] = STATE(1683), + [sym__stream_statement] = STATE(1683), + [sym_input_stream_statement] = STATE(1681), + [sym_output_stream_statement] = STATE(1681), + [sym_do_block] = STATE(1478), + [sym_case_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_find_statement] = STATE(1683), + [sym_abl_statement] = STATE(1683), + [sym_assign_statement] = STATE(1683), + [sym_catch_statement] = STATE(1683), + [sym_finally_statement] = STATE(1683), + [sym_accumulate_statement] = STATE(1683), + [sym_undo_statement] = STATE(1683), + [sym_error_scope_statement] = STATE(1683), + [sym_workfile_definition] = STATE(1683), + [sym_temp_table_definition] = STATE(1683), + [sym_on_statement] = STATE(1683), + [sym_prompt_for_statement] = STATE(1683), + [sym_var_statement] = STATE(1683), + [sym_button_definition] = STATE(1683), + [sym_run_statement] = STATE(1683), + [sym_enum_statement] = STATE(1683), + [sym__statement] = STATE(1490), + [sym_identifier] = ACTIONS(593), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(483), - [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_input_expression_token1] = ACTIONS(595), + [aux_sym_class_type_token1] = ACTIONS(597), [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), + [aux_sym_variable_definition_token1] = ACTIONS(599), + [aux_sym_variable_definition_token2] = ACTIONS(599), + [aux_sym_buffer_definition_token2] = ACTIONS(601), + [aux_sym_return_type_token2] = ACTIONS(603), + [aux_sym_argument_mode_token1] = ACTIONS(605), + [aux_sym_if_statement_token1] = ACTIONS(607), + [aux_sym_repeat_statement_token1] = ACTIONS(609), + [aux_sym__procedure_terminator_token1] = ACTIONS(611), + [aux_sym__function_terminator_token1] = ACTIONS(613), + [aux_sym_interface_statement_token1] = ACTIONS(615), + [aux_sym_using_statement_token1] = ACTIONS(617), + [aux_sym_on_error_phrase_token1] = ACTIONS(619), + [aux_sym_on_error_phrase_token3] = ACTIONS(621), + [aux_sym_do_block_token1] = ACTIONS(623), + [aux_sym__case_terminator_token1] = ACTIONS(625), + [aux_sym_find_statement_token1] = ACTIONS(627), + [aux_sym_assign_statement_token1] = ACTIONS(629), + [aux_sym_catch_statement_token1] = ACTIONS(631), + [aux_sym_finally_statement_token1] = ACTIONS(633), + [aux_sym_accumulate_statement_token1] = ACTIONS(635), + [aux_sym_error_scope_statement_token1] = ACTIONS(637), + [aux_sym_error_scope_statement_token2] = ACTIONS(637), + [aux_sym_prompt_for_statement_token1] = ACTIONS(639), + [aux_sym_var_statement_token1] = ACTIONS(641), + [aux_sym_run_statement_token1] = ACTIONS(643), + [aux_sym_enum_definition_token1] = ACTIONS(645), }, [65] = { [sym_comment] = STATE(65), - [sym_qualified_name] = STATE(5477), [sym_include] = STATE(65), - [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(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), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(647), + [sym__terminator] = ACTIONS(647), + [aux_sym__block_terminator_token1] = ACTIONS(647), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_RBRACK] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(647), + [aux_sym_unary_expression_token2] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [aux_sym__multiplicative_operator_token1] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(647), + [anon_sym_LT_GT] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_GT_EQ] = ACTIONS(647), + [aux_sym__comparison_operator_token1] = ACTIONS(647), + [aux_sym__comparison_operator_token2] = ACTIONS(647), + [aux_sym__comparison_operator_token3] = ACTIONS(647), + [aux_sym__comparison_operator_token4] = ACTIONS(647), + [aux_sym__comparison_operator_token5] = ACTIONS(647), + [aux_sym__comparison_operator_token6] = ACTIONS(647), + [aux_sym__comparison_operator_token7] = ACTIONS(647), + [aux_sym__comparison_operator_token8] = ACTIONS(647), + [aux_sym__comparison_operator_token9] = ACTIONS(647), + [aux_sym_when_expression_token1] = ACTIONS(647), + [aux_sym_variable_tuning_token1] = ACTIONS(647), + [aux_sym_variable_tuning_token2] = ACTIONS(649), + [aux_sym_variable_tuning_token3] = ACTIONS(647), + [aux_sym_variable_tuning_token4] = ACTIONS(647), + [aux_sym_variable_tuning_token5] = ACTIONS(647), + [aux_sym_variable_tuning_token6] = ACTIONS(647), + [aux_sym_variable_tuning_token7] = ACTIONS(647), + [aux_sym_variable_tuning_token8] = ACTIONS(647), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(647), + [aux_sym_if_statement_token2] = ACTIONS(647), + [aux_sym_else_statement_token1] = ACTIONS(647), + [aux_sym_while_phrase_token1] = ACTIONS(647), + [aux_sym_repeat_tuning_token1] = ACTIONS(647), + [anon_sym_NO_DASHERROR] = ACTIONS(651), + [aux_sym_input_stream_tuning_token1] = ACTIONS(647), + [aux_sym_input_stream_tuning_token2] = ACTIONS(647), + [aux_sym_input_stream_tuning_token3] = ACTIONS(647), + [aux_sym_input_stream_tuning_token4] = ACTIONS(647), + [aux_sym_input_stream_tuning_token5] = ACTIONS(647), + [aux_sym_input_stream_tuning_token6] = ACTIONS(647), + [aux_sym_input_stream_tuning_token7] = ACTIONS(647), + [aux_sym_input_stream_tuning_token8] = ACTIONS(647), + [aux_sym_input_stream_tuning_token9] = ACTIONS(647), + [aux_sym_input_stream_tuning_token11] = ACTIONS(647), + [aux_sym_output_stream_tuning_token1] = ACTIONS(647), + [aux_sym_output_stream_tuning_token2] = ACTIONS(647), + [aux_sym_output_stream_tuning_token3] = ACTIONS(647), + [aux_sym_output_stream_tuning_token4] = ACTIONS(647), + [aux_sym_output_stream_tuning_token5] = ACTIONS(647), + [aux_sym_output_stream_tuning_token6] = ACTIONS(647), + [aux_sym_output_stream_tuning_token7] = ACTIONS(647), + [aux_sym_output_stream_statement_token1] = ACTIONS(647), + [aux_sym_on_error_phrase_token1] = ACTIONS(647), + [aux_sym_stop_after_phrase_token1] = ACTIONS(647), + [aux_sym_do_tuning_token1] = ACTIONS(647), + [anon_sym_BY] = ACTIONS(647), + [aux_sym_of_token1] = ACTIONS(647), + [aux_sym_field_option_token1] = ACTIONS(647), + [aux_sym_field_option_token2] = ACTIONS(647), + [aux_sym_field_option_token3] = ACTIONS(647), + [aux_sym_field_option_token4] = ACTIONS(647), + [aux_sym_field_option_token5] = ACTIONS(647), + [aux_sym_field_option_token6] = ACTIONS(647), + [aux_sym_field_definition_token1] = ACTIONS(647), + [aux_sym_index_definition_token1] = ACTIONS(647), + [aux_sym_on_statement_token1] = ACTIONS(647), + [sym__namecolon] = ACTIONS(647), + [sym__or_operator] = ACTIONS(647), + [sym__and_operator] = ACTIONS(647), }, [66] = { [sym_comment] = STATE(66), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(66), - [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), + [sym_assignment] = STATE(6454), + [sym_variable_assignment] = STATE(1902), + [sym_variable_definition] = STATE(1902), + [sym_buffer_definition] = STATE(1902), + [sym_query_definition] = STATE(1902), + [sym_function_call_statement] = STATE(1902), + [sym_function_call] = STATE(5306), + [sym_if_statement] = STATE(1902), + [sym_label] = STATE(1903), + [sym_repeat_statement] = STATE(1902), + [sym_procedure_statement] = STATE(1902), + [sym_procedure_parameter_definition] = STATE(1902), + [sym_function_statement] = STATE(1902), + [sym_return_statement] = STATE(1902), + [sym_interface_statement] = STATE(1902), + [sym_dataset_definition] = STATE(1902), + [sym_using_statement] = STATE(1902), + [sym_class_statement] = STATE(1902), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1902), + [sym_input_close_statement] = STATE(1902), + [sym_output_close_statement] = STATE(1902), + [sym__stream_statement] = STATE(1902), + [sym_input_stream_statement] = STATE(1904), + [sym_output_stream_statement] = STATE(1904), + [sym_do_block] = STATE(1668), + [sym_case_statement] = STATE(1902), + [sym_for_statement] = STATE(1902), + [sym_find_statement] = STATE(1902), + [sym_abl_statement] = STATE(1902), + [sym_assign_statement] = STATE(1902), + [sym_catch_statement] = STATE(1902), + [sym_finally_statement] = STATE(1902), + [sym_accumulate_statement] = STATE(1902), + [sym_undo_statement] = STATE(1902), + [sym_error_scope_statement] = STATE(1902), + [sym_workfile_definition] = STATE(1902), + [sym_temp_table_definition] = STATE(1902), + [sym_on_statement] = STATE(1902), + [sym_prompt_for_statement] = STATE(1902), + [sym_var_statement] = STATE(1902), + [sym_button_definition] = STATE(1902), + [sym_run_statement] = STATE(1902), + [sym_enum_statement] = STATE(1902), + [sym__statement] = STATE(1667), + [sym_identifier] = ACTIONS(539), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(483), - [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_input_expression_token1] = ACTIONS(541), + [aux_sym_class_type_token1] = ACTIONS(543), [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), + [aux_sym_variable_definition_token1] = ACTIONS(545), + [aux_sym_variable_definition_token2] = ACTIONS(545), + [aux_sym_buffer_definition_token2] = ACTIONS(547), + [aux_sym_return_type_token2] = ACTIONS(549), + [aux_sym_argument_mode_token1] = ACTIONS(551), + [aux_sym_if_statement_token1] = ACTIONS(653), + [aux_sym_repeat_statement_token1] = ACTIONS(555), + [aux_sym__procedure_terminator_token1] = ACTIONS(557), + [aux_sym__function_terminator_token1] = ACTIONS(559), + [aux_sym_interface_statement_token1] = ACTIONS(561), + [aux_sym_using_statement_token1] = ACTIONS(563), + [aux_sym_on_error_phrase_token1] = ACTIONS(565), + [aux_sym_on_error_phrase_token3] = ACTIONS(567), + [aux_sym_do_block_token1] = ACTIONS(569), + [aux_sym__case_terminator_token1] = ACTIONS(571), + [aux_sym_find_statement_token1] = ACTIONS(573), + [aux_sym_assign_statement_token1] = ACTIONS(575), + [aux_sym_catch_statement_token1] = ACTIONS(577), + [aux_sym_finally_statement_token1] = ACTIONS(579), + [aux_sym_accumulate_statement_token1] = ACTIONS(581), + [aux_sym_error_scope_statement_token1] = ACTIONS(583), + [aux_sym_error_scope_statement_token2] = ACTIONS(583), + [aux_sym_prompt_for_statement_token1] = ACTIONS(585), + [aux_sym_var_statement_token1] = ACTIONS(587), + [aux_sym_run_statement_token1] = ACTIONS(589), + [aux_sym_enum_definition_token1] = ACTIONS(591), }, [67] = { [sym_comment] = STATE(67), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(67), - [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), + [sym_assignment] = STATE(6223), + [sym_variable_assignment] = STATE(1683), + [sym_variable_definition] = STATE(1683), + [sym_buffer_definition] = STATE(1683), + [sym_query_definition] = STATE(1683), + [sym_function_call_statement] = STATE(1683), + [sym_function_call] = STATE(5350), + [sym_if_statement] = STATE(1683), + [sym_label] = STATE(1682), + [sym_repeat_statement] = STATE(1683), + [sym_procedure_statement] = STATE(1683), + [sym_procedure_parameter_definition] = STATE(1683), + [sym_function_statement] = STATE(1683), + [sym_return_statement] = STATE(1683), + [sym_interface_statement] = STATE(1683), + [sym_dataset_definition] = STATE(1683), + [sym_using_statement] = STATE(1683), + [sym_class_statement] = STATE(1683), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1683), + [sym_input_close_statement] = STATE(1683), + [sym_output_close_statement] = STATE(1683), + [sym__stream_statement] = STATE(1683), + [sym_input_stream_statement] = STATE(1681), + [sym_output_stream_statement] = STATE(1681), + [sym_do_block] = STATE(1465), + [sym_case_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_find_statement] = STATE(1683), + [sym_abl_statement] = STATE(1683), + [sym_assign_statement] = STATE(1683), + [sym_catch_statement] = STATE(1683), + [sym_finally_statement] = STATE(1683), + [sym_accumulate_statement] = STATE(1683), + [sym_undo_statement] = STATE(1683), + [sym_error_scope_statement] = STATE(1683), + [sym_workfile_definition] = STATE(1683), + [sym_temp_table_definition] = STATE(1683), + [sym_on_statement] = STATE(1683), + [sym_prompt_for_statement] = STATE(1683), + [sym_var_statement] = STATE(1683), + [sym_button_definition] = STATE(1683), + [sym_run_statement] = STATE(1683), + [sym_enum_statement] = STATE(1683), + [sym__statement] = STATE(1466), + [sym_identifier] = ACTIONS(593), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(535), - [aux_sym_class_type_token1] = ACTIONS(537), + [aux_sym_input_expression_token1] = ACTIONS(595), + [aux_sym_class_type_token1] = ACTIONS(597), [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), + [aux_sym_variable_definition_token1] = ACTIONS(599), + [aux_sym_variable_definition_token2] = ACTIONS(599), + [aux_sym_buffer_definition_token2] = ACTIONS(601), + [aux_sym_return_type_token2] = ACTIONS(603), + [aux_sym_argument_mode_token1] = ACTIONS(605), + [aux_sym_if_statement_token1] = ACTIONS(607), + [aux_sym_repeat_statement_token1] = ACTIONS(609), + [aux_sym__procedure_terminator_token1] = ACTIONS(611), + [aux_sym__function_terminator_token1] = ACTIONS(613), + [aux_sym_interface_statement_token1] = ACTIONS(615), + [aux_sym_using_statement_token1] = ACTIONS(617), + [aux_sym_on_error_phrase_token1] = ACTIONS(619), + [aux_sym_on_error_phrase_token3] = ACTIONS(621), + [aux_sym_do_block_token1] = ACTIONS(623), + [aux_sym__case_terminator_token1] = ACTIONS(625), + [aux_sym_find_statement_token1] = ACTIONS(627), + [aux_sym_assign_statement_token1] = ACTIONS(629), + [aux_sym_catch_statement_token1] = ACTIONS(631), + [aux_sym_finally_statement_token1] = ACTIONS(633), + [aux_sym_accumulate_statement_token1] = ACTIONS(635), + [aux_sym_error_scope_statement_token1] = ACTIONS(637), + [aux_sym_error_scope_statement_token2] = ACTIONS(637), + [aux_sym_prompt_for_statement_token1] = ACTIONS(639), + [aux_sym_var_statement_token1] = ACTIONS(641), + [aux_sym_run_statement_token1] = ACTIONS(643), + [aux_sym_enum_definition_token1] = ACTIONS(645), }, [68] = { [sym_comment] = STATE(68), - [sym_qualified_name] = STATE(5477), [sym_include] = STATE(68), - [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(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), + [anon_sym_COLON] = ACTIONS(110), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(112), + [anon_sym_LBRACE] = ACTIONS(75), + [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_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), + [anon_sym_NO_DASHERROR] = 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_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__namecolon] = ACTIONS(110), + [sym__or_operator] = ACTIONS(110), + [sym__and_operator] = ACTIONS(110), }, [69] = { [sym_comment] = STATE(69), - [sym_qualified_name] = STATE(5477), [sym_include] = STATE(69), - [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(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), + [anon_sym_COLON] = ACTIONS(140), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(140), + [sym__terminator] = ACTIONS(140), + [aux_sym__block_terminator_token1] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_RBRACK] = ACTIONS(140), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [aux_sym_unary_expression_token2] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(140), + [anon_sym_DASH] = ACTIONS(140), + [aux_sym__multiplicative_operator_token1] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_LT_GT] = ACTIONS(140), + [anon_sym_EQ] = ACTIONS(140), + [anon_sym_GT] = ACTIONS(142), + [anon_sym_GT_EQ] = ACTIONS(140), + [aux_sym__comparison_operator_token1] = ACTIONS(140), + [aux_sym__comparison_operator_token2] = ACTIONS(140), + [aux_sym__comparison_operator_token3] = ACTIONS(140), + [aux_sym__comparison_operator_token4] = ACTIONS(140), + [aux_sym__comparison_operator_token5] = ACTIONS(140), + [aux_sym__comparison_operator_token6] = ACTIONS(140), + [aux_sym__comparison_operator_token7] = ACTIONS(140), + [aux_sym__comparison_operator_token8] = ACTIONS(140), + [aux_sym__comparison_operator_token9] = ACTIONS(140), + [aux_sym_when_expression_token1] = ACTIONS(140), + [aux_sym_variable_tuning_token1] = ACTIONS(140), + [aux_sym_variable_tuning_token2] = ACTIONS(142), + [aux_sym_variable_tuning_token3] = ACTIONS(140), + [aux_sym_variable_tuning_token4] = ACTIONS(140), + [aux_sym_variable_tuning_token5] = ACTIONS(140), + [aux_sym_variable_tuning_token6] = ACTIONS(140), + [aux_sym_variable_tuning_token7] = ACTIONS(140), + [aux_sym_variable_tuning_token8] = ACTIONS(140), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(140), + [aux_sym_if_statement_token2] = ACTIONS(140), + [aux_sym_else_statement_token1] = ACTIONS(140), + [aux_sym_while_phrase_token1] = ACTIONS(140), + [aux_sym_repeat_tuning_token1] = ACTIONS(140), + [anon_sym_NO_DASHERROR] = ACTIONS(140), + [aux_sym_input_stream_tuning_token1] = ACTIONS(140), + [aux_sym_input_stream_tuning_token2] = ACTIONS(140), + [aux_sym_input_stream_tuning_token3] = ACTIONS(140), + [aux_sym_input_stream_tuning_token4] = ACTIONS(140), + [aux_sym_input_stream_tuning_token5] = ACTIONS(140), + [aux_sym_input_stream_tuning_token6] = ACTIONS(140), + [aux_sym_input_stream_tuning_token7] = ACTIONS(140), + [aux_sym_input_stream_tuning_token8] = ACTIONS(140), + [aux_sym_input_stream_tuning_token9] = ACTIONS(140), + [aux_sym_input_stream_tuning_token11] = ACTIONS(140), + [aux_sym_output_stream_tuning_token1] = ACTIONS(140), + [aux_sym_output_stream_tuning_token2] = ACTIONS(140), + [aux_sym_output_stream_tuning_token3] = ACTIONS(140), + [aux_sym_output_stream_tuning_token4] = ACTIONS(140), + [aux_sym_output_stream_tuning_token5] = ACTIONS(140), + [aux_sym_output_stream_tuning_token6] = ACTIONS(140), + [aux_sym_output_stream_tuning_token7] = ACTIONS(140), + [aux_sym_output_stream_statement_token1] = ACTIONS(140), + [aux_sym_on_error_phrase_token1] = ACTIONS(140), + [aux_sym_stop_after_phrase_token1] = ACTIONS(140), + [aux_sym_do_tuning_token1] = ACTIONS(140), + [anon_sym_BY] = ACTIONS(140), + [aux_sym_of_token1] = ACTIONS(140), + [aux_sym_field_option_token1] = ACTIONS(140), + [aux_sym_field_option_token2] = ACTIONS(140), + [aux_sym_field_option_token3] = ACTIONS(140), + [aux_sym_field_option_token4] = ACTIONS(140), + [aux_sym_field_option_token5] = ACTIONS(140), + [aux_sym_field_option_token6] = ACTIONS(140), + [aux_sym_field_definition_token1] = ACTIONS(140), + [aux_sym_index_definition_token1] = ACTIONS(140), + [aux_sym_on_statement_token1] = ACTIONS(140), + [sym__namecolon] = ACTIONS(140), + [sym__or_operator] = ACTIONS(140), + [sym__and_operator] = ACTIONS(140), }, [70] = { [sym_comment] = STATE(70), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(70), - [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), + [sym_assignment] = STATE(6223), + [sym_variable_assignment] = STATE(1683), + [sym_variable_definition] = STATE(1683), + [sym_buffer_definition] = STATE(1683), + [sym_query_definition] = STATE(1683), + [sym_function_call_statement] = STATE(1683), + [sym_function_call] = STATE(5350), + [sym_if_statement] = STATE(1683), + [sym_label] = STATE(1682), + [sym_repeat_statement] = STATE(1683), + [sym_procedure_statement] = STATE(1683), + [sym_procedure_parameter_definition] = STATE(1683), + [sym_function_statement] = STATE(1683), + [sym_return_statement] = STATE(1683), + [sym_interface_statement] = STATE(1683), + [sym_dataset_definition] = STATE(1683), + [sym_using_statement] = STATE(1683), + [sym_class_statement] = STATE(1683), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1683), + [sym_input_close_statement] = STATE(1683), + [sym_output_close_statement] = STATE(1683), + [sym__stream_statement] = STATE(1683), + [sym_input_stream_statement] = STATE(1681), + [sym_output_stream_statement] = STATE(1681), + [sym_do_block] = STATE(1809), + [sym_case_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_find_statement] = STATE(1683), + [sym_abl_statement] = STATE(1683), + [sym_assign_statement] = STATE(1683), + [sym_catch_statement] = STATE(1683), + [sym_finally_statement] = STATE(1683), + [sym_accumulate_statement] = STATE(1683), + [sym_undo_statement] = STATE(1683), + [sym_error_scope_statement] = STATE(1683), + [sym_workfile_definition] = STATE(1683), + [sym_temp_table_definition] = STATE(1683), + [sym_on_statement] = STATE(1683), + [sym_prompt_for_statement] = STATE(1683), + [sym_var_statement] = STATE(1683), + [sym_button_definition] = STATE(1683), + [sym_run_statement] = STATE(1683), + [sym_enum_statement] = STATE(1683), + [sym__statement] = STATE(1810), + [sym_identifier] = ACTIONS(593), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(587), - [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_input_expression_token1] = ACTIONS(595), + [aux_sym_class_type_token1] = ACTIONS(597), [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), + [aux_sym_variable_definition_token1] = ACTIONS(599), + [aux_sym_variable_definition_token2] = ACTIONS(599), + [aux_sym_buffer_definition_token2] = ACTIONS(601), + [aux_sym_return_type_token2] = ACTIONS(603), + [aux_sym_argument_mode_token1] = ACTIONS(605), + [aux_sym_if_statement_token1] = ACTIONS(655), + [aux_sym_repeat_statement_token1] = ACTIONS(609), + [aux_sym__procedure_terminator_token1] = ACTIONS(611), + [aux_sym__function_terminator_token1] = ACTIONS(613), + [aux_sym_interface_statement_token1] = ACTIONS(615), + [aux_sym_using_statement_token1] = ACTIONS(617), + [aux_sym_on_error_phrase_token1] = ACTIONS(619), + [aux_sym_on_error_phrase_token3] = ACTIONS(621), + [aux_sym_do_block_token1] = ACTIONS(623), + [aux_sym__case_terminator_token1] = ACTIONS(625), + [aux_sym_find_statement_token1] = ACTIONS(627), + [aux_sym_assign_statement_token1] = ACTIONS(629), + [aux_sym_catch_statement_token1] = ACTIONS(631), + [aux_sym_finally_statement_token1] = ACTIONS(633), + [aux_sym_accumulate_statement_token1] = ACTIONS(635), + [aux_sym_error_scope_statement_token1] = ACTIONS(637), + [aux_sym_error_scope_statement_token2] = ACTIONS(637), + [aux_sym_prompt_for_statement_token1] = ACTIONS(639), + [aux_sym_var_statement_token1] = ACTIONS(641), + [aux_sym_run_statement_token1] = ACTIONS(643), + [aux_sym_enum_definition_token1] = ACTIONS(645), }, [71] = { [sym_comment] = STATE(71), - [sym_qualified_name] = STATE(5477), [sym_include] = STATE(71), - [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(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), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(75), + [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_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), + [anon_sym_NO_DASHERROR] = 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_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__namecolon] = ACTIONS(128), + [sym__or_operator] = ACTIONS(128), + [sym__and_operator] = ACTIONS(128), }, [72] = { [sym_comment] = STATE(72), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(72), - [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), + [sym_assignment] = STATE(6223), + [sym_variable_assignment] = STATE(1683), + [sym_variable_definition] = STATE(1683), + [sym_buffer_definition] = STATE(1683), + [sym_query_definition] = STATE(1683), + [sym_function_call_statement] = STATE(1683), + [sym_function_call] = STATE(5350), + [sym_if_statement] = STATE(1683), + [sym_label] = STATE(1682), + [sym_repeat_statement] = STATE(1683), + [sym_procedure_statement] = STATE(1683), + [sym_procedure_parameter_definition] = STATE(1683), + [sym_function_statement] = STATE(1683), + [sym_return_statement] = STATE(1683), + [sym_interface_statement] = STATE(1683), + [sym_dataset_definition] = STATE(1683), + [sym_using_statement] = STATE(1683), + [sym_class_statement] = STATE(1683), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1683), + [sym_input_close_statement] = STATE(1683), + [sym_output_close_statement] = STATE(1683), + [sym__stream_statement] = STATE(1683), + [sym_input_stream_statement] = STATE(1681), + [sym_output_stream_statement] = STATE(1681), + [sym_do_block] = STATE(1488), + [sym_case_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_find_statement] = STATE(1683), + [sym_abl_statement] = STATE(1683), + [sym_assign_statement] = STATE(1683), + [sym_catch_statement] = STATE(1683), + [sym_finally_statement] = STATE(1683), + [sym_accumulate_statement] = STATE(1683), + [sym_undo_statement] = STATE(1683), + [sym_error_scope_statement] = STATE(1683), + [sym_workfile_definition] = STATE(1683), + [sym_temp_table_definition] = STATE(1683), + [sym_on_statement] = STATE(1683), + [sym_prompt_for_statement] = STATE(1683), + [sym_var_statement] = STATE(1683), + [sym_button_definition] = STATE(1683), + [sym_run_statement] = STATE(1683), + [sym_enum_statement] = STATE(1683), + [sym__statement] = STATE(1479), + [sym_identifier] = ACTIONS(593), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(587), - [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_input_expression_token1] = ACTIONS(595), + [aux_sym_class_type_token1] = ACTIONS(597), [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), + [aux_sym_variable_definition_token1] = ACTIONS(599), + [aux_sym_variable_definition_token2] = ACTIONS(599), + [aux_sym_buffer_definition_token2] = ACTIONS(601), + [aux_sym_return_type_token2] = ACTIONS(603), + [aux_sym_argument_mode_token1] = ACTIONS(605), + [aux_sym_if_statement_token1] = ACTIONS(607), + [aux_sym_repeat_statement_token1] = ACTIONS(609), + [aux_sym__procedure_terminator_token1] = ACTIONS(611), + [aux_sym__function_terminator_token1] = ACTIONS(613), + [aux_sym_interface_statement_token1] = ACTIONS(615), + [aux_sym_using_statement_token1] = ACTIONS(617), + [aux_sym_on_error_phrase_token1] = ACTIONS(619), + [aux_sym_on_error_phrase_token3] = ACTIONS(621), + [aux_sym_do_block_token1] = ACTIONS(623), + [aux_sym__case_terminator_token1] = ACTIONS(625), + [aux_sym_find_statement_token1] = ACTIONS(627), + [aux_sym_assign_statement_token1] = ACTIONS(629), + [aux_sym_catch_statement_token1] = ACTIONS(631), + [aux_sym_finally_statement_token1] = ACTIONS(633), + [aux_sym_accumulate_statement_token1] = ACTIONS(635), + [aux_sym_error_scope_statement_token1] = ACTIONS(637), + [aux_sym_error_scope_statement_token2] = ACTIONS(637), + [aux_sym_prompt_for_statement_token1] = ACTIONS(639), + [aux_sym_var_statement_token1] = ACTIONS(641), + [aux_sym_run_statement_token1] = ACTIONS(643), + [aux_sym_enum_definition_token1] = ACTIONS(645), }, [73] = { [sym_comment] = STATE(73), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(73), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(4293), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(4317), + [sym_identifier] = ACTIONS(485), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(483), - [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), [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), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(657), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [74] = { [sym_comment] = STATE(74), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(74), - [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), + [sym_assignment] = STATE(6454), + [sym_variable_assignment] = STATE(1902), + [sym_variable_definition] = STATE(1902), + [sym_buffer_definition] = STATE(1902), + [sym_query_definition] = STATE(1902), + [sym_function_call_statement] = STATE(1902), + [sym_function_call] = STATE(5306), + [sym_if_statement] = STATE(1902), + [sym_label] = STATE(1903), + [sym_repeat_statement] = STATE(1902), + [sym_procedure_statement] = STATE(1902), + [sym_procedure_parameter_definition] = STATE(1902), + [sym_function_statement] = STATE(1902), + [sym_return_statement] = STATE(1902), + [sym_interface_statement] = STATE(1902), + [sym_dataset_definition] = STATE(1902), + [sym_using_statement] = STATE(1902), + [sym_class_statement] = STATE(1902), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1902), + [sym_input_close_statement] = STATE(1902), + [sym_output_close_statement] = STATE(1902), + [sym__stream_statement] = STATE(1902), + [sym_input_stream_statement] = STATE(1904), + [sym_output_stream_statement] = STATE(1904), + [sym_do_block] = STATE(1463), + [sym_case_statement] = STATE(1902), + [sym_for_statement] = STATE(1902), + [sym_find_statement] = STATE(1902), + [sym_abl_statement] = STATE(1902), + [sym_assign_statement] = STATE(1902), + [sym_catch_statement] = STATE(1902), + [sym_finally_statement] = STATE(1902), + [sym_accumulate_statement] = STATE(1902), + [sym_undo_statement] = STATE(1902), + [sym_error_scope_statement] = STATE(1902), + [sym_workfile_definition] = STATE(1902), + [sym_temp_table_definition] = STATE(1902), + [sym_on_statement] = STATE(1902), + [sym_prompt_for_statement] = STATE(1902), + [sym_var_statement] = STATE(1902), + [sym_button_definition] = STATE(1902), + [sym_run_statement] = STATE(1902), + [sym_enum_statement] = STATE(1902), + [sym__statement] = STATE(1494), + [sym_identifier] = ACTIONS(539), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(483), - [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_input_expression_token1] = ACTIONS(541), + [aux_sym_class_type_token1] = ACTIONS(543), [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), + [aux_sym_variable_definition_token1] = ACTIONS(545), + [aux_sym_variable_definition_token2] = ACTIONS(545), + [aux_sym_buffer_definition_token2] = ACTIONS(547), + [aux_sym_return_type_token2] = ACTIONS(549), + [aux_sym_argument_mode_token1] = ACTIONS(551), + [aux_sym_if_statement_token1] = ACTIONS(553), + [aux_sym_repeat_statement_token1] = ACTIONS(555), + [aux_sym__procedure_terminator_token1] = ACTIONS(557), + [aux_sym__function_terminator_token1] = ACTIONS(559), + [aux_sym_interface_statement_token1] = ACTIONS(561), + [aux_sym_using_statement_token1] = ACTIONS(563), + [aux_sym_on_error_phrase_token1] = ACTIONS(565), + [aux_sym_on_error_phrase_token3] = ACTIONS(567), + [aux_sym_do_block_token1] = ACTIONS(569), + [aux_sym__case_terminator_token1] = ACTIONS(571), + [aux_sym_find_statement_token1] = ACTIONS(573), + [aux_sym_assign_statement_token1] = ACTIONS(575), + [aux_sym_catch_statement_token1] = ACTIONS(577), + [aux_sym_finally_statement_token1] = ACTIONS(579), + [aux_sym_accumulate_statement_token1] = ACTIONS(581), + [aux_sym_error_scope_statement_token1] = ACTIONS(583), + [aux_sym_error_scope_statement_token2] = ACTIONS(583), + [aux_sym_prompt_for_statement_token1] = ACTIONS(585), + [aux_sym_var_statement_token1] = ACTIONS(587), + [aux_sym_run_statement_token1] = ACTIONS(589), + [aux_sym_enum_definition_token1] = ACTIONS(591), }, [75] = { [sym_comment] = STATE(75), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(75), - [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), + [sym_assignment] = STATE(6454), + [sym_variable_assignment] = STATE(1902), + [sym_variable_definition] = STATE(1902), + [sym_buffer_definition] = STATE(1902), + [sym_query_definition] = STATE(1902), + [sym_function_call_statement] = STATE(1902), + [sym_function_call] = STATE(5306), + [sym_if_statement] = STATE(1902), + [sym_label] = STATE(1903), + [sym_repeat_statement] = STATE(1902), + [sym_procedure_statement] = STATE(1902), + [sym_procedure_parameter_definition] = STATE(1902), + [sym_function_statement] = STATE(1902), + [sym_return_statement] = STATE(1902), + [sym_interface_statement] = STATE(1902), + [sym_dataset_definition] = STATE(1902), + [sym_using_statement] = STATE(1902), + [sym_class_statement] = STATE(1902), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(1902), + [sym_input_close_statement] = STATE(1902), + [sym_output_close_statement] = STATE(1902), + [sym__stream_statement] = STATE(1902), + [sym_input_stream_statement] = STATE(1904), + [sym_output_stream_statement] = STATE(1904), + [sym_do_block] = STATE(1474), + [sym_case_statement] = STATE(1902), + [sym_for_statement] = STATE(1902), + [sym_find_statement] = STATE(1902), + [sym_abl_statement] = STATE(1902), + [sym_assign_statement] = STATE(1902), + [sym_catch_statement] = STATE(1902), + [sym_finally_statement] = STATE(1902), + [sym_accumulate_statement] = STATE(1902), + [sym_undo_statement] = STATE(1902), + [sym_error_scope_statement] = STATE(1902), + [sym_workfile_definition] = STATE(1902), + [sym_temp_table_definition] = STATE(1902), + [sym_on_statement] = STATE(1902), + [sym_prompt_for_statement] = STATE(1902), + [sym_var_statement] = STATE(1902), + [sym_button_definition] = STATE(1902), + [sym_run_statement] = STATE(1902), + [sym_enum_statement] = STATE(1902), + [sym__statement] = STATE(1473), + [sym_identifier] = ACTIONS(539), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(587), - [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_input_expression_token1] = ACTIONS(541), + [aux_sym_class_type_token1] = ACTIONS(543), [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), + [aux_sym_variable_definition_token1] = ACTIONS(545), + [aux_sym_variable_definition_token2] = ACTIONS(545), + [aux_sym_buffer_definition_token2] = ACTIONS(547), + [aux_sym_return_type_token2] = ACTIONS(549), + [aux_sym_argument_mode_token1] = ACTIONS(551), + [aux_sym_if_statement_token1] = ACTIONS(553), + [aux_sym_repeat_statement_token1] = ACTIONS(555), + [aux_sym__procedure_terminator_token1] = ACTIONS(557), + [aux_sym__function_terminator_token1] = ACTIONS(559), + [aux_sym_interface_statement_token1] = ACTIONS(561), + [aux_sym_using_statement_token1] = ACTIONS(563), + [aux_sym_on_error_phrase_token1] = ACTIONS(565), + [aux_sym_on_error_phrase_token3] = ACTIONS(567), + [aux_sym_do_block_token1] = ACTIONS(569), + [aux_sym__case_terminator_token1] = ACTIONS(571), + [aux_sym_find_statement_token1] = ACTIONS(573), + [aux_sym_assign_statement_token1] = ACTIONS(575), + [aux_sym_catch_statement_token1] = ACTIONS(577), + [aux_sym_finally_statement_token1] = ACTIONS(579), + [aux_sym_accumulate_statement_token1] = ACTIONS(581), + [aux_sym_error_scope_statement_token1] = ACTIONS(583), + [aux_sym_error_scope_statement_token2] = ACTIONS(583), + [aux_sym_prompt_for_statement_token1] = ACTIONS(585), + [aux_sym_var_statement_token1] = ACTIONS(587), + [aux_sym_run_statement_token1] = ACTIONS(589), + [aux_sym_enum_definition_token1] = ACTIONS(591), }, [76] = { [sym_comment] = STATE(76), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(76), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(4368), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(4371), + [sym_identifier] = ACTIONS(485), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(535), - [aux_sym_class_type_token1] = ACTIONS(537), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), [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), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(657), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [77] = { [sym_comment] = STATE(77), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(77), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(4311), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(4308), + [sym_identifier] = ACTIONS(485), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(483), - [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), [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), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(657), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [78] = { [sym_comment] = STATE(78), - [sym_qualified_name] = STATE(5477), + [sym_qualified_name] = STATE(5530), [sym_include] = STATE(78), - [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), + [sym_assignment] = STATE(6769), + [sym_variable_assignment] = STATE(4753), + [sym_variable_definition] = STATE(4753), + [sym_buffer_definition] = STATE(4753), + [sym_query_definition] = STATE(4753), + [sym_function_call_statement] = STATE(4753), + [sym_function_call] = STATE(5249), + [sym_if_statement] = STATE(4753), + [sym_label] = STATE(4146), + [sym_repeat_statement] = STATE(4753), + [sym_procedure_statement] = STATE(4753), + [sym_procedure_parameter_definition] = STATE(4753), + [sym_function_statement] = STATE(4753), + [sym_return_statement] = STATE(4753), + [sym_interface_statement] = STATE(4753), + [sym_dataset_definition] = STATE(4753), + [sym_using_statement] = STATE(4753), + [sym_class_statement] = STATE(4753), + [sym_new_expression] = STATE(5534), + [sym_object_access] = STATE(4663), + [sym_member_access] = STATE(5530), + [sym_stream_definition] = STATE(4753), + [sym_input_close_statement] = STATE(4753), + [sym_output_close_statement] = STATE(4753), + [sym__stream_statement] = STATE(4753), + [sym_input_stream_statement] = STATE(4754), + [sym_output_stream_statement] = STATE(4754), + [sym_do_block] = STATE(4677), + [sym_case_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_find_statement] = STATE(4753), + [sym_abl_statement] = STATE(4753), + [sym_assign_statement] = STATE(4753), + [sym_catch_statement] = STATE(4753), + [sym_finally_statement] = STATE(4753), + [sym_accumulate_statement] = STATE(4753), + [sym_undo_statement] = STATE(4753), + [sym_error_scope_statement] = STATE(4753), + [sym_workfile_definition] = STATE(4753), + [sym_temp_table_definition] = STATE(4753), + [sym_on_statement] = STATE(4753), + [sym_prompt_for_statement] = STATE(4753), + [sym_var_statement] = STATE(4753), + [sym_button_definition] = STATE(4753), + [sym_run_statement] = STATE(4753), + [sym_enum_statement] = STATE(4753), + [sym__statement] = STATE(4678), + [sym_identifier] = ACTIONS(485), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(483), - [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_input_expression_token1] = ACTIONS(487), + [aux_sym_class_type_token1] = ACTIONS(489), [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), + [aux_sym_variable_definition_token1] = ACTIONS(491), + [aux_sym_variable_definition_token2] = ACTIONS(491), + [aux_sym_buffer_definition_token2] = ACTIONS(493), + [aux_sym_return_type_token2] = ACTIONS(495), + [aux_sym_argument_mode_token1] = ACTIONS(497), + [aux_sym_if_statement_token1] = ACTIONS(659), + [aux_sym_repeat_statement_token1] = ACTIONS(501), + [aux_sym__procedure_terminator_token1] = ACTIONS(503), + [aux_sym__function_terminator_token1] = ACTIONS(505), + [aux_sym_interface_statement_token1] = ACTIONS(507), + [aux_sym_using_statement_token1] = ACTIONS(509), + [aux_sym_on_error_phrase_token1] = ACTIONS(511), + [aux_sym_on_error_phrase_token3] = ACTIONS(513), + [aux_sym_do_block_token1] = ACTIONS(515), + [aux_sym__case_terminator_token1] = ACTIONS(517), + [aux_sym_find_statement_token1] = ACTIONS(519), + [aux_sym_assign_statement_token1] = ACTIONS(521), + [aux_sym_catch_statement_token1] = ACTIONS(523), + [aux_sym_finally_statement_token1] = ACTIONS(525), + [aux_sym_accumulate_statement_token1] = ACTIONS(527), + [aux_sym_error_scope_statement_token1] = ACTIONS(529), + [aux_sym_error_scope_statement_token2] = ACTIONS(529), + [aux_sym_prompt_for_statement_token1] = ACTIONS(531), + [aux_sym_var_statement_token1] = ACTIONS(533), + [aux_sym_run_statement_token1] = ACTIONS(535), + [aux_sym_enum_definition_token1] = ACTIONS(537), }, [79] = { [sym_comment] = STATE(79), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(79), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5344), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_aggregate] = STATE(5425), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(675), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(701), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [80] = { [sym_comment] = STATE(80), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(80), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5344), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_aggregate] = STATE(5349), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(675), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(701), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [81] = { [sym_comment] = STATE(81), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(81), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5344), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_aggregate] = STATE(5309), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(675), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(701), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [82] = { [sym_comment] = STATE(82), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(82), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5344), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_aggregate] = STATE(5386), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(675), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(701), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [83] = { [sym_comment] = STATE(83), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(83), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5344), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_aggregate] = STATE(5319), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(675), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(701), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(701), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [84] = { [sym_comment] = STATE(84), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(84), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1241), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(709), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [85] = { [sym_comment] = STATE(85), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(85), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1243), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3370), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(743), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [86] = { [sym_comment] = STATE(86), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(86), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1265), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3320), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(745), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [87] = { [sym_comment] = STATE(87), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(87), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1258), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3343), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(747), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [88] = { [sym_comment] = STATE(88), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(88), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1256), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3359), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(749), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [89] = { [sym_comment] = STATE(89), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(89), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1264), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3350), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(751), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [90] = { [sym_comment] = STATE(90), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(90), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1250), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3365), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(753), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [91] = { [sym_comment] = STATE(91), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(91), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1267), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3340), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(755), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [92] = { [sym_comment] = STATE(92), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(92), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1247), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3352), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(757), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [93] = { [sym_comment] = STATE(93), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(93), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1245), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(759), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [94] = { [sym_comment] = STATE(94), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(94), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1254), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3345), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(761), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [95] = { [sym_comment] = STATE(95), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(95), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1255), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(763), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [96] = { [sym_comment] = STATE(96), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(96), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1257), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3331), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(765), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [97] = { [sym_comment] = STATE(97), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(97), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1260), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3338), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(767), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [98] = { [sym_comment] = STATE(98), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(98), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1252), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(769), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [99] = { [sym_comment] = STATE(99), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(99), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1262), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3354), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(771), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [100] = { [sym_comment] = STATE(100), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(100), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1242), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3346), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(773), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [101] = { [sym_comment] = STATE(101), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(101), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1244), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(775), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [102] = { [sym_comment] = STATE(102), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(102), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1246), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3329), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(777), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [103] = { [sym_comment] = STATE(103), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(103), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1263), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(779), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [104] = { [sym_comment] = STATE(104), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(104), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1253), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3337), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(781), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [105] = { [sym_comment] = STATE(105), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(105), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1259), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3332), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(783), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [106] = { [sym_comment] = STATE(106), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(106), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1268), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(785), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [107] = { [sym_comment] = STATE(107), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(107), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1248), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(787), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [108] = { [sym_comment] = STATE(108), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(108), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1261), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3316), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(789), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [109] = { [sym_comment] = STATE(109), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(109), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1266), + [aux_sym_qualified_name_repeat1] = STATE(1326), + [aux_sym_can_find_expression_repeat1] = STATE(3325), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(791), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__namedot] = ACTIONS(741), + [sym__escaped_string] = ACTIONS(707), }, [110] = { [sym_comment] = STATE(110), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(110), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1243), + [aux_sym_can_find_expression_repeat1] = STATE(3370), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(743), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [111] = { [sym_comment] = STATE(111), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(111), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1241), + [aux_sym_can_find_expression_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(709), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [112] = { [sym_comment] = STATE(112), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(112), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1244), + [aux_sym_can_find_expression_repeat1] = STATE(3309), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(775), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [113] = { [sym_comment] = STATE(113), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(113), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1259), + [aux_sym_can_find_expression_repeat1] = STATE(3332), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(783), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [114] = { [sym_comment] = STATE(114), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(114), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1260), + [aux_sym_can_find_expression_repeat1] = STATE(3338), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(767), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [115] = { [sym_comment] = STATE(115), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(115), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1268), + [aux_sym_can_find_expression_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(785), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [116] = { [sym_comment] = STATE(116), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(116), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1253), + [aux_sym_can_find_expression_repeat1] = STATE(3337), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(781), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [117] = { [sym_comment] = STATE(117), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(117), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1262), + [aux_sym_can_find_expression_repeat1] = STATE(3354), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(771), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [118] = { [sym_comment] = STATE(118), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(118), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1263), + [aux_sym_can_find_expression_repeat1] = STATE(3363), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(779), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [119] = { [sym_comment] = STATE(119), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(119), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1267), + [aux_sym_can_find_expression_repeat1] = STATE(3340), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(755), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [120] = { [sym_comment] = STATE(120), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(120), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1266), + [aux_sym_can_find_expression_repeat1] = STATE(3325), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(791), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [121] = { [sym_comment] = STATE(121), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(121), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1264), + [aux_sym_can_find_expression_repeat1] = STATE(3350), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(751), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [122] = { [sym_comment] = STATE(122), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(122), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1248), + [aux_sym_can_find_expression_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(787), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [123] = { [sym_comment] = STATE(123), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(123), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1265), + [aux_sym_can_find_expression_repeat1] = STATE(3320), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(745), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [124] = { [sym_comment] = STATE(124), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(124), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1242), + [aux_sym_can_find_expression_repeat1] = STATE(3346), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(773), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [125] = { [sym_comment] = STATE(125), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(125), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1258), + [aux_sym_can_find_expression_repeat1] = STATE(3343), + [sym_identifier] = ACTIONS(661), [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_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), [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), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [126] = { [sym_comment] = STATE(126), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(126), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1261), + [aux_sym_can_find_expression_repeat1] = STATE(3316), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(789), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [127] = { [sym_comment] = STATE(127), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(127), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1257), + [aux_sym_can_find_expression_repeat1] = STATE(3331), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(765), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [128] = { [sym_comment] = STATE(128), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(128), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1252), + [aux_sym_can_find_expression_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(769), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [129] = { [sym_comment] = STATE(129), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(129), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1254), + [aux_sym_can_find_expression_repeat1] = STATE(3345), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(761), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [130] = { [sym_comment] = STATE(130), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(130), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1255), + [aux_sym_can_find_expression_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(763), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [131] = { [sym_comment] = STATE(131), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(131), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1250), + [aux_sym_can_find_expression_repeat1] = STATE(3365), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(753), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [132] = { [sym_comment] = STATE(132), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(132), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1247), + [aux_sym_can_find_expression_repeat1] = STATE(3352), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(757), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [133] = { [sym_comment] = STATE(133), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(133), - [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_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), [sym__expression] = STATE(1246), - [aux_sym_can_find_expression_repeat1] = STATE(3342), - [sym_identifier] = ACTIONS(645), + [aux_sym_can_find_expression_repeat1] = STATE(3329), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(777), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [134] = { [sym_comment] = STATE(134), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(134), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1256), + [aux_sym_can_find_expression_repeat1] = STATE(3359), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(749), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [135] = { [sym_comment] = STATE(135), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(135), - [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), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_where_clause] = STATE(3872), + [sym_query_tuning] = STATE(3872), + [sym_can_find_expression] = STATE(37), + [sym_of] = STATE(3872), + [sym_using] = STATE(3277), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(1245), + [aux_sym_can_find_expression_repeat1] = STATE(3368), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(759), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(711), + [aux_sym_ambiguous_expression_token1] = ACTIONS(713), + [aux_sym_temp_table_expression_token1] = ACTIONS(715), + [aux_sym_current_changed_expression_token1] = ACTIONS(717), + [aux_sym_locked_expression_token1] = ACTIONS(719), + [aux_sym_dataset_expression_token1] = ACTIONS(721), + [aux_sym_input_expression_token1] = ACTIONS(723), + [aux_sym_scope_tuning_token1] = ACTIONS(725), + [aux_sym_function_call_token1] = ACTIONS(727), + [aux_sym_if_statement_token1] = ACTIONS(729), + [aux_sym_using_statement_token1] = ACTIONS(731), + [aux_sym_where_clause_token1] = ACTIONS(733), + [aux_sym_query_tuning_token1] = ACTIONS(727), + [aux_sym_query_tuning_token2] = ACTIONS(727), + [aux_sym_query_tuning_token3] = ACTIONS(727), + [aux_sym_query_tuning_token4] = ACTIONS(727), + [aux_sym_query_tuning_token5] = ACTIONS(735), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_of_token1] = ACTIONS(737), + [aux_sym_accumulate_expression_token1] = ACTIONS(739), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [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_constant] = STATE(1104), + [sym_qualified_name] = STATE(1104), + [sym_boolean_literal] = STATE(1104), + [sym__decimal_literal] = STATE(1107), + [sym_number_literal] = STATE(1104), + [sym_string_literal] = STATE(1104), + [sym_array_literal] = STATE(1104), + [sym_parenthesized_expression] = STATE(1104), + [sym_logical_expression] = STATE(1094), + [sym_unary_expression] = STATE(1104), + [sym_ambiguous_expression] = STATE(1104), + [sym_temp_table_expression] = STATE(1104), + [sym_current_changed_expression] = STATE(1104), + [sym_locked_expression] = STATE(1104), + [sym_dataset_expression] = STATE(1104), + [sym_input_expression] = STATE(1104), + [sym_additive_expression] = STATE(1094), + [sym_multiplicative_expression] = STATE(1094), + [sym_comparison_expression] = STATE(1094), + [sym__binary_expression] = STATE(1104), + [sym_array_access] = STATE(1104), [sym_include] = STATE(136), - [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), + [sym_function_arguments] = STATE(3561), + [sym_function_call] = STATE(1045), + [sym_ternary_expression] = STATE(1104), + [sym_new_expression] = STATE(1045), + [sym_object_access] = STATE(1083), + [sym_member_access] = STATE(1104), + [sym_can_find_expression] = STATE(1104), + [sym_accumulate_expression] = STATE(1104), + [sym_available_expression] = STATE(1104), + [sym__expression] = STATE(1046), + [aux_sym_qualified_name_repeat1] = STATE(4714), + [aux_sym_object_access_repeat1] = STATE(4572), + [aux_sym_member_access_repeat1] = STATE(4719), + [aux_sym_abl_statement_repeat1] = STATE(288), + [sym_identifier] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), [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), + [anon_sym_LBRACE] = ACTIONS(797), + [sym__terminator] = ACTIONS(799), + [sym_null_expression] = ACTIONS(801), + [aux_sym_boolean_literal_token1] = ACTIONS(803), + [aux_sym_boolean_literal_token2] = ACTIONS(803), + [aux_sym_boolean_literal_token3] = ACTIONS(803), + [aux_sym_boolean_literal_token4] = ACTIONS(803), + [sym__integer_literal] = ACTIONS(805), + [sym_date_literal] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [aux_sym_unary_expression_token1] = ACTIONS(811), + [aux_sym_unary_expression_token2] = ACTIONS(813), + [aux_sym_ambiguous_expression_token1] = ACTIONS(815), + [aux_sym_temp_table_expression_token1] = ACTIONS(817), + [aux_sym_current_changed_expression_token1] = ACTIONS(819), + [aux_sym_locked_expression_token1] = ACTIONS(821), + [aux_sym_dataset_expression_token1] = ACTIONS(823), + [aux_sym_input_expression_token1] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [aux_sym_scope_tuning_token1] = ACTIONS(829), + [aux_sym_if_statement_token1] = ACTIONS(831), + [aux_sym_can_find_expression_token1] = ACTIONS(833), + [aux_sym_accumulate_expression_token1] = ACTIONS(835), + [aux_sym_available_expression_token1] = ACTIONS(837), + [aux_sym_available_expression_token2] = ACTIONS(837), + [sym__namedot] = ACTIONS(839), + [sym__namecolon] = ACTIONS(841), + [sym__namedoublecolon] = ACTIONS(843), + [sym__augmented_assignment] = ACTIONS(845), + [sym__escaped_string] = ACTIONS(847), }, [137] = { [sym_comment] = STATE(137), - [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_constant] = STATE(1104), + [sym_qualified_name] = STATE(1104), + [sym_boolean_literal] = STATE(1104), + [sym__decimal_literal] = STATE(1107), + [sym_number_literal] = STATE(1104), + [sym_string_literal] = STATE(1104), + [sym_array_literal] = STATE(1104), + [sym_parenthesized_expression] = STATE(1104), + [sym_logical_expression] = STATE(1094), + [sym_unary_expression] = STATE(1104), + [sym_ambiguous_expression] = STATE(1104), + [sym_temp_table_expression] = STATE(1104), + [sym_current_changed_expression] = STATE(1104), + [sym_locked_expression] = STATE(1104), + [sym_dataset_expression] = STATE(1104), + [sym_input_expression] = STATE(1104), + [sym_additive_expression] = STATE(1094), + [sym_multiplicative_expression] = STATE(1094), + [sym_comparison_expression] = STATE(1094), + [sym__binary_expression] = STATE(1104), + [sym_array_access] = STATE(1104), [sym_include] = STATE(137), - [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), + [sym_function_arguments] = STATE(3561), + [sym_function_call] = STATE(1045), + [sym_ternary_expression] = STATE(1104), + [sym_new_expression] = STATE(1045), + [sym_object_access] = STATE(1083), + [sym_member_access] = STATE(1104), + [sym_can_find_expression] = STATE(1104), + [sym_accumulate_expression] = STATE(1104), + [sym_available_expression] = STATE(1104), + [sym__expression] = STATE(1046), + [aux_sym_qualified_name_repeat1] = STATE(4714), + [aux_sym_object_access_repeat1] = STATE(4572), + [aux_sym_member_access_repeat1] = STATE(4719), + [aux_sym_abl_statement_repeat1] = STATE(313), + [sym_identifier] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(849), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(797), + [sym__terminator] = ACTIONS(851), + [sym_null_expression] = ACTIONS(801), + [aux_sym_boolean_literal_token1] = ACTIONS(803), + [aux_sym_boolean_literal_token2] = ACTIONS(803), + [aux_sym_boolean_literal_token3] = ACTIONS(803), + [aux_sym_boolean_literal_token4] = ACTIONS(803), + [sym__integer_literal] = ACTIONS(805), + [sym_date_literal] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [aux_sym_unary_expression_token1] = ACTIONS(811), + [aux_sym_unary_expression_token2] = ACTIONS(813), + [aux_sym_ambiguous_expression_token1] = ACTIONS(815), + [aux_sym_temp_table_expression_token1] = ACTIONS(817), + [aux_sym_current_changed_expression_token1] = ACTIONS(819), + [aux_sym_locked_expression_token1] = ACTIONS(821), + [aux_sym_dataset_expression_token1] = ACTIONS(823), + [aux_sym_input_expression_token1] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [aux_sym_scope_tuning_token1] = ACTIONS(829), + [aux_sym_if_statement_token1] = ACTIONS(831), + [aux_sym_can_find_expression_token1] = ACTIONS(833), + [aux_sym_accumulate_expression_token1] = ACTIONS(835), + [aux_sym_available_expression_token1] = ACTIONS(837), + [aux_sym_available_expression_token2] = ACTIONS(837), + [sym__namedot] = ACTIONS(839), + [sym__namecolon] = ACTIONS(841), + [sym__namedoublecolon] = ACTIONS(843), + [sym__augmented_assignment] = ACTIONS(845), + [sym__escaped_string] = ACTIONS(847), }, [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_constant] = STATE(1104), + [sym_qualified_name] = STATE(1104), + [sym_boolean_literal] = STATE(1104), + [sym__decimal_literal] = STATE(1107), + [sym_number_literal] = STATE(1104), + [sym_string_literal] = STATE(1104), + [sym_array_literal] = STATE(1104), + [sym_parenthesized_expression] = STATE(1104), + [sym_logical_expression] = STATE(1094), + [sym_unary_expression] = STATE(1104), + [sym_ambiguous_expression] = STATE(1104), + [sym_temp_table_expression] = STATE(1104), + [sym_current_changed_expression] = STATE(1104), + [sym_locked_expression] = STATE(1104), + [sym_dataset_expression] = STATE(1104), + [sym_input_expression] = STATE(1104), + [sym_additive_expression] = STATE(1094), + [sym_multiplicative_expression] = STATE(1094), + [sym_comparison_expression] = STATE(1094), + [sym__binary_expression] = STATE(1104), + [sym_array_access] = STATE(1104), [sym_include] = STATE(138), - [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), + [sym_function_arguments] = STATE(3561), + [sym_function_call] = STATE(1045), + [sym_ternary_expression] = STATE(1104), + [sym_new_expression] = STATE(1045), + [sym_object_access] = STATE(1083), + [sym_member_access] = STATE(1104), + [sym_can_find_expression] = STATE(1104), + [sym_accumulate_expression] = STATE(1104), + [sym_available_expression] = STATE(1104), + [sym__expression] = STATE(1046), + [aux_sym_qualified_name_repeat1] = STATE(4714), + [aux_sym_object_access_repeat1] = STATE(4572), + [aux_sym_member_access_repeat1] = STATE(4719), + [aux_sym_abl_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(853), [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), + [anon_sym_LBRACE] = ACTIONS(797), + [sym__terminator] = ACTIONS(855), + [sym_null_expression] = ACTIONS(801), + [aux_sym_boolean_literal_token1] = ACTIONS(803), + [aux_sym_boolean_literal_token2] = ACTIONS(803), + [aux_sym_boolean_literal_token3] = ACTIONS(803), + [aux_sym_boolean_literal_token4] = ACTIONS(803), + [sym__integer_literal] = ACTIONS(805), + [sym_date_literal] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [aux_sym_unary_expression_token1] = ACTIONS(811), + [aux_sym_unary_expression_token2] = ACTIONS(813), + [aux_sym_ambiguous_expression_token1] = ACTIONS(815), + [aux_sym_temp_table_expression_token1] = ACTIONS(817), + [aux_sym_current_changed_expression_token1] = ACTIONS(819), + [aux_sym_locked_expression_token1] = ACTIONS(821), + [aux_sym_dataset_expression_token1] = ACTIONS(823), + [aux_sym_input_expression_token1] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [aux_sym_scope_tuning_token1] = ACTIONS(829), + [aux_sym_if_statement_token1] = ACTIONS(831), + [aux_sym_can_find_expression_token1] = ACTIONS(833), + [aux_sym_accumulate_expression_token1] = ACTIONS(835), + [aux_sym_available_expression_token1] = ACTIONS(837), + [aux_sym_available_expression_token2] = ACTIONS(837), + [sym__namedot] = ACTIONS(839), + [sym__namecolon] = ACTIONS(841), + [sym__namedoublecolon] = ACTIONS(843), + [sym__augmented_assignment] = ACTIONS(845), + [sym__escaped_string] = ACTIONS(847), }, [139] = { [sym_comment] = STATE(139), - [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_constant] = STATE(1104), + [sym_qualified_name] = STATE(1104), + [sym_boolean_literal] = STATE(1104), + [sym__decimal_literal] = STATE(1107), + [sym_number_literal] = STATE(1104), + [sym_string_literal] = STATE(1104), + [sym_array_literal] = STATE(1104), + [sym_parenthesized_expression] = STATE(1104), + [sym_logical_expression] = STATE(1094), + [sym_unary_expression] = STATE(1104), + [sym_ambiguous_expression] = STATE(1104), + [sym_temp_table_expression] = STATE(1104), + [sym_current_changed_expression] = STATE(1104), + [sym_locked_expression] = STATE(1104), + [sym_dataset_expression] = STATE(1104), + [sym_input_expression] = STATE(1104), + [sym_additive_expression] = STATE(1094), + [sym_multiplicative_expression] = STATE(1094), + [sym_comparison_expression] = STATE(1094), + [sym__binary_expression] = STATE(1104), + [sym_array_access] = STATE(1104), [sym_include] = STATE(139), - [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), + [sym_function_arguments] = STATE(3561), + [sym_function_call] = STATE(1045), + [sym_ternary_expression] = STATE(1104), + [sym_new_expression] = STATE(1045), + [sym_object_access] = STATE(1083), + [sym_member_access] = STATE(1104), + [sym_can_find_expression] = STATE(1104), + [sym_accumulate_expression] = STATE(1104), + [sym_available_expression] = STATE(1104), + [sym__expression] = STATE(1046), + [aux_sym_qualified_name_repeat1] = STATE(4714), + [aux_sym_object_access_repeat1] = STATE(4572), + [aux_sym_member_access_repeat1] = STATE(4719), + [aux_sym_abl_statement_repeat1] = STATE(262), + [sym_identifier] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(857), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(797), + [sym__terminator] = ACTIONS(859), + [sym_null_expression] = ACTIONS(801), + [aux_sym_boolean_literal_token1] = ACTIONS(803), + [aux_sym_boolean_literal_token2] = ACTIONS(803), + [aux_sym_boolean_literal_token3] = ACTIONS(803), + [aux_sym_boolean_literal_token4] = ACTIONS(803), + [sym__integer_literal] = ACTIONS(805), + [sym_date_literal] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [aux_sym_unary_expression_token1] = ACTIONS(811), + [aux_sym_unary_expression_token2] = ACTIONS(813), + [aux_sym_ambiguous_expression_token1] = ACTIONS(815), + [aux_sym_temp_table_expression_token1] = ACTIONS(817), + [aux_sym_current_changed_expression_token1] = ACTIONS(819), + [aux_sym_locked_expression_token1] = ACTIONS(821), + [aux_sym_dataset_expression_token1] = ACTIONS(823), + [aux_sym_input_expression_token1] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [aux_sym_scope_tuning_token1] = ACTIONS(829), + [aux_sym_if_statement_token1] = ACTIONS(831), + [aux_sym_can_find_expression_token1] = ACTIONS(833), + [aux_sym_accumulate_expression_token1] = ACTIONS(835), + [aux_sym_available_expression_token1] = ACTIONS(837), + [aux_sym_available_expression_token2] = ACTIONS(837), + [sym__namedot] = ACTIONS(839), + [sym__namecolon] = ACTIONS(841), + [sym__namedoublecolon] = ACTIONS(843), + [sym__augmented_assignment] = ACTIONS(845), + [sym__escaped_string] = ACTIONS(847), }, [140] = { [sym_comment] = STATE(140), - [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_constant] = STATE(1104), + [sym_qualified_name] = STATE(1104), + [sym_boolean_literal] = STATE(1104), + [sym__decimal_literal] = STATE(1107), + [sym_number_literal] = STATE(1104), + [sym_string_literal] = STATE(1104), + [sym_array_literal] = STATE(1104), + [sym_parenthesized_expression] = STATE(1104), + [sym_logical_expression] = STATE(1094), + [sym_unary_expression] = STATE(1104), + [sym_ambiguous_expression] = STATE(1104), + [sym_temp_table_expression] = STATE(1104), + [sym_current_changed_expression] = STATE(1104), + [sym_locked_expression] = STATE(1104), + [sym_dataset_expression] = STATE(1104), + [sym_input_expression] = STATE(1104), + [sym_additive_expression] = STATE(1094), + [sym_multiplicative_expression] = STATE(1094), + [sym_comparison_expression] = STATE(1094), + [sym__binary_expression] = STATE(1104), + [sym_array_access] = STATE(1104), [sym_include] = STATE(140), - [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), + [sym_function_arguments] = STATE(3561), + [sym_function_call] = STATE(1045), + [sym_ternary_expression] = STATE(1104), + [sym_new_expression] = STATE(1045), + [sym_object_access] = STATE(1083), + [sym_member_access] = STATE(1104), + [sym_can_find_expression] = STATE(1104), + [sym_accumulate_expression] = STATE(1104), + [sym_available_expression] = STATE(1104), + [sym__expression] = STATE(1046), + [aux_sym_qualified_name_repeat1] = STATE(4714), + [aux_sym_object_access_repeat1] = STATE(4572), + [aux_sym_member_access_repeat1] = STATE(4719), + [aux_sym_abl_statement_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(861), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(797), + [sym__terminator] = ACTIONS(863), + [sym_null_expression] = ACTIONS(801), + [aux_sym_boolean_literal_token1] = ACTIONS(803), + [aux_sym_boolean_literal_token2] = ACTIONS(803), + [aux_sym_boolean_literal_token3] = ACTIONS(803), + [aux_sym_boolean_literal_token4] = ACTIONS(803), + [sym__integer_literal] = ACTIONS(805), + [sym_date_literal] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [aux_sym_unary_expression_token1] = ACTIONS(811), + [aux_sym_unary_expression_token2] = ACTIONS(813), + [aux_sym_ambiguous_expression_token1] = ACTIONS(815), + [aux_sym_temp_table_expression_token1] = ACTIONS(817), + [aux_sym_current_changed_expression_token1] = ACTIONS(819), + [aux_sym_locked_expression_token1] = ACTIONS(821), + [aux_sym_dataset_expression_token1] = ACTIONS(823), + [aux_sym_input_expression_token1] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [aux_sym_scope_tuning_token1] = ACTIONS(829), + [aux_sym_if_statement_token1] = ACTIONS(831), + [aux_sym_can_find_expression_token1] = ACTIONS(833), + [aux_sym_accumulate_expression_token1] = ACTIONS(835), + [aux_sym_available_expression_token1] = ACTIONS(837), + [aux_sym_available_expression_token2] = ACTIONS(837), + [sym__namedot] = ACTIONS(839), + [sym__namecolon] = ACTIONS(841), + [sym__namedoublecolon] = ACTIONS(843), + [sym__augmented_assignment] = ACTIONS(845), + [sym__escaped_string] = ACTIONS(847), }, [141] = { [sym_comment] = STATE(141), [sym_include] = STATE(141), - [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), + [sym_function_arguments] = STATE(256), + [aux_sym_qualified_name_repeat1] = STATE(222), + [aux_sym_object_access_repeat1] = STATE(183), + [aux_sym_member_access_repeat1] = STATE(221), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(867), + [aux_sym_type_tuning_token2] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [aux_sym__multiplicative_operator_token1] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_sort_clause_token1] = ACTIONS(67), + [aux_sym_sort_clause_token2] = ACTIONS(67), + [aux_sym_image_phrase_token1] = ACTIONS(73), + [aux_sym_image_phrase_token2] = ACTIONS(67), + [aux_sym_size_phrase_token1] = ACTIONS(73), + [aux_sym_size_phrase_token2] = ACTIONS(67), + [aux_sym_size_phrase_token3] = ACTIONS(67), + [aux_sym_button_tuning_token1] = ACTIONS(67), + [aux_sym_button_tuning_token3] = ACTIONS(67), + [aux_sym_button_tuning_token4] = ACTIONS(67), + [aux_sym_button_tuning_token5] = ACTIONS(67), + [aux_sym_button_tuning_token6] = ACTIONS(67), + [aux_sym_button_tuning_token7] = ACTIONS(67), + [aux_sym_button_tuning_token8] = ACTIONS(67), + [aux_sym_button_tuning_token9] = ACTIONS(67), + [aux_sym_button_tuning_token10] = ACTIONS(67), + [aux_sym_button_tuning_token11] = ACTIONS(67), + [aux_sym_button_tuning_token12] = ACTIONS(67), + [aux_sym_button_tuning_token13] = ACTIONS(67), + [aux_sym_button_tuning_token14] = ACTIONS(67), + [aux_sym_button_tuning_token16] = ACTIONS(67), + [aux_sym_button_tuning_token17] = ACTIONS(67), + [sym__namedot] = ACTIONS(869), + [sym__namecolon] = ACTIONS(871), + [sym__namedoublecolon] = ACTIONS(873), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [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(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), - [anon_sym_COMMA] = 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(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_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_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_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(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_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(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(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_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(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_include] = STATE(145), - [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), + [sym_function_arguments] = STATE(256), + [aux_sym_qualified_name_repeat1] = STATE(222), + [aux_sym_object_access_repeat1] = STATE(183), + [aux_sym_member_access_repeat1] = STATE(221), [anon_sym_COLON] = ACTIONS(87), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(87), - [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(75), [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), + [sym__terminator] = 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_LPAREN] = ACTIONS(867), + [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(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(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), @@ -56785,2804 +57018,3117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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_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_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), + [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__namedot] = ACTIONS(869), + [sym__namecolon] = ACTIONS(871), + [sym__namedoublecolon] = ACTIONS(873), + [sym__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), + }, + [143] = { + [sym_comment] = STATE(143), + [sym_constant] = STATE(1010), + [sym_qualified_name] = STATE(1010), + [sym_boolean_literal] = STATE(1010), + [sym__decimal_literal] = STATE(1007), + [sym_number_literal] = STATE(1010), + [sym_string_literal] = STATE(1010), + [sym_array_literal] = STATE(1010), + [sym_parenthesized_expression] = STATE(1010), + [sym_logical_expression] = STATE(1002), + [sym_unary_expression] = STATE(1010), + [sym_ambiguous_expression] = STATE(1010), + [sym_temp_table_expression] = STATE(1010), + [sym_current_changed_expression] = STATE(1010), + [sym_locked_expression] = STATE(1010), + [sym_dataset_expression] = STATE(1010), + [sym_input_expression] = STATE(1010), + [sym_additive_expression] = STATE(1002), + [sym_multiplicative_expression] = STATE(1002), + [sym_comparison_expression] = STATE(1002), + [sym__binary_expression] = STATE(1010), + [sym_array_access] = STATE(1010), + [sym_include] = STATE(143), + [sym_function_call] = STATE(361), + [sym_ternary_expression] = STATE(1010), + [sym_new_expression] = STATE(361), + [sym_object_access] = STATE(644), + [sym_member_access] = STATE(1010), + [sym_sort_column] = STATE(2592), + [sym_can_find_expression] = STATE(1010), + [sym_accumulate_expression] = STATE(1010), + [sym_available_expression] = STATE(1010), + [sym_index_tuning] = STATE(2349), + [sym__expression] = STATE(215), + [aux_sym_sort_clause_repeat1] = STATE(195), + [aux_sym_index_definition_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(877), + [sym__terminator] = ACTIONS(879), + [sym_null_expression] = ACTIONS(881), + [aux_sym_boolean_literal_token1] = ACTIONS(883), + [aux_sym_boolean_literal_token2] = ACTIONS(883), + [aux_sym_boolean_literal_token3] = ACTIONS(883), + [aux_sym_boolean_literal_token4] = ACTIONS(883), + [sym__integer_literal] = ACTIONS(885), + [sym_date_literal] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [aux_sym_type_tuning_token1] = ACTIONS(891), + [aux_sym_unary_expression_token1] = ACTIONS(893), + [aux_sym_unary_expression_token2] = ACTIONS(895), + [aux_sym_ambiguous_expression_token1] = ACTIONS(897), + [aux_sym_temp_table_expression_token1] = ACTIONS(899), + [aux_sym_current_changed_expression_token1] = ACTIONS(901), + [aux_sym_locked_expression_token1] = ACTIONS(903), + [aux_sym_dataset_expression_token1] = ACTIONS(905), + [aux_sym_input_expression_token1] = ACTIONS(907), + [aux_sym_scope_tuning_token1] = ACTIONS(909), + [aux_sym_if_statement_token1] = ACTIONS(911), + [aux_sym_can_find_expression_token1] = ACTIONS(913), + [aux_sym_accumulate_expression_token1] = ACTIONS(915), + [aux_sym_available_expression_token1] = ACTIONS(917), + [aux_sym_available_expression_token2] = ACTIONS(917), + [aux_sym_field_definition_token1] = ACTIONS(879), + [aux_sym_index_tuning_token1] = ACTIONS(891), + [aux_sym_index_definition_token1] = ACTIONS(879), + [sym__escaped_string] = ACTIONS(919), + }, + [144] = { + [sym_comment] = STATE(144), + [sym_constant] = STATE(1010), + [sym_qualified_name] = STATE(1010), + [sym_boolean_literal] = STATE(1010), + [sym__decimal_literal] = STATE(1007), + [sym_number_literal] = STATE(1010), + [sym_string_literal] = STATE(1010), + [sym_array_literal] = STATE(1010), + [sym_parenthesized_expression] = STATE(1010), + [sym_logical_expression] = STATE(1002), + [sym_unary_expression] = STATE(1010), + [sym_ambiguous_expression] = STATE(1010), + [sym_temp_table_expression] = STATE(1010), + [sym_current_changed_expression] = STATE(1010), + [sym_locked_expression] = STATE(1010), + [sym_dataset_expression] = STATE(1010), + [sym_input_expression] = STATE(1010), + [sym_additive_expression] = STATE(1002), + [sym_multiplicative_expression] = STATE(1002), + [sym_comparison_expression] = STATE(1002), + [sym__binary_expression] = STATE(1010), + [sym_array_access] = STATE(1010), + [sym_include] = STATE(144), + [sym_function_call] = STATE(361), + [sym_ternary_expression] = STATE(1010), + [sym_new_expression] = STATE(361), + [sym_object_access] = STATE(644), + [sym_member_access] = STATE(1010), + [sym_sort_column] = STATE(2592), + [sym_can_find_expression] = STATE(1010), + [sym_accumulate_expression] = STATE(1010), + [sym_available_expression] = STATE(1010), + [sym_index_tuning] = STATE(2349), + [sym__expression] = STATE(215), + [aux_sym_sort_clause_repeat1] = STATE(193), + [aux_sym_index_definition_repeat1] = STATE(1640), + [sym_identifier] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(877), + [sym__terminator] = ACTIONS(921), + [sym_null_expression] = ACTIONS(881), + [aux_sym_boolean_literal_token1] = ACTIONS(883), + [aux_sym_boolean_literal_token2] = ACTIONS(883), + [aux_sym_boolean_literal_token3] = ACTIONS(883), + [aux_sym_boolean_literal_token4] = ACTIONS(883), + [sym__integer_literal] = ACTIONS(885), + [sym_date_literal] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [aux_sym_type_tuning_token1] = ACTIONS(891), + [aux_sym_unary_expression_token1] = ACTIONS(893), + [aux_sym_unary_expression_token2] = ACTIONS(895), + [aux_sym_ambiguous_expression_token1] = ACTIONS(897), + [aux_sym_temp_table_expression_token1] = ACTIONS(899), + [aux_sym_current_changed_expression_token1] = ACTIONS(901), + [aux_sym_locked_expression_token1] = ACTIONS(903), + [aux_sym_dataset_expression_token1] = ACTIONS(905), + [aux_sym_input_expression_token1] = ACTIONS(907), + [aux_sym_scope_tuning_token1] = ACTIONS(909), + [aux_sym_if_statement_token1] = ACTIONS(911), + [aux_sym_can_find_expression_token1] = ACTIONS(913), + [aux_sym_accumulate_expression_token1] = ACTIONS(915), + [aux_sym_available_expression_token1] = ACTIONS(917), + [aux_sym_available_expression_token2] = ACTIONS(917), + [aux_sym_field_definition_token1] = ACTIONS(921), + [aux_sym_index_tuning_token1] = ACTIONS(891), + [aux_sym_index_definition_token1] = ACTIONS(921), + [sym__escaped_string] = ACTIONS(919), + }, + [145] = { + [sym_comment] = STATE(145), + [sym_include] = STATE(145), + [sym_function_arguments] = STATE(228), + [aux_sym_qualified_name_repeat1] = STATE(235), + [aux_sym_object_access_repeat1] = STATE(231), + [aux_sym_member_access_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(73), + [anon_sym_COLON] = ACTIONS(73), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(73), + [sym_null_expression] = ACTIONS(73), + [aux_sym_boolean_literal_token1] = ACTIONS(73), + [aux_sym_boolean_literal_token2] = ACTIONS(73), + [aux_sym_boolean_literal_token3] = ACTIONS(73), + [aux_sym_boolean_literal_token4] = ACTIONS(73), + [sym__integer_literal] = ACTIONS(73), + [sym_date_literal] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(925), + [aux_sym_unary_expression_token1] = ACTIONS(73), + [aux_sym_unary_expression_token2] = ACTIONS(73), + [aux_sym_ambiguous_expression_token1] = ACTIONS(73), + [aux_sym_temp_table_expression_token1] = ACTIONS(73), + [aux_sym_current_changed_expression_token1] = ACTIONS(73), + [aux_sym_locked_expression_token1] = ACTIONS(73), + [aux_sym_dataset_expression_token1] = ACTIONS(73), + [aux_sym_input_expression_token1] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [aux_sym__multiplicative_operator_token1] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_LT_GT] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [aux_sym__comparison_operator_token1] = ACTIONS(73), + [aux_sym__comparison_operator_token2] = ACTIONS(73), + [aux_sym__comparison_operator_token3] = ACTIONS(73), + [aux_sym__comparison_operator_token4] = ACTIONS(73), + [aux_sym__comparison_operator_token5] = ACTIONS(73), + [aux_sym__comparison_operator_token6] = ACTIONS(73), + [aux_sym__comparison_operator_token7] = ACTIONS(73), + [aux_sym__comparison_operator_token8] = ACTIONS(73), + [aux_sym__comparison_operator_token9] = ACTIONS(73), + [aux_sym_scope_tuning_token1] = ACTIONS(73), + [aux_sym_if_statement_token1] = ACTIONS(73), + [aux_sym_on_error_phrase_token1] = ACTIONS(73), + [aux_sym_sort_order_token1] = ACTIONS(73), + [aux_sym_sort_order_token2] = ACTIONS(73), + [aux_sym_sort_order_token3] = ACTIONS(73), + [aux_sym_sort_order_token4] = ACTIONS(73), + [aux_sym_sort_clause_token1] = ACTIONS(73), + [aux_sym_sort_clause_token2] = ACTIONS(73), + [aux_sym_can_find_expression_token1] = ACTIONS(73), + [aux_sym_accumulate_expression_token1] = ACTIONS(73), + [aux_sym_available_expression_token1] = ACTIONS(73), + [aux_sym_available_expression_token2] = ACTIONS(73), + [sym__namedot] = ACTIONS(927), + [sym__namecolon] = ACTIONS(929), + [sym__namedoublecolon] = ACTIONS(931), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), + [sym__escaped_string] = ACTIONS(67), }, [146] = { [sym_comment] = STATE(146), [sym_include] = STATE(146), - [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), + [sym_function_arguments] = STATE(228), + [aux_sym_qualified_name_repeat1] = STATE(235), + [aux_sym_object_access_repeat1] = STATE(231), + [aux_sym_member_access_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [sym_null_expression] = ACTIONS(89), + [aux_sym_boolean_literal_token1] = ACTIONS(89), + [aux_sym_boolean_literal_token2] = ACTIONS(89), + [aux_sym_boolean_literal_token3] = ACTIONS(89), + [aux_sym_boolean_literal_token4] = ACTIONS(89), + [sym__integer_literal] = ACTIONS(89), + [sym_date_literal] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(925), + [aux_sym_unary_expression_token1] = ACTIONS(89), + [aux_sym_unary_expression_token2] = ACTIONS(89), + [aux_sym_ambiguous_expression_token1] = ACTIONS(89), + [aux_sym_temp_table_expression_token1] = ACTIONS(89), + [aux_sym_current_changed_expression_token1] = ACTIONS(89), + [aux_sym_locked_expression_token1] = ACTIONS(89), + [aux_sym_dataset_expression_token1] = ACTIONS(89), + [aux_sym_input_expression_token1] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [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_scope_tuning_token1] = ACTIONS(89), + [aux_sym_if_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_sort_order_token1] = ACTIONS(89), + [aux_sym_sort_order_token2] = ACTIONS(89), + [aux_sym_sort_order_token3] = ACTIONS(89), + [aux_sym_sort_order_token4] = ACTIONS(89), + [aux_sym_sort_clause_token1] = ACTIONS(89), + [aux_sym_sort_clause_token2] = ACTIONS(89), + [aux_sym_can_find_expression_token1] = ACTIONS(89), + [aux_sym_accumulate_expression_token1] = ACTIONS(89), + [aux_sym_available_expression_token1] = ACTIONS(89), + [aux_sym_available_expression_token2] = ACTIONS(89), + [sym__namedot] = ACTIONS(927), + [sym__namecolon] = ACTIONS(929), + [sym__namedoublecolon] = ACTIONS(931), + [sym__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), + [sym__escaped_string] = ACTIONS(87), }, [147] = { [sym_comment] = STATE(147), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(147), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5400), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [148] = { [sym_comment] = STATE(148), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(148), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5460), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(935), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [149] = { [sym_comment] = STATE(149), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(149), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5496), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(937), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [150] = { [sym_comment] = STATE(150), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(150), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5344), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(675), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [151] = { [sym_comment] = STATE(151), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(151), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5499), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2608), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(939), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [152] = { [sym_comment] = STATE(152), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(152), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5321), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(941), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [153] = { [sym_comment] = STATE(153), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(153), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5499), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(939), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [154] = { [sym_comment] = STATE(154), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(154), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5273), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(943), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [155] = { [sym_comment] = STATE(155), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(155), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5455), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(945), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [156] = { [sym_comment] = STATE(156), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(156), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5428), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(947), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [157] = { [sym_comment] = STATE(157), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(157), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5361), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(949), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [158] = { [sym_comment] = STATE(158), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(158), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5474), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(951), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [159] = { [sym_comment] = STATE(159), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(159), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5373), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(953), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [160] = { [sym_comment] = STATE(160), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(160), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5480), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(955), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(161), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5490), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(957), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [162] = { [sym_comment] = STATE(162), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(162), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5476), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(959), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [163] = { [sym_comment] = STATE(163), - [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_constant] = STATE(352), + [sym_qualified_name] = STATE(352), + [sym_boolean_literal] = STATE(352), + [sym__decimal_literal] = STATE(355), + [sym_number_literal] = STATE(352), + [sym_string_literal] = STATE(352), + [sym_array_literal] = STATE(352), + [sym_parenthesized_expression] = STATE(352), + [sym_logical_expression] = STATE(348), + [sym_unary_expression] = STATE(352), + [sym_ambiguous_expression] = STATE(352), + [sym_temp_table_expression] = STATE(352), + [sym_current_changed_expression] = STATE(352), + [sym_locked_expression] = STATE(352), + [sym_dataset_expression] = STATE(352), + [sym_input_expression] = STATE(352), + [sym_additive_expression] = STATE(348), + [sym_multiplicative_expression] = STATE(348), + [sym_comparison_expression] = STATE(348), + [sym__binary_expression] = STATE(352), + [sym_array_access] = STATE(352), [sym_include] = STATE(163), - [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), + [sym_function_call] = STATE(261), + [sym_ternary_expression] = STATE(352), + [sym_new_expression] = STATE(261), + [sym_object_access] = STATE(327), + [sym_member_access] = STATE(352), + [sym_sort_column] = STATE(2427), + [sym_can_find_expression] = STATE(352), + [sym_accumulate_expression] = STATE(352), + [sym_available_expression] = STATE(352), + [sym__expression] = STATE(184), + [aux_sym_sort_clause_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(963), [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(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), + [anon_sym_LBRACE] = ACTIONS(965), + [sym_null_expression] = ACTIONS(967), + [aux_sym_boolean_literal_token1] = ACTIONS(969), + [aux_sym_boolean_literal_token2] = ACTIONS(969), + [aux_sym_boolean_literal_token3] = ACTIONS(969), + [aux_sym_boolean_literal_token4] = ACTIONS(969), + [sym__integer_literal] = ACTIONS(971), + [sym_date_literal] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(975), + [aux_sym_unary_expression_token1] = ACTIONS(977), + [aux_sym_unary_expression_token2] = ACTIONS(979), + [aux_sym_ambiguous_expression_token1] = ACTIONS(981), + [aux_sym_temp_table_expression_token1] = ACTIONS(983), + [aux_sym_current_changed_expression_token1] = ACTIONS(985), + [aux_sym_locked_expression_token1] = ACTIONS(987), + [aux_sym_dataset_expression_token1] = ACTIONS(989), + [aux_sym_input_expression_token1] = ACTIONS(991), + [aux_sym_scope_tuning_token1] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(995), + [aux_sym_on_error_phrase_token1] = ACTIONS(963), + [aux_sym_sort_clause_token1] = ACTIONS(963), + [aux_sym_sort_clause_token2] = ACTIONS(963), + [aux_sym_can_find_expression_token1] = ACTIONS(997), + [aux_sym_accumulate_expression_token1] = ACTIONS(999), + [aux_sym_available_expression_token1] = ACTIONS(1001), + [aux_sym_available_expression_token2] = ACTIONS(1001), + [sym__escaped_string] = ACTIONS(1003), }, [164] = { [sym_comment] = STATE(164), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(164), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5416), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1005), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [165] = { [sym_comment] = STATE(165), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(165), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5366), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1007), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [166] = { [sym_comment] = STATE(166), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(166), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5421), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1009), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [167] = { [sym_comment] = STATE(167), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(167), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5473), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1011), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [168] = { [sym_comment] = STATE(168), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(168), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5469), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1013), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [169] = { [sym_comment] = STATE(169), + [sym_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(169), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5467), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1015), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [170] = { [sym_comment] = STATE(170), - [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(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(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), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(75), + [sym__terminator] = ACTIONS(160), + [aux_sym__block_terminator_token1] = ACTIONS(160), + [anon_sym_RBRACK] = ACTIONS(160), + [aux_sym_type_tuning_token2] = ACTIONS(160), + [aux_sym_unary_expression_token2] = ACTIONS(160), + [aux_sym_variable_tuning_token1] = ACTIONS(160), + [aux_sym_variable_tuning_token2] = ACTIONS(162), + [aux_sym_variable_tuning_token3] = ACTIONS(160), + [aux_sym_variable_tuning_token4] = ACTIONS(160), + [aux_sym_variable_tuning_token5] = ACTIONS(160), + [aux_sym_variable_tuning_token6] = ACTIONS(160), + [aux_sym_variable_tuning_token7] = ACTIONS(160), + [aux_sym_variable_tuning_token8] = ACTIONS(160), + [aux_sym_access_tuning_token1] = ACTIONS(160), + [aux_sym_access_tuning_token2] = ACTIONS(160), + [aux_sym_access_tuning_token3] = ACTIONS(160), + [aux_sym_access_tuning_token4] = ACTIONS(160), + [aux_sym_access_tuning_token5] = ACTIONS(160), + [aux_sym_query_definition_tuning_token1] = ACTIONS(160), + [anon_sym_SCROLLING] = ACTIONS(160), + [aux_sym_query_definition_tuning_token2] = ACTIONS(160), + [aux_sym_while_phrase_token1] = ACTIONS(160), + [aux_sym_repeat_tuning_token1] = ACTIONS(160), + [aux_sym_getter_token1] = ACTIONS(160), + [aux_sym_setter_token1] = ACTIONS(160), + [aux_sym_using_statement_token2] = ACTIONS(160), + [aux_sym_on_error_phrase_token1] = ACTIONS(160), + [aux_sym_stop_after_phrase_token1] = ACTIONS(160), + [aux_sym_do_tuning_token1] = ACTIONS(160), + [aux_sym_sort_clause_token2] = ACTIONS(160), + [aux_sym_field_option_token1] = ACTIONS(160), + [aux_sym_field_option_token2] = ACTIONS(160), + [aux_sym_field_option_token3] = ACTIONS(160), + [aux_sym_field_option_token4] = ACTIONS(160), + [aux_sym_field_option_token5] = ACTIONS(160), + [aux_sym_field_option_token6] = ACTIONS(160), + [aux_sym_field_definition_token1] = ACTIONS(160), + [aux_sym_index_definition_token1] = ACTIONS(160), + [aux_sym_image_phrase_token1] = ACTIONS(162), + [aux_sym_image_phrase_token2] = ACTIONS(160), + [aux_sym_image_phrase_token8] = ACTIONS(160), + [aux_sym_image_phrase_token10] = ACTIONS(162), + [aux_sym_size_phrase_token1] = ACTIONS(162), + [aux_sym_size_phrase_token2] = ACTIONS(160), + [aux_sym_size_phrase_token3] = ACTIONS(160), + [aux_sym_button_tuning_token1] = ACTIONS(160), + [aux_sym_button_tuning_token3] = ACTIONS(160), + [aux_sym_button_tuning_token4] = ACTIONS(160), + [aux_sym_button_tuning_token5] = ACTIONS(160), + [aux_sym_button_tuning_token6] = ACTIONS(160), + [aux_sym_button_tuning_token7] = ACTIONS(160), + [aux_sym_button_tuning_token8] = ACTIONS(160), + [aux_sym_button_tuning_token9] = ACTIONS(160), + [aux_sym_button_tuning_token10] = ACTIONS(160), + [aux_sym_button_tuning_token11] = ACTIONS(160), + [aux_sym_button_tuning_token12] = ACTIONS(160), + [aux_sym_button_tuning_token13] = ACTIONS(160), + [aux_sym_button_tuning_token14] = ACTIONS(160), + [aux_sym_button_tuning_token16] = ACTIONS(160), + [aux_sym_button_tuning_token17] = ACTIONS(160), + [sym__namedot] = ACTIONS(1017), }, [171] = { [sym_comment] = STATE(171), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(171), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5465), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1019), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [172] = { [sym_comment] = STATE(172), - [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_constant] = STATE(352), + [sym_qualified_name] = STATE(352), + [sym_boolean_literal] = STATE(352), + [sym__decimal_literal] = STATE(355), + [sym_number_literal] = STATE(352), + [sym_string_literal] = STATE(352), + [sym_array_literal] = STATE(352), + [sym_parenthesized_expression] = STATE(352), + [sym_logical_expression] = STATE(348), + [sym_unary_expression] = STATE(352), + [sym_ambiguous_expression] = STATE(352), + [sym_temp_table_expression] = STATE(352), + [sym_current_changed_expression] = STATE(352), + [sym_locked_expression] = STATE(352), + [sym_dataset_expression] = STATE(352), + [sym_input_expression] = STATE(352), + [sym_additive_expression] = STATE(348), + [sym_multiplicative_expression] = STATE(348), + [sym_comparison_expression] = STATE(348), + [sym__binary_expression] = STATE(352), + [sym_array_access] = STATE(352), [sym_include] = STATE(172), - [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), + [sym_function_call] = STATE(261), + [sym_ternary_expression] = STATE(352), + [sym_new_expression] = STATE(261), + [sym_object_access] = STATE(327), + [sym_member_access] = STATE(352), + [sym_sort_column] = STATE(2427), + [sym_can_find_expression] = STATE(352), + [sym_accumulate_expression] = STATE(352), + [sym_available_expression] = STATE(352), + [sym__expression] = STATE(184), + [aux_sym_sort_clause_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1024), [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(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), + [anon_sym_LBRACE] = ACTIONS(1026), + [sym_null_expression] = ACTIONS(1029), + [aux_sym_boolean_literal_token1] = ACTIONS(1032), + [aux_sym_boolean_literal_token2] = ACTIONS(1032), + [aux_sym_boolean_literal_token3] = ACTIONS(1032), + [aux_sym_boolean_literal_token4] = ACTIONS(1032), + [sym__integer_literal] = ACTIONS(1035), + [sym_date_literal] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_COMMA] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1041), + [aux_sym_unary_expression_token1] = ACTIONS(1044), + [aux_sym_unary_expression_token2] = ACTIONS(1047), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1050), + [aux_sym_temp_table_expression_token1] = ACTIONS(1053), + [aux_sym_current_changed_expression_token1] = ACTIONS(1056), + [aux_sym_locked_expression_token1] = ACTIONS(1059), + [aux_sym_dataset_expression_token1] = ACTIONS(1062), + [aux_sym_input_expression_token1] = ACTIONS(1065), + [aux_sym_scope_tuning_token1] = ACTIONS(1068), + [aux_sym_if_statement_token1] = ACTIONS(1071), + [aux_sym_on_error_phrase_token1] = ACTIONS(1024), + [aux_sym_sort_clause_token1] = ACTIONS(1024), + [aux_sym_sort_clause_token2] = ACTIONS(1024), + [aux_sym_can_find_expression_token1] = ACTIONS(1074), + [aux_sym_accumulate_expression_token1] = ACTIONS(1077), + [aux_sym_available_expression_token1] = ACTIONS(1080), + [aux_sym_available_expression_token2] = ACTIONS(1080), + [sym__escaped_string] = ACTIONS(1083), }, [173] = { [sym_comment] = STATE(173), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(173), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5246), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1086), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(174), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5461), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1088), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [175] = { [sym_comment] = STATE(175), - [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_constant] = STATE(352), + [sym_qualified_name] = STATE(352), + [sym_boolean_literal] = STATE(352), + [sym__decimal_literal] = STATE(355), + [sym_number_literal] = STATE(352), + [sym_string_literal] = STATE(352), + [sym_array_literal] = STATE(352), + [sym_parenthesized_expression] = STATE(352), + [sym_logical_expression] = STATE(348), + [sym_unary_expression] = STATE(352), + [sym_ambiguous_expression] = STATE(352), + [sym_temp_table_expression] = STATE(352), + [sym_current_changed_expression] = STATE(352), + [sym_locked_expression] = STATE(352), + [sym_dataset_expression] = STATE(352), + [sym_input_expression] = STATE(352), + [sym_additive_expression] = STATE(348), + [sym_multiplicative_expression] = STATE(348), + [sym_comparison_expression] = STATE(348), + [sym__binary_expression] = STATE(352), + [sym_array_access] = STATE(352), [sym_include] = STATE(175), - [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), + [sym_function_call] = STATE(261), + [sym_ternary_expression] = STATE(352), + [sym_new_expression] = STATE(261), + [sym_object_access] = STATE(327), + [sym_member_access] = STATE(352), + [sym_sort_column] = STATE(2427), + [sym_can_find_expression] = STATE(352), + [sym_accumulate_expression] = STATE(352), + [sym_available_expression] = STATE(352), + [sym__expression] = STATE(184), + [aux_sym_sort_clause_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(1090), [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(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), + [anon_sym_LBRACE] = ACTIONS(965), + [sym_null_expression] = ACTIONS(967), + [aux_sym_boolean_literal_token1] = ACTIONS(969), + [aux_sym_boolean_literal_token2] = ACTIONS(969), + [aux_sym_boolean_literal_token3] = ACTIONS(969), + [aux_sym_boolean_literal_token4] = ACTIONS(969), + [sym__integer_literal] = ACTIONS(971), + [sym_date_literal] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(975), + [aux_sym_unary_expression_token1] = ACTIONS(977), + [aux_sym_unary_expression_token2] = ACTIONS(979), + [aux_sym_ambiguous_expression_token1] = ACTIONS(981), + [aux_sym_temp_table_expression_token1] = ACTIONS(983), + [aux_sym_current_changed_expression_token1] = ACTIONS(985), + [aux_sym_locked_expression_token1] = ACTIONS(987), + [aux_sym_dataset_expression_token1] = ACTIONS(989), + [aux_sym_input_expression_token1] = ACTIONS(991), + [aux_sym_scope_tuning_token1] = ACTIONS(993), + [aux_sym_if_statement_token1] = ACTIONS(995), + [aux_sym_on_error_phrase_token1] = ACTIONS(1090), + [aux_sym_sort_clause_token1] = ACTIONS(1090), + [aux_sym_sort_clause_token2] = ACTIONS(1090), + [aux_sym_can_find_expression_token1] = ACTIONS(997), + [aux_sym_accumulate_expression_token1] = ACTIONS(999), + [aux_sym_available_expression_token1] = ACTIONS(1001), + [aux_sym_available_expression_token2] = ACTIONS(1001), + [sym__escaped_string] = ACTIONS(1003), }, [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(176), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5484), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1092), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(177), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5398), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1094), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [178] = { [sym_comment] = STATE(178), - [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(178), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5225), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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(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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1096), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [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_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(179), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(5463), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), [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), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(1098), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), }, [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_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(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), + [aux_sym_object_access_repeat1] = STATE(180), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(95), + [sym__terminator] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_LPAREN] = ACTIONS(95), + [aux_sym_type_tuning_token2] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [aux_sym__multiplicative_operator_token1] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_LT_GT] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(95), + [aux_sym__comparison_operator_token1] = ACTIONS(95), + [aux_sym__comparison_operator_token2] = ACTIONS(95), + [aux_sym__comparison_operator_token3] = ACTIONS(95), + [aux_sym__comparison_operator_token4] = ACTIONS(95), + [aux_sym__comparison_operator_token5] = ACTIONS(95), + [aux_sym__comparison_operator_token6] = ACTIONS(95), + [aux_sym__comparison_operator_token7] = ACTIONS(95), + [aux_sym__comparison_operator_token8] = ACTIONS(95), + [aux_sym__comparison_operator_token9] = ACTIONS(95), + [aux_sym_variable_tuning_token4] = ACTIONS(95), + [aux_sym_function_call_token1] = ACTIONS(95), + [aux_sym_using_statement_token1] = ACTIONS(95), + [aux_sym_on_error_phrase_token1] = ACTIONS(95), + [aux_sym_query_tuning_token1] = ACTIONS(95), + [aux_sym_query_tuning_token2] = ACTIONS(95), + [aux_sym_query_tuning_token3] = ACTIONS(95), + [aux_sym_query_tuning_token4] = ACTIONS(95), + [aux_sym_query_tuning_token5] = ACTIONS(95), + [aux_sym_sort_clause_token1] = ACTIONS(95), + [aux_sym_sort_clause_token2] = ACTIONS(95), + [aux_sym_image_phrase_token1] = ACTIONS(97), + [aux_sym_image_phrase_token2] = ACTIONS(95), + [aux_sym_size_phrase_token1] = ACTIONS(97), + [aux_sym_size_phrase_token2] = ACTIONS(95), + [aux_sym_size_phrase_token3] = ACTIONS(95), + [aux_sym_button_tuning_token1] = ACTIONS(95), + [aux_sym_button_tuning_token3] = ACTIONS(95), + [aux_sym_button_tuning_token4] = ACTIONS(95), + [aux_sym_button_tuning_token5] = ACTIONS(95), + [aux_sym_button_tuning_token6] = ACTIONS(95), + [aux_sym_button_tuning_token7] = ACTIONS(95), + [aux_sym_button_tuning_token8] = ACTIONS(95), + [aux_sym_button_tuning_token9] = ACTIONS(95), + [aux_sym_button_tuning_token10] = ACTIONS(95), + [aux_sym_button_tuning_token11] = ACTIONS(95), + [aux_sym_button_tuning_token12] = ACTIONS(95), + [aux_sym_button_tuning_token13] = ACTIONS(95), + [aux_sym_button_tuning_token14] = ACTIONS(95), + [aux_sym_button_tuning_token16] = ACTIONS(95), + [aux_sym_button_tuning_token17] = ACTIONS(95), + [sym__namecolon] = ACTIONS(1100), + [sym__or_operator] = ACTIONS(95), + [sym__and_operator] = ACTIONS(95), }, [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_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_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), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(75), + [sym__terminator] = ACTIONS(160), + [aux_sym__block_terminator_token1] = ACTIONS(160), + [anon_sym_RBRACK] = ACTIONS(160), + [aux_sym_type_tuning_token2] = ACTIONS(160), + [aux_sym_unary_expression_token2] = ACTIONS(160), + [aux_sym_variable_tuning_token1] = ACTIONS(160), + [aux_sym_variable_tuning_token2] = ACTIONS(162), + [aux_sym_variable_tuning_token3] = ACTIONS(160), + [aux_sym_variable_tuning_token4] = ACTIONS(160), + [aux_sym_variable_tuning_token5] = ACTIONS(160), + [aux_sym_variable_tuning_token6] = ACTIONS(160), + [aux_sym_variable_tuning_token7] = ACTIONS(160), + [aux_sym_variable_tuning_token8] = ACTIONS(160), + [aux_sym_access_tuning_token1] = ACTIONS(160), + [aux_sym_access_tuning_token2] = ACTIONS(160), + [aux_sym_access_tuning_token3] = ACTIONS(160), + [aux_sym_access_tuning_token4] = ACTIONS(160), + [aux_sym_access_tuning_token5] = ACTIONS(160), + [aux_sym_query_definition_tuning_token1] = ACTIONS(160), + [anon_sym_SCROLLING] = ACTIONS(160), + [aux_sym_query_definition_tuning_token2] = ACTIONS(160), + [aux_sym_while_phrase_token1] = ACTIONS(160), + [aux_sym_repeat_tuning_token1] = ACTIONS(160), + [aux_sym_getter_token1] = ACTIONS(160), + [aux_sym_setter_token1] = ACTIONS(160), + [aux_sym_using_statement_token2] = ACTIONS(160), + [aux_sym_on_error_phrase_token1] = ACTIONS(160), + [aux_sym_stop_after_phrase_token1] = ACTIONS(160), + [aux_sym_do_tuning_token1] = ACTIONS(160), + [aux_sym_sort_clause_token2] = ACTIONS(160), + [aux_sym_field_option_token1] = ACTIONS(160), + [aux_sym_field_option_token2] = ACTIONS(160), + [aux_sym_field_option_token3] = ACTIONS(160), + [aux_sym_field_option_token4] = ACTIONS(160), + [aux_sym_field_option_token5] = ACTIONS(160), + [aux_sym_field_option_token6] = ACTIONS(160), + [aux_sym_field_definition_token1] = ACTIONS(160), + [aux_sym_index_definition_token1] = ACTIONS(160), + [aux_sym_image_phrase_token1] = ACTIONS(162), + [aux_sym_image_phrase_token2] = ACTIONS(160), + [aux_sym_image_phrase_token8] = ACTIONS(160), + [aux_sym_image_phrase_token10] = ACTIONS(162), + [aux_sym_size_phrase_token1] = ACTIONS(162), + [aux_sym_size_phrase_token2] = ACTIONS(160), + [aux_sym_size_phrase_token3] = ACTIONS(160), + [aux_sym_button_tuning_token1] = ACTIONS(160), + [aux_sym_button_tuning_token3] = ACTIONS(160), + [aux_sym_button_tuning_token4] = ACTIONS(160), + [aux_sym_button_tuning_token5] = ACTIONS(160), + [aux_sym_button_tuning_token6] = ACTIONS(160), + [aux_sym_button_tuning_token7] = ACTIONS(160), + [aux_sym_button_tuning_token8] = ACTIONS(160), + [aux_sym_button_tuning_token9] = ACTIONS(160), + [aux_sym_button_tuning_token10] = ACTIONS(160), + [aux_sym_button_tuning_token11] = ACTIONS(160), + [aux_sym_button_tuning_token12] = ACTIONS(160), + [aux_sym_button_tuning_token13] = ACTIONS(160), + [aux_sym_button_tuning_token14] = ACTIONS(160), + [aux_sym_button_tuning_token16] = ACTIONS(160), + [aux_sym_button_tuning_token17] = ACTIONS(160), }, [182] = { [sym_comment] = STATE(182), [sym_include] = STATE(182), - [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(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(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), + [aux_sym_object_access_repeat1] = STATE(180), + [anon_sym_COLON] = ACTIONS(91), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(91), + [sym__terminator] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [aux_sym_type_tuning_token2] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [aux_sym__multiplicative_operator_token1] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(91), + [anon_sym_LT_GT] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [anon_sym_GT] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(91), + [aux_sym__comparison_operator_token1] = ACTIONS(91), + [aux_sym__comparison_operator_token2] = ACTIONS(91), + [aux_sym__comparison_operator_token3] = ACTIONS(91), + [aux_sym__comparison_operator_token4] = ACTIONS(91), + [aux_sym__comparison_operator_token5] = ACTIONS(91), + [aux_sym__comparison_operator_token6] = ACTIONS(91), + [aux_sym__comparison_operator_token7] = ACTIONS(91), + [aux_sym__comparison_operator_token8] = ACTIONS(91), + [aux_sym__comparison_operator_token9] = ACTIONS(91), + [aux_sym_variable_tuning_token4] = ACTIONS(91), + [aux_sym_function_call_token1] = ACTIONS(91), + [aux_sym_using_statement_token1] = ACTIONS(91), + [aux_sym_on_error_phrase_token1] = ACTIONS(91), + [aux_sym_query_tuning_token1] = ACTIONS(91), + [aux_sym_query_tuning_token2] = ACTIONS(91), + [aux_sym_query_tuning_token3] = ACTIONS(91), + [aux_sym_query_tuning_token4] = ACTIONS(91), + [aux_sym_query_tuning_token5] = ACTIONS(91), + [aux_sym_sort_clause_token1] = ACTIONS(91), + [aux_sym_sort_clause_token2] = ACTIONS(91), + [aux_sym_image_phrase_token1] = ACTIONS(93), + [aux_sym_image_phrase_token2] = ACTIONS(91), + [aux_sym_size_phrase_token1] = ACTIONS(93), + [aux_sym_size_phrase_token2] = ACTIONS(91), + [aux_sym_size_phrase_token3] = ACTIONS(91), + [aux_sym_button_tuning_token1] = ACTIONS(91), + [aux_sym_button_tuning_token3] = ACTIONS(91), + [aux_sym_button_tuning_token4] = ACTIONS(91), + [aux_sym_button_tuning_token5] = ACTIONS(91), + [aux_sym_button_tuning_token6] = ACTIONS(91), + [aux_sym_button_tuning_token7] = ACTIONS(91), + [aux_sym_button_tuning_token8] = ACTIONS(91), + [aux_sym_button_tuning_token9] = ACTIONS(91), + [aux_sym_button_tuning_token10] = ACTIONS(91), + [aux_sym_button_tuning_token11] = ACTIONS(91), + [aux_sym_button_tuning_token12] = ACTIONS(91), + [aux_sym_button_tuning_token13] = ACTIONS(91), + [aux_sym_button_tuning_token14] = ACTIONS(91), + [aux_sym_button_tuning_token16] = ACTIONS(91), + [aux_sym_button_tuning_token17] = ACTIONS(91), + [sym__namecolon] = ACTIONS(871), + [sym__or_operator] = ACTIONS(91), + [sym__and_operator] = ACTIONS(91), }, [183] = { [sym_comment] = STATE(183), [sym_include] = STATE(183), - [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), + [aux_sym_object_access_repeat1] = STATE(180), + [anon_sym_COLON] = ACTIONS(91), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(91), + [sym__terminator] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [aux_sym_type_tuning_token2] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [aux_sym__multiplicative_operator_token1] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(91), + [anon_sym_LT_GT] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [anon_sym_GT] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(91), + [aux_sym__comparison_operator_token1] = ACTIONS(91), + [aux_sym__comparison_operator_token2] = ACTIONS(91), + [aux_sym__comparison_operator_token3] = ACTIONS(91), + [aux_sym__comparison_operator_token4] = ACTIONS(91), + [aux_sym__comparison_operator_token5] = ACTIONS(91), + [aux_sym__comparison_operator_token6] = ACTIONS(91), + [aux_sym__comparison_operator_token7] = ACTIONS(91), + [aux_sym__comparison_operator_token8] = ACTIONS(91), + [aux_sym__comparison_operator_token9] = ACTIONS(91), + [aux_sym_variable_tuning_token4] = ACTIONS(91), + [aux_sym_function_call_token1] = ACTIONS(91), + [aux_sym_using_statement_token1] = ACTIONS(91), + [aux_sym_on_error_phrase_token1] = ACTIONS(91), + [aux_sym_query_tuning_token1] = ACTIONS(91), + [aux_sym_query_tuning_token2] = ACTIONS(91), + [aux_sym_query_tuning_token3] = ACTIONS(91), + [aux_sym_query_tuning_token4] = ACTIONS(91), + [aux_sym_query_tuning_token5] = ACTIONS(91), + [aux_sym_sort_clause_token1] = ACTIONS(91), + [aux_sym_sort_clause_token2] = ACTIONS(91), + [aux_sym_image_phrase_token1] = ACTIONS(93), + [aux_sym_image_phrase_token2] = ACTIONS(91), + [aux_sym_size_phrase_token1] = ACTIONS(93), + [aux_sym_size_phrase_token2] = ACTIONS(91), + [aux_sym_size_phrase_token3] = ACTIONS(91), + [aux_sym_button_tuning_token1] = ACTIONS(91), + [aux_sym_button_tuning_token3] = ACTIONS(91), + [aux_sym_button_tuning_token4] = ACTIONS(91), + [aux_sym_button_tuning_token5] = ACTIONS(91), + [aux_sym_button_tuning_token6] = ACTIONS(91), + [aux_sym_button_tuning_token7] = ACTIONS(91), + [aux_sym_button_tuning_token8] = ACTIONS(91), + [aux_sym_button_tuning_token9] = ACTIONS(91), + [aux_sym_button_tuning_token10] = ACTIONS(91), + [aux_sym_button_tuning_token11] = ACTIONS(91), + [aux_sym_button_tuning_token12] = ACTIONS(91), + [aux_sym_button_tuning_token13] = ACTIONS(91), + [aux_sym_button_tuning_token14] = ACTIONS(91), + [aux_sym_button_tuning_token16] = ACTIONS(91), + [aux_sym_button_tuning_token17] = ACTIONS(91), + [sym__namecolon] = ACTIONS(871), + [sym__or_operator] = ACTIONS(91), + [sym__and_operator] = ACTIONS(91), }, [184] = { [sym_comment] = STATE(184), + [sym__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(184), - [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), + [sym_sort_order] = STATE(2377), + [sym_identifier] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(1103), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1103), + [aux_sym_boolean_literal_token1] = ACTIONS(1103), + [aux_sym_boolean_literal_token2] = ACTIONS(1103), + [aux_sym_boolean_literal_token3] = ACTIONS(1103), + [aux_sym_boolean_literal_token4] = ACTIONS(1103), + [sym__integer_literal] = ACTIONS(1103), + [sym_date_literal] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1103), + [aux_sym_unary_expression_token1] = ACTIONS(1103), + [aux_sym_unary_expression_token2] = ACTIONS(1103), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1103), + [aux_sym_temp_table_expression_token1] = ACTIONS(1103), + [aux_sym_current_changed_expression_token1] = ACTIONS(1103), + [aux_sym_locked_expression_token1] = ACTIONS(1103), + [aux_sym_dataset_expression_token1] = ACTIONS(1103), + [aux_sym_input_expression_token1] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1103), + [aux_sym_if_statement_token1] = ACTIONS(1103), + [aux_sym_on_error_phrase_token1] = ACTIONS(1103), + [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(1103), + [aux_sym_sort_clause_token2] = ACTIONS(1103), + [aux_sym_can_find_expression_token1] = ACTIONS(1103), + [aux_sym_accumulate_expression_token1] = ACTIONS(1103), + [aux_sym_available_expression_token1] = ACTIONS(1103), + [aux_sym_available_expression_token2] = ACTIONS(1103), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1115), }, [185] = { [sym_comment] = STATE(185), [sym_include] = STATE(185), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(67), - [anon_sym_SLASH_STAR] = ACTIONS(69), + [sym_function_arguments] = STATE(365), + [aux_sym_qualified_name_repeat1] = STATE(373), + [aux_sym_object_access_repeat1] = STATE(368), + [aux_sym_member_access_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(73), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(73), [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), + [anon_sym_STAR] = ACTIONS(73), + [sym__terminator] = ACTIONS(73), + [sym_null_expression] = ACTIONS(73), + [aux_sym_boolean_literal_token1] = ACTIONS(73), + [aux_sym_boolean_literal_token2] = ACTIONS(73), + [aux_sym_boolean_literal_token3] = ACTIONS(73), + [aux_sym_boolean_literal_token4] = ACTIONS(73), + [sym__integer_literal] = ACTIONS(73), + [sym_date_literal] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(1119), + [aux_sym_unary_expression_token1] = ACTIONS(73), + [aux_sym_unary_expression_token2] = ACTIONS(73), + [aux_sym_ambiguous_expression_token1] = ACTIONS(73), + [aux_sym_temp_table_expression_token1] = ACTIONS(73), + [aux_sym_current_changed_expression_token1] = ACTIONS(73), + [aux_sym_locked_expression_token1] = ACTIONS(73), + [aux_sym_dataset_expression_token1] = ACTIONS(73), + [aux_sym_input_expression_token1] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_DASH] = ACTIONS(73), + [aux_sym__multiplicative_operator_token1] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_LT_GT] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [aux_sym__comparison_operator_token1] = ACTIONS(73), + [aux_sym__comparison_operator_token2] = ACTIONS(73), + [aux_sym__comparison_operator_token3] = ACTIONS(73), + [aux_sym__comparison_operator_token4] = ACTIONS(73), + [aux_sym__comparison_operator_token5] = ACTIONS(73), + [aux_sym__comparison_operator_token6] = ACTIONS(73), + [aux_sym__comparison_operator_token7] = ACTIONS(73), + [aux_sym__comparison_operator_token8] = ACTIONS(73), + [aux_sym__comparison_operator_token9] = ACTIONS(73), + [aux_sym_scope_tuning_token1] = ACTIONS(73), + [aux_sym_if_statement_token1] = ACTIONS(73), + [aux_sym_sort_order_token1] = ACTIONS(73), + [aux_sym_sort_order_token2] = ACTIONS(73), + [aux_sym_sort_order_token3] = ACTIONS(73), + [aux_sym_sort_order_token4] = ACTIONS(73), + [aux_sym_can_find_expression_token1] = ACTIONS(73), + [aux_sym_accumulate_expression_token1] = ACTIONS(73), + [aux_sym_available_expression_token1] = ACTIONS(73), + [aux_sym_available_expression_token2] = ACTIONS(73), + [aux_sym_field_definition_token1] = ACTIONS(73), + [aux_sym_index_definition_token1] = ACTIONS(73), + [sym__namedot] = ACTIONS(1121), + [sym__namecolon] = ACTIONS(1123), + [sym__namedoublecolon] = ACTIONS(1125), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), + [sym__escaped_string] = ACTIONS(67), }, [186] = { [sym_comment] = STATE(186), + [sym_constant] = STATE(37), + [sym_qualified_name] = STATE(37), + [sym_boolean_literal] = STATE(37), + [sym__decimal_literal] = STATE(41), + [sym_number_literal] = STATE(37), + [sym_string_literal] = STATE(37), + [sym_array_literal] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_logical_expression] = STATE(52), + [sym_unary_expression] = STATE(37), + [sym_ambiguous_expression] = STATE(37), + [sym_temp_table_expression] = STATE(37), + [sym_current_changed_expression] = STATE(37), + [sym_locked_expression] = STATE(37), + [sym_dataset_expression] = STATE(37), + [sym_input_expression] = STATE(37), + [sym_additive_expression] = STATE(52), + [sym_multiplicative_expression] = STATE(52), + [sym_comparison_expression] = STATE(52), + [sym__binary_expression] = STATE(37), + [sym_array_access] = STATE(37), [sym_include] = STATE(186), - [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), + [sym_argument_mode] = STATE(3932), + [sym__function_argument_with_mode] = STATE(5544), + [sym_function_call_argument] = STATE(6190), + [sym_function_call] = STATE(12), + [sym_ternary_expression] = STATE(37), + [sym_new_expression] = STATE(12), + [sym_object_access] = STATE(13), + [sym_member_access] = STATE(37), + [sym_can_find_expression] = STATE(37), + [sym_accumulate_expression] = STATE(37), + [sym_available_expression] = STATE(37), + [sym__expression] = STATE(2588), + [sym_identifier] = ACTIONS(661), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(663), + [sym_null_expression] = ACTIONS(665), + [aux_sym_boolean_literal_token1] = ACTIONS(667), + [aux_sym_boolean_literal_token2] = ACTIONS(667), + [aux_sym_boolean_literal_token3] = ACTIONS(667), + [aux_sym_boolean_literal_token4] = ACTIONS(667), + [sym__integer_literal] = ACTIONS(669), + [sym_date_literal] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_unary_expression_token1] = ACTIONS(677), + [aux_sym_unary_expression_token2] = ACTIONS(679), + [aux_sym_ambiguous_expression_token1] = ACTIONS(681), + [aux_sym_temp_table_expression_token1] = ACTIONS(683), + [aux_sym_current_changed_expression_token1] = ACTIONS(685), + [aux_sym_locked_expression_token1] = ACTIONS(687), + [aux_sym_dataset_expression_token1] = ACTIONS(689), + [aux_sym_input_expression_token1] = ACTIONS(691), + [aux_sym_scope_tuning_token1] = ACTIONS(693), + [aux_sym_argument_mode_token1] = ACTIONS(695), + [aux_sym_argument_mode_token2] = ACTIONS(695), + [aux_sym_argument_mode_token3] = ACTIONS(695), + [aux_sym_if_statement_token1] = ACTIONS(697), + [aux_sym_can_find_expression_token1] = ACTIONS(699), + [aux_sym_accumulate_expression_token1] = ACTIONS(703), + [aux_sym_available_expression_token1] = ACTIONS(705), + [aux_sym_available_expression_token2] = ACTIONS(705), + [sym__escaped_string] = ACTIONS(707), + }, + [187] = { + [sym_comment] = STATE(187), + [sym_include] = STATE(187), + [sym_function_arguments] = STATE(365), + [aux_sym_qualified_name_repeat1] = STATE(373), + [aux_sym_object_access_repeat1] = STATE(368), + [aux_sym_member_access_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(89), [sym__terminator] = ACTIONS(89), + [sym_null_expression] = ACTIONS(89), + [aux_sym_boolean_literal_token1] = ACTIONS(89), + [aux_sym_boolean_literal_token2] = ACTIONS(89), + [aux_sym_boolean_literal_token3] = ACTIONS(89), + [aux_sym_boolean_literal_token4] = ACTIONS(89), + [sym__integer_literal] = ACTIONS(89), + [sym_date_literal] = 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_LPAREN] = ACTIONS(1119), + [aux_sym_unary_expression_token1] = ACTIONS(89), + [aux_sym_unary_expression_token2] = ACTIONS(89), + [aux_sym_ambiguous_expression_token1] = ACTIONS(89), + [aux_sym_temp_table_expression_token1] = ACTIONS(89), + [aux_sym_current_changed_expression_token1] = ACTIONS(89), + [aux_sym_locked_expression_token1] = ACTIONS(89), + [aux_sym_dataset_expression_token1] = ACTIONS(89), + [aux_sym_input_expression_token1] = 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] = ACTIONS(89), [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] = ACTIONS(89), [anon_sym_GT_EQ] = ACTIONS(89), [aux_sym__comparison_operator_token1] = ACTIONS(89), [aux_sym__comparison_operator_token2] = ACTIONS(89), @@ -59593,1407 +60139,1323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_include] = STATE(187), - [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_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), + [aux_sym_scope_tuning_token1] = ACTIONS(89), + [aux_sym_if_statement_token1] = ACTIONS(89), + [aux_sym_sort_order_token1] = ACTIONS(89), + [aux_sym_sort_order_token2] = ACTIONS(89), + [aux_sym_sort_order_token3] = ACTIONS(89), + [aux_sym_sort_order_token4] = ACTIONS(89), + [aux_sym_can_find_expression_token1] = ACTIONS(89), + [aux_sym_accumulate_expression_token1] = ACTIONS(89), + [aux_sym_available_expression_token1] = ACTIONS(89), + [aux_sym_available_expression_token2] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [sym__namedot] = ACTIONS(1121), + [sym__namecolon] = ACTIONS(1123), + [sym__namedoublecolon] = ACTIONS(1125), + [sym__or_operator] = ACTIONS(87), + [sym__and_operator] = ACTIONS(87), + [sym__escaped_string] = ACTIONS(87), }, [188] = { [sym_comment] = STATE(188), [sym_include] = STATE(188), - [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), + [anon_sym_COLON] = ACTIONS(184), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(75), + [sym__terminator] = ACTIONS(184), + [aux_sym__block_terminator_token1] = ACTIONS(184), + [anon_sym_RBRACK] = ACTIONS(184), + [aux_sym_type_tuning_token2] = ACTIONS(184), + [aux_sym_unary_expression_token2] = ACTIONS(184), + [aux_sym_variable_tuning_token1] = ACTIONS(184), + [aux_sym_variable_tuning_token2] = ACTIONS(186), + [aux_sym_variable_tuning_token3] = ACTIONS(184), + [aux_sym_variable_tuning_token4] = ACTIONS(184), + [aux_sym_variable_tuning_token5] = ACTIONS(184), + [aux_sym_variable_tuning_token6] = ACTIONS(184), + [aux_sym_variable_tuning_token7] = ACTIONS(184), + [aux_sym_variable_tuning_token8] = ACTIONS(184), + [aux_sym_access_tuning_token1] = ACTIONS(184), + [aux_sym_access_tuning_token2] = ACTIONS(184), + [aux_sym_access_tuning_token3] = ACTIONS(184), + [aux_sym_access_tuning_token4] = ACTIONS(184), + [aux_sym_access_tuning_token5] = ACTIONS(184), + [aux_sym_query_definition_tuning_token1] = ACTIONS(184), + [anon_sym_SCROLLING] = ACTIONS(184), + [aux_sym_query_definition_tuning_token2] = ACTIONS(184), + [aux_sym_while_phrase_token1] = ACTIONS(184), + [aux_sym_repeat_tuning_token1] = ACTIONS(184), + [aux_sym_getter_token1] = ACTIONS(184), + [aux_sym_setter_token1] = ACTIONS(184), + [aux_sym_using_statement_token2] = ACTIONS(184), + [aux_sym_on_error_phrase_token1] = ACTIONS(184), + [aux_sym_stop_after_phrase_token1] = ACTIONS(184), + [aux_sym_do_tuning_token1] = ACTIONS(184), + [aux_sym_sort_clause_token2] = ACTIONS(184), + [aux_sym_field_option_token1] = ACTIONS(184), + [aux_sym_field_option_token2] = ACTIONS(184), + [aux_sym_field_option_token3] = ACTIONS(184), + [aux_sym_field_option_token4] = ACTIONS(184), + [aux_sym_field_option_token5] = ACTIONS(184), + [aux_sym_field_option_token6] = ACTIONS(184), + [aux_sym_field_definition_token1] = ACTIONS(184), + [aux_sym_index_definition_token1] = ACTIONS(184), + [aux_sym_image_phrase_token1] = ACTIONS(186), + [aux_sym_image_phrase_token2] = ACTIONS(184), + [aux_sym_image_phrase_token8] = ACTIONS(184), + [aux_sym_image_phrase_token10] = ACTIONS(186), + [aux_sym_size_phrase_token1] = ACTIONS(186), + [aux_sym_size_phrase_token2] = ACTIONS(184), + [aux_sym_size_phrase_token3] = ACTIONS(184), + [aux_sym_button_tuning_token1] = ACTIONS(184), + [aux_sym_button_tuning_token3] = ACTIONS(184), + [aux_sym_button_tuning_token4] = ACTIONS(184), + [aux_sym_button_tuning_token5] = ACTIONS(184), + [aux_sym_button_tuning_token6] = ACTIONS(184), + [aux_sym_button_tuning_token7] = ACTIONS(184), + [aux_sym_button_tuning_token8] = ACTIONS(184), + [aux_sym_button_tuning_token9] = ACTIONS(184), + [aux_sym_button_tuning_token10] = ACTIONS(184), + [aux_sym_button_tuning_token11] = ACTIONS(184), + [aux_sym_button_tuning_token12] = ACTIONS(184), + [aux_sym_button_tuning_token13] = ACTIONS(184), + [aux_sym_button_tuning_token14] = ACTIONS(184), + [aux_sym_button_tuning_token16] = ACTIONS(184), + [aux_sym_button_tuning_token17] = ACTIONS(184), }, [189] = { [sym_comment] = STATE(189), + [sym__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(189), - [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), + [sym_identifier] = ACTIONS(1127), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1127), + [aux_sym_boolean_literal_token1] = ACTIONS(1127), + [aux_sym_boolean_literal_token2] = ACTIONS(1127), + [aux_sym_boolean_literal_token3] = ACTIONS(1127), + [aux_sym_boolean_literal_token4] = ACTIONS(1127), + [sym__integer_literal] = ACTIONS(1127), + [sym_date_literal] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1127), + [aux_sym_unary_expression_token1] = ACTIONS(1127), + [aux_sym_unary_expression_token2] = ACTIONS(1127), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1127), + [aux_sym_temp_table_expression_token1] = ACTIONS(1127), + [aux_sym_current_changed_expression_token1] = ACTIONS(1127), + [aux_sym_locked_expression_token1] = ACTIONS(1127), + [aux_sym_dataset_expression_token1] = ACTIONS(1127), + [aux_sym_input_expression_token1] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1127), + [aux_sym_if_statement_token1] = ACTIONS(1127), + [aux_sym_on_error_phrase_token1] = ACTIONS(1127), + [aux_sym_sort_order_token1] = ACTIONS(1127), + [aux_sym_sort_order_token2] = ACTIONS(1127), + [aux_sym_sort_order_token3] = ACTIONS(1127), + [aux_sym_sort_order_token4] = ACTIONS(1127), + [aux_sym_sort_clause_token1] = ACTIONS(1127), + [aux_sym_sort_clause_token2] = ACTIONS(1127), + [aux_sym_can_find_expression_token1] = ACTIONS(1127), + [aux_sym_accumulate_expression_token1] = ACTIONS(1127), + [aux_sym_available_expression_token1] = ACTIONS(1127), + [aux_sym_available_expression_token2] = ACTIONS(1127), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1129), }, [190] = { [sym_comment] = STATE(190), + [sym__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(190), - [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), + [sym_identifier] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1131), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1131), + [aux_sym_boolean_literal_token1] = ACTIONS(1131), + [aux_sym_boolean_literal_token2] = ACTIONS(1131), + [aux_sym_boolean_literal_token3] = ACTIONS(1131), + [aux_sym_boolean_literal_token4] = ACTIONS(1131), + [sym__integer_literal] = ACTIONS(1131), + [sym_date_literal] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [aux_sym_unary_expression_token1] = ACTIONS(1131), + [aux_sym_unary_expression_token2] = ACTIONS(1131), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1131), + [aux_sym_temp_table_expression_token1] = ACTIONS(1131), + [aux_sym_current_changed_expression_token1] = ACTIONS(1131), + [aux_sym_locked_expression_token1] = ACTIONS(1131), + [aux_sym_dataset_expression_token1] = ACTIONS(1131), + [aux_sym_input_expression_token1] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1131), + [aux_sym_if_statement_token1] = ACTIONS(1131), + [aux_sym_on_error_phrase_token1] = ACTIONS(1131), + [aux_sym_sort_order_token1] = ACTIONS(1131), + [aux_sym_sort_order_token2] = ACTIONS(1131), + [aux_sym_sort_order_token3] = ACTIONS(1131), + [aux_sym_sort_order_token4] = ACTIONS(1131), + [aux_sym_sort_clause_token1] = ACTIONS(1131), + [aux_sym_sort_clause_token2] = ACTIONS(1131), + [aux_sym_can_find_expression_token1] = ACTIONS(1131), + [aux_sym_accumulate_expression_token1] = ACTIONS(1131), + [aux_sym_available_expression_token1] = ACTIONS(1131), + [aux_sym_available_expression_token2] = ACTIONS(1131), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1133), }, [191] = { [sym_comment] = STATE(191), - [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(1111), - [anon_sym_COLON] = ACTIONS(1111), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [sym_function_arguments] = STATE(256), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(867), + [aux_sym_type_tuning_token2] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [aux_sym__multiplicative_operator_token1] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_sort_clause_token1] = ACTIONS(67), + [aux_sym_sort_clause_token2] = ACTIONS(67), + [aux_sym_image_phrase_token1] = ACTIONS(73), + [aux_sym_image_phrase_token2] = ACTIONS(67), + [aux_sym_size_phrase_token1] = ACTIONS(73), + [aux_sym_size_phrase_token2] = ACTIONS(67), + [aux_sym_size_phrase_token3] = ACTIONS(67), + [aux_sym_button_tuning_token1] = ACTIONS(67), + [aux_sym_button_tuning_token3] = ACTIONS(67), + [aux_sym_button_tuning_token4] = ACTIONS(67), + [aux_sym_button_tuning_token5] = ACTIONS(67), + [aux_sym_button_tuning_token6] = ACTIONS(67), + [aux_sym_button_tuning_token7] = ACTIONS(67), + [aux_sym_button_tuning_token8] = ACTIONS(67), + [aux_sym_button_tuning_token9] = ACTIONS(67), + [aux_sym_button_tuning_token10] = ACTIONS(67), + [aux_sym_button_tuning_token11] = ACTIONS(67), + [aux_sym_button_tuning_token12] = ACTIONS(67), + [aux_sym_button_tuning_token13] = ACTIONS(67), + [aux_sym_button_tuning_token14] = ACTIONS(67), + [aux_sym_button_tuning_token16] = ACTIONS(67), + [aux_sym_button_tuning_token17] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), }, [192] = { [sym_comment] = STATE(192), - [sym__logical_operator] = STATE(915), - [sym__additive_operator] = STATE(914), - [sym__multiplicative_operator] = STATE(913), - [sym__comparison_operator] = STATE(912), + [sym_constant] = STATE(1010), + [sym_qualified_name] = STATE(1010), + [sym_boolean_literal] = STATE(1010), + [sym__decimal_literal] = STATE(1007), + [sym_number_literal] = STATE(1010), + [sym_string_literal] = STATE(1010), + [sym_array_literal] = STATE(1010), + [sym_parenthesized_expression] = STATE(1010), + [sym_logical_expression] = STATE(1002), + [sym_unary_expression] = STATE(1010), + [sym_ambiguous_expression] = STATE(1010), + [sym_temp_table_expression] = STATE(1010), + [sym_current_changed_expression] = STATE(1010), + [sym_locked_expression] = STATE(1010), + [sym_dataset_expression] = STATE(1010), + [sym_input_expression] = STATE(1010), + [sym_additive_expression] = STATE(1002), + [sym_multiplicative_expression] = STATE(1002), + [sym_comparison_expression] = STATE(1002), + [sym__binary_expression] = STATE(1010), + [sym_array_access] = STATE(1010), [sym_include] = STATE(192), - [sym_identifier] = ACTIONS(1115), - [anon_sym_COLON] = ACTIONS(1115), + [sym_function_call] = STATE(361), + [sym_ternary_expression] = STATE(1010), + [sym_new_expression] = STATE(361), + [sym_object_access] = STATE(644), + [sym_member_access] = STATE(1010), + [sym_sort_column] = STATE(2592), + [sym_can_find_expression] = STATE(1010), + [sym_accumulate_expression] = STATE(1010), + [sym_available_expression] = STATE(1010), + [sym__expression] = STATE(215), + [aux_sym_sort_clause_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1135), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(1138), + [sym__terminator] = ACTIONS(1024), + [sym_null_expression] = ACTIONS(1141), + [aux_sym_boolean_literal_token1] = ACTIONS(1144), + [aux_sym_boolean_literal_token2] = ACTIONS(1144), + [aux_sym_boolean_literal_token3] = ACTIONS(1144), + [aux_sym_boolean_literal_token4] = ACTIONS(1144), + [sym__integer_literal] = ACTIONS(1147), + [sym_date_literal] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [aux_sym_unary_expression_token1] = ACTIONS(1156), + [aux_sym_unary_expression_token2] = ACTIONS(1159), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1162), + [aux_sym_temp_table_expression_token1] = ACTIONS(1165), + [aux_sym_current_changed_expression_token1] = ACTIONS(1168), + [aux_sym_locked_expression_token1] = ACTIONS(1171), + [aux_sym_dataset_expression_token1] = ACTIONS(1174), + [aux_sym_input_expression_token1] = ACTIONS(1177), + [aux_sym_scope_tuning_token1] = ACTIONS(1180), + [aux_sym_if_statement_token1] = ACTIONS(1183), + [aux_sym_can_find_expression_token1] = ACTIONS(1186), + [aux_sym_accumulate_expression_token1] = ACTIONS(1189), + [aux_sym_available_expression_token1] = ACTIONS(1192), + [aux_sym_available_expression_token2] = ACTIONS(1192), + [aux_sym_field_definition_token1] = ACTIONS(1024), + [aux_sym_index_definition_token1] = ACTIONS(1024), + [sym__escaped_string] = ACTIONS(1195), }, [193] = { [sym_comment] = STATE(193), + [sym_constant] = STATE(1010), + [sym_qualified_name] = STATE(1010), + [sym_boolean_literal] = STATE(1010), + [sym__decimal_literal] = STATE(1007), + [sym_number_literal] = STATE(1010), + [sym_string_literal] = STATE(1010), + [sym_array_literal] = STATE(1010), + [sym_parenthesized_expression] = STATE(1010), + [sym_logical_expression] = STATE(1002), + [sym_unary_expression] = STATE(1010), + [sym_ambiguous_expression] = STATE(1010), + [sym_temp_table_expression] = STATE(1010), + [sym_current_changed_expression] = STATE(1010), + [sym_locked_expression] = STATE(1010), + [sym_dataset_expression] = STATE(1010), + [sym_input_expression] = STATE(1010), + [sym_additive_expression] = STATE(1002), + [sym_multiplicative_expression] = STATE(1002), + [sym_comparison_expression] = STATE(1002), + [sym__binary_expression] = STATE(1010), + [sym_array_access] = STATE(1010), [sym_include] = STATE(193), - [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), + [sym_function_call] = STATE(361), + [sym_ternary_expression] = STATE(1010), + [sym_new_expression] = STATE(361), + [sym_object_access] = STATE(644), + [sym_member_access] = STATE(1010), + [sym_sort_column] = STATE(2592), + [sym_can_find_expression] = STATE(1010), + [sym_accumulate_expression] = STATE(1010), + [sym_available_expression] = STATE(1010), + [sym__expression] = STATE(215), + [aux_sym_sort_clause_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(877), + [sym__terminator] = ACTIONS(1198), + [sym_null_expression] = ACTIONS(881), + [aux_sym_boolean_literal_token1] = ACTIONS(883), + [aux_sym_boolean_literal_token2] = ACTIONS(883), + [aux_sym_boolean_literal_token3] = ACTIONS(883), + [aux_sym_boolean_literal_token4] = ACTIONS(883), + [sym__integer_literal] = ACTIONS(885), + [sym_date_literal] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [aux_sym_unary_expression_token1] = ACTIONS(893), + [aux_sym_unary_expression_token2] = ACTIONS(895), + [aux_sym_ambiguous_expression_token1] = ACTIONS(897), + [aux_sym_temp_table_expression_token1] = ACTIONS(899), + [aux_sym_current_changed_expression_token1] = ACTIONS(901), + [aux_sym_locked_expression_token1] = ACTIONS(903), + [aux_sym_dataset_expression_token1] = ACTIONS(905), + [aux_sym_input_expression_token1] = ACTIONS(907), + [aux_sym_scope_tuning_token1] = ACTIONS(909), + [aux_sym_if_statement_token1] = ACTIONS(911), + [aux_sym_can_find_expression_token1] = ACTIONS(913), + [aux_sym_accumulate_expression_token1] = ACTIONS(915), + [aux_sym_available_expression_token1] = ACTIONS(917), + [aux_sym_available_expression_token2] = ACTIONS(917), + [aux_sym_field_definition_token1] = ACTIONS(1198), + [aux_sym_index_definition_token1] = ACTIONS(1198), + [sym__escaped_string] = ACTIONS(919), }, [194] = { [sym_comment] = STATE(194), - [sym__logical_operator] = STATE(915), - [sym__additive_operator] = STATE(914), - [sym__multiplicative_operator] = STATE(913), - [sym__comparison_operator] = STATE(912), + [sym__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(194), - [sym_identifier] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1200), + [anon_sym_COLON] = ACTIONS(1200), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1200), + [aux_sym_boolean_literal_token1] = ACTIONS(1200), + [aux_sym_boolean_literal_token2] = ACTIONS(1200), + [aux_sym_boolean_literal_token3] = ACTIONS(1200), + [aux_sym_boolean_literal_token4] = ACTIONS(1200), + [sym__integer_literal] = ACTIONS(1200), + [sym_date_literal] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_COMMA] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1200), + [aux_sym_unary_expression_token1] = ACTIONS(1200), + [aux_sym_unary_expression_token2] = ACTIONS(1200), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1200), + [aux_sym_temp_table_expression_token1] = ACTIONS(1200), + [aux_sym_current_changed_expression_token1] = ACTIONS(1200), + [aux_sym_locked_expression_token1] = ACTIONS(1200), + [aux_sym_dataset_expression_token1] = ACTIONS(1200), + [aux_sym_input_expression_token1] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1200), + [aux_sym_if_statement_token1] = ACTIONS(1200), + [aux_sym_on_error_phrase_token1] = ACTIONS(1200), + [aux_sym_sort_order_token1] = ACTIONS(1200), + [aux_sym_sort_order_token2] = ACTIONS(1200), + [aux_sym_sort_order_token3] = ACTIONS(1200), + [aux_sym_sort_order_token4] = ACTIONS(1200), + [aux_sym_sort_clause_token1] = ACTIONS(1200), + [aux_sym_sort_clause_token2] = ACTIONS(1200), + [aux_sym_can_find_expression_token1] = ACTIONS(1200), + [aux_sym_accumulate_expression_token1] = ACTIONS(1200), + [aux_sym_available_expression_token1] = ACTIONS(1200), + [aux_sym_available_expression_token2] = ACTIONS(1200), + [sym__or_operator] = ACTIONS(1202), + [sym__and_operator] = ACTIONS(1202), + [sym__escaped_string] = ACTIONS(1202), }, [195] = { [sym_comment] = STATE(195), - [sym__logical_operator] = STATE(915), - [sym__additive_operator] = STATE(914), - [sym__multiplicative_operator] = STATE(913), - [sym__comparison_operator] = STATE(912), + [sym_constant] = STATE(1010), + [sym_qualified_name] = STATE(1010), + [sym_boolean_literal] = STATE(1010), + [sym__decimal_literal] = STATE(1007), + [sym_number_literal] = STATE(1010), + [sym_string_literal] = STATE(1010), + [sym_array_literal] = STATE(1010), + [sym_parenthesized_expression] = STATE(1010), + [sym_logical_expression] = STATE(1002), + [sym_unary_expression] = STATE(1010), + [sym_ambiguous_expression] = STATE(1010), + [sym_temp_table_expression] = STATE(1010), + [sym_current_changed_expression] = STATE(1010), + [sym_locked_expression] = STATE(1010), + [sym_dataset_expression] = STATE(1010), + [sym_input_expression] = STATE(1010), + [sym_additive_expression] = STATE(1002), + [sym_multiplicative_expression] = STATE(1002), + [sym_comparison_expression] = STATE(1002), + [sym__binary_expression] = STATE(1010), + [sym_array_access] = STATE(1010), [sym_include] = STATE(195), - [sym_identifier] = ACTIONS(232), - [anon_sym_COLON] = ACTIONS(232), + [sym_function_call] = STATE(361), + [sym_ternary_expression] = STATE(1010), + [sym_new_expression] = STATE(361), + [sym_object_access] = STATE(644), + [sym_member_access] = STATE(1010), + [sym_sort_column] = STATE(2592), + [sym_can_find_expression] = STATE(1010), + [sym_accumulate_expression] = STATE(1010), + [sym_available_expression] = STATE(1010), + [sym__expression] = STATE(215), + [aux_sym_sort_clause_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(875), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_LBRACE] = ACTIONS(877), + [sym__terminator] = ACTIONS(921), + [sym_null_expression] = ACTIONS(881), + [aux_sym_boolean_literal_token1] = ACTIONS(883), + [aux_sym_boolean_literal_token2] = ACTIONS(883), + [aux_sym_boolean_literal_token3] = ACTIONS(883), + [aux_sym_boolean_literal_token4] = ACTIONS(883), + [sym__integer_literal] = ACTIONS(885), + [sym_date_literal] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [aux_sym_unary_expression_token1] = ACTIONS(893), + [aux_sym_unary_expression_token2] = ACTIONS(895), + [aux_sym_ambiguous_expression_token1] = ACTIONS(897), + [aux_sym_temp_table_expression_token1] = ACTIONS(899), + [aux_sym_current_changed_expression_token1] = ACTIONS(901), + [aux_sym_locked_expression_token1] = ACTIONS(903), + [aux_sym_dataset_expression_token1] = ACTIONS(905), + [aux_sym_input_expression_token1] = ACTIONS(907), + [aux_sym_scope_tuning_token1] = ACTIONS(909), + [aux_sym_if_statement_token1] = ACTIONS(911), + [aux_sym_can_find_expression_token1] = ACTIONS(913), + [aux_sym_accumulate_expression_token1] = ACTIONS(915), + [aux_sym_available_expression_token1] = ACTIONS(917), + [aux_sym_available_expression_token2] = ACTIONS(917), + [aux_sym_field_definition_token1] = ACTIONS(921), + [aux_sym_index_definition_token1] = ACTIONS(921), + [sym__escaped_string] = ACTIONS(919), }, [196] = { [sym_comment] = STATE(196), - [sym__logical_operator] = STATE(915), - [sym__additive_operator] = STATE(914), - [sym__multiplicative_operator] = STATE(913), - [sym__comparison_operator] = STATE(912), + [sym__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(196), - [sym_identifier] = ACTIONS(1123), - [anon_sym_COLON] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1204), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_SLASH] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), + [sym_null_expression] = ACTIONS(1204), + [aux_sym_boolean_literal_token1] = ACTIONS(1204), + [aux_sym_boolean_literal_token2] = ACTIONS(1204), + [aux_sym_boolean_literal_token3] = ACTIONS(1204), + [aux_sym_boolean_literal_token4] = ACTIONS(1204), + [sym__integer_literal] = ACTIONS(1204), + [sym_date_literal] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [aux_sym_unary_expression_token1] = ACTIONS(1204), + [aux_sym_unary_expression_token2] = ACTIONS(1204), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1204), + [aux_sym_temp_table_expression_token1] = ACTIONS(1204), + [aux_sym_current_changed_expression_token1] = ACTIONS(1204), + [aux_sym_locked_expression_token1] = ACTIONS(1204), + [aux_sym_dataset_expression_token1] = ACTIONS(1204), + [aux_sym_input_expression_token1] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_LT_EQ] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_GT_EQ] = ACTIONS(1204), + [aux_sym__comparison_operator_token1] = ACTIONS(1204), + [aux_sym__comparison_operator_token2] = ACTIONS(1204), + [aux_sym__comparison_operator_token3] = ACTIONS(1204), + [aux_sym__comparison_operator_token4] = ACTIONS(1204), + [aux_sym__comparison_operator_token5] = ACTIONS(1204), + [aux_sym__comparison_operator_token6] = ACTIONS(1204), + [aux_sym__comparison_operator_token7] = ACTIONS(1204), + [aux_sym__comparison_operator_token8] = ACTIONS(1204), + [aux_sym__comparison_operator_token9] = ACTIONS(1204), + [aux_sym_scope_tuning_token1] = ACTIONS(1204), + [aux_sym_if_statement_token1] = ACTIONS(1204), + [aux_sym_on_error_phrase_token1] = ACTIONS(1204), + [aux_sym_sort_order_token1] = ACTIONS(1204), + [aux_sym_sort_order_token2] = ACTIONS(1204), + [aux_sym_sort_order_token3] = ACTIONS(1204), + [aux_sym_sort_order_token4] = ACTIONS(1204), + [aux_sym_sort_clause_token1] = ACTIONS(1204), + [aux_sym_sort_clause_token2] = ACTIONS(1204), + [aux_sym_can_find_expression_token1] = ACTIONS(1204), + [aux_sym_accumulate_expression_token1] = ACTIONS(1204), + [aux_sym_available_expression_token1] = ACTIONS(1204), + [aux_sym_available_expression_token2] = ACTIONS(1204), + [sym__or_operator] = ACTIONS(1206), + [sym__and_operator] = ACTIONS(1206), + [sym__escaped_string] = ACTIONS(1206), }, [197] = { [sym_comment] = STATE(197), - [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(197), - [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), + [sym_identifier] = ACTIONS(1208), + [anon_sym_COLON] = ACTIONS(1208), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1208), + [aux_sym_boolean_literal_token1] = ACTIONS(1208), + [aux_sym_boolean_literal_token2] = ACTIONS(1208), + [aux_sym_boolean_literal_token3] = ACTIONS(1208), + [aux_sym_boolean_literal_token4] = ACTIONS(1208), + [sym__integer_literal] = ACTIONS(1208), + [sym_date_literal] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1208), + [aux_sym_unary_expression_token1] = ACTIONS(1208), + [aux_sym_unary_expression_token2] = ACTIONS(1208), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1208), + [aux_sym_temp_table_expression_token1] = ACTIONS(1208), + [aux_sym_current_changed_expression_token1] = ACTIONS(1208), + [aux_sym_locked_expression_token1] = ACTIONS(1208), + [aux_sym_dataset_expression_token1] = ACTIONS(1208), + [aux_sym_input_expression_token1] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_LT_EQ] = ACTIONS(1208), + [anon_sym_LT_GT] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_GT_EQ] = ACTIONS(1208), + [aux_sym__comparison_operator_token1] = ACTIONS(1208), + [aux_sym__comparison_operator_token2] = ACTIONS(1208), + [aux_sym__comparison_operator_token3] = ACTIONS(1208), + [aux_sym__comparison_operator_token4] = ACTIONS(1208), + [aux_sym__comparison_operator_token5] = ACTIONS(1208), + [aux_sym__comparison_operator_token6] = ACTIONS(1208), + [aux_sym__comparison_operator_token7] = ACTIONS(1208), + [aux_sym__comparison_operator_token8] = ACTIONS(1208), + [aux_sym__comparison_operator_token9] = ACTIONS(1208), + [aux_sym_scope_tuning_token1] = ACTIONS(1208), + [aux_sym_if_statement_token1] = ACTIONS(1208), + [aux_sym_on_error_phrase_token1] = ACTIONS(1208), + [aux_sym_sort_order_token1] = ACTIONS(1208), + [aux_sym_sort_order_token2] = ACTIONS(1208), + [aux_sym_sort_order_token3] = ACTIONS(1208), + [aux_sym_sort_order_token4] = ACTIONS(1208), + [aux_sym_sort_clause_token1] = ACTIONS(1208), + [aux_sym_sort_clause_token2] = ACTIONS(1208), + [aux_sym_can_find_expression_token1] = ACTIONS(1208), + [aux_sym_accumulate_expression_token1] = ACTIONS(1208), + [aux_sym_available_expression_token1] = ACTIONS(1208), + [aux_sym_available_expression_token2] = ACTIONS(1208), + [sym__or_operator] = ACTIONS(1210), + [sym__and_operator] = ACTIONS(1210), + [sym__escaped_string] = ACTIONS(1210), }, [198] = { [sym_comment] = STATE(198), - [sym__logical_operator] = STATE(915), - [sym__additive_operator] = STATE(914), - [sym__multiplicative_operator] = STATE(913), - [sym__comparison_operator] = STATE(912), + [sym__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(198), - [sym_identifier] = ACTIONS(1190), - [anon_sym_COLON] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1212), [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1212), + [aux_sym_boolean_literal_token1] = ACTIONS(1212), + [aux_sym_boolean_literal_token2] = ACTIONS(1212), + [aux_sym_boolean_literal_token3] = ACTIONS(1212), + [aux_sym_boolean_literal_token4] = ACTIONS(1212), + [sym__integer_literal] = ACTIONS(1212), + [sym_date_literal] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [aux_sym_unary_expression_token1] = ACTIONS(1212), + [aux_sym_unary_expression_token2] = ACTIONS(1212), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1212), + [aux_sym_temp_table_expression_token1] = ACTIONS(1212), + [aux_sym_current_changed_expression_token1] = ACTIONS(1212), + [aux_sym_locked_expression_token1] = ACTIONS(1212), + [aux_sym_dataset_expression_token1] = ACTIONS(1212), + [aux_sym_input_expression_token1] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1212), + [aux_sym_if_statement_token1] = ACTIONS(1212), + [aux_sym_on_error_phrase_token1] = ACTIONS(1212), + [aux_sym_sort_order_token1] = ACTIONS(1212), + [aux_sym_sort_order_token2] = ACTIONS(1212), + [aux_sym_sort_order_token3] = ACTIONS(1212), + [aux_sym_sort_order_token4] = ACTIONS(1212), + [aux_sym_sort_clause_token1] = ACTIONS(1212), + [aux_sym_sort_clause_token2] = ACTIONS(1212), + [aux_sym_can_find_expression_token1] = ACTIONS(1212), + [aux_sym_accumulate_expression_token1] = ACTIONS(1212), + [aux_sym_available_expression_token1] = ACTIONS(1212), + [aux_sym_available_expression_token2] = ACTIONS(1212), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1214), }, [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(199), - [sym_identifier] = ACTIONS(1194), - [anon_sym_COLON] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1216), + [anon_sym_COLON] = ACTIONS(1216), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1216), + [aux_sym_boolean_literal_token1] = ACTIONS(1216), + [aux_sym_boolean_literal_token2] = ACTIONS(1216), + [aux_sym_boolean_literal_token3] = ACTIONS(1216), + [aux_sym_boolean_literal_token4] = ACTIONS(1216), + [sym__integer_literal] = ACTIONS(1216), + [sym_date_literal] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1216), + [aux_sym_unary_expression_token1] = ACTIONS(1216), + [aux_sym_unary_expression_token2] = ACTIONS(1216), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1216), + [aux_sym_temp_table_expression_token1] = ACTIONS(1216), + [aux_sym_current_changed_expression_token1] = ACTIONS(1216), + [aux_sym_locked_expression_token1] = ACTIONS(1216), + [aux_sym_dataset_expression_token1] = ACTIONS(1216), + [aux_sym_input_expression_token1] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1216), + [aux_sym_if_statement_token1] = ACTIONS(1216), + [aux_sym_on_error_phrase_token1] = ACTIONS(1216), + [aux_sym_sort_order_token1] = ACTIONS(1216), + [aux_sym_sort_order_token2] = ACTIONS(1216), + [aux_sym_sort_order_token3] = ACTIONS(1216), + [aux_sym_sort_order_token4] = ACTIONS(1216), + [aux_sym_sort_clause_token1] = ACTIONS(1216), + [aux_sym_sort_clause_token2] = ACTIONS(1216), + [aux_sym_can_find_expression_token1] = ACTIONS(1216), + [aux_sym_accumulate_expression_token1] = ACTIONS(1216), + [aux_sym_available_expression_token1] = ACTIONS(1216), + [aux_sym_available_expression_token2] = ACTIONS(1216), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1218), }, [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), + [aux_sym_object_access_repeat1] = STATE(180), + [anon_sym_COLON] = ACTIONS(91), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(91), + [sym__terminator] = ACTIONS(91), + [anon_sym_COMMA] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(91), + [aux_sym_type_tuning_token2] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(91), + [anon_sym_DASH] = ACTIONS(91), + [aux_sym__multiplicative_operator_token1] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(91), + [anon_sym_LT_GT] = ACTIONS(91), + [anon_sym_EQ] = ACTIONS(91), + [anon_sym_GT] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(91), + [aux_sym__comparison_operator_token1] = ACTIONS(91), + [aux_sym__comparison_operator_token2] = ACTIONS(91), + [aux_sym__comparison_operator_token3] = ACTIONS(91), + [aux_sym__comparison_operator_token4] = ACTIONS(91), + [aux_sym__comparison_operator_token5] = ACTIONS(91), + [aux_sym__comparison_operator_token6] = ACTIONS(91), + [aux_sym__comparison_operator_token7] = ACTIONS(91), + [aux_sym__comparison_operator_token8] = ACTIONS(91), + [aux_sym__comparison_operator_token9] = ACTIONS(91), + [aux_sym_variable_tuning_token4] = ACTIONS(91), + [aux_sym_function_call_token1] = ACTIONS(91), + [aux_sym_using_statement_token1] = ACTIONS(91), + [aux_sym_on_error_phrase_token1] = ACTIONS(91), + [aux_sym_query_tuning_token1] = ACTIONS(91), + [aux_sym_query_tuning_token2] = ACTIONS(91), + [aux_sym_query_tuning_token3] = ACTIONS(91), + [aux_sym_query_tuning_token4] = ACTIONS(91), + [aux_sym_query_tuning_token5] = ACTIONS(91), + [aux_sym_sort_clause_token1] = ACTIONS(91), + [aux_sym_sort_clause_token2] = ACTIONS(91), + [aux_sym_image_phrase_token1] = ACTIONS(93), + [aux_sym_image_phrase_token2] = ACTIONS(91), + [aux_sym_size_phrase_token1] = ACTIONS(93), + [aux_sym_size_phrase_token2] = ACTIONS(91), + [aux_sym_size_phrase_token3] = ACTIONS(91), + [aux_sym_button_tuning_token1] = ACTIONS(91), + [aux_sym_button_tuning_token3] = ACTIONS(91), + [aux_sym_button_tuning_token4] = ACTIONS(91), + [aux_sym_button_tuning_token5] = ACTIONS(91), + [aux_sym_button_tuning_token6] = ACTIONS(91), + [aux_sym_button_tuning_token7] = ACTIONS(91), + [aux_sym_button_tuning_token8] = ACTIONS(91), + [aux_sym_button_tuning_token9] = ACTIONS(91), + [aux_sym_button_tuning_token10] = ACTIONS(91), + [aux_sym_button_tuning_token11] = ACTIONS(91), + [aux_sym_button_tuning_token12] = ACTIONS(91), + [aux_sym_button_tuning_token13] = ACTIONS(91), + [aux_sym_button_tuning_token14] = ACTIONS(91), + [aux_sym_button_tuning_token16] = ACTIONS(91), + [aux_sym_button_tuning_token17] = ACTIONS(91), + [sym__namecolon] = ACTIONS(871), + [sym__or_operator] = ACTIONS(91), + [sym__and_operator] = ACTIONS(91), }, [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), + [anon_sym_COLON] = ACTIONS(106), + [anon_sym_SLASH_SLASH] = ACTIONS(69), + [anon_sym_SLASH_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_STAR] = ACTIONS(106), + [sym__terminator] = ACTIONS(106), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_COMMA] = ACTIONS(106), + [anon_sym_LPAREN] = ACTIONS(106), + [aux_sym_type_tuning_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_variable_tuning_token4] = ACTIONS(106), + [aux_sym_function_call_token1] = ACTIONS(106), + [aux_sym_using_statement_token1] = ACTIONS(106), + [aux_sym_on_error_phrase_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_sort_clause_token1] = ACTIONS(106), + [aux_sym_sort_clause_token2] = ACTIONS(106), + [aux_sym_image_phrase_token1] = ACTIONS(108), + [aux_sym_image_phrase_token2] = ACTIONS(106), + [aux_sym_size_phrase_token1] = ACTIONS(108), + [aux_sym_size_phrase_token2] = ACTIONS(106), + [aux_sym_size_phrase_token3] = ACTIONS(106), + [aux_sym_button_tuning_token1] = ACTIONS(106), + [aux_sym_button_tuning_token3] = ACTIONS(106), + [aux_sym_button_tuning_token4] = ACTIONS(106), + [aux_sym_button_tuning_token5] = ACTIONS(106), + [aux_sym_button_tuning_token6] = ACTIONS(106), + [aux_sym_button_tuning_token7] = ACTIONS(106), + [aux_sym_button_tuning_token8] = ACTIONS(106), + [aux_sym_button_tuning_token9] = ACTIONS(106), + [aux_sym_button_tuning_token10] = ACTIONS(106), + [aux_sym_button_tuning_token11] = ACTIONS(106), + [aux_sym_button_tuning_token12] = ACTIONS(106), + [aux_sym_button_tuning_token13] = ACTIONS(106), + [aux_sym_button_tuning_token14] = ACTIONS(106), + [aux_sym_button_tuning_token16] = ACTIONS(106), + [aux_sym_button_tuning_token17] = ACTIONS(106), + [sym__namecolon] = ACTIONS(106), + [sym__or_operator] = ACTIONS(106), + [sym__and_operator] = ACTIONS(106), }, [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(202), - [sym_identifier] = ACTIONS(1206), - [anon_sym_COLON] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(1220), [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1220), + [aux_sym_boolean_literal_token1] = ACTIONS(1220), + [aux_sym_boolean_literal_token2] = ACTIONS(1220), + [aux_sym_boolean_literal_token3] = ACTIONS(1220), + [aux_sym_boolean_literal_token4] = ACTIONS(1220), + [sym__integer_literal] = ACTIONS(1220), + [sym_date_literal] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1220), + [aux_sym_unary_expression_token1] = ACTIONS(1220), + [aux_sym_unary_expression_token2] = ACTIONS(1220), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1220), + [aux_sym_temp_table_expression_token1] = ACTIONS(1220), + [aux_sym_current_changed_expression_token1] = ACTIONS(1220), + [aux_sym_locked_expression_token1] = ACTIONS(1220), + [aux_sym_dataset_expression_token1] = ACTIONS(1220), + [aux_sym_input_expression_token1] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1220), + [aux_sym_if_statement_token1] = ACTIONS(1220), + [aux_sym_on_error_phrase_token1] = ACTIONS(1220), + [aux_sym_sort_order_token1] = ACTIONS(1220), + [aux_sym_sort_order_token2] = ACTIONS(1220), + [aux_sym_sort_order_token3] = ACTIONS(1220), + [aux_sym_sort_order_token4] = ACTIONS(1220), + [aux_sym_sort_clause_token1] = ACTIONS(1220), + [aux_sym_sort_clause_token2] = ACTIONS(1220), + [aux_sym_can_find_expression_token1] = ACTIONS(1220), + [aux_sym_accumulate_expression_token1] = ACTIONS(1220), + [aux_sym_available_expression_token1] = ACTIONS(1220), + [aux_sym_available_expression_token2] = ACTIONS(1220), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1222), }, [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [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), + [sym_identifier] = ACTIONS(1224), + [anon_sym_COLON] = ACTIONS(1224), [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1224), + [aux_sym_boolean_literal_token1] = ACTIONS(1224), + [aux_sym_boolean_literal_token2] = ACTIONS(1224), + [aux_sym_boolean_literal_token3] = ACTIONS(1224), + [aux_sym_boolean_literal_token4] = ACTIONS(1224), + [sym__integer_literal] = ACTIONS(1224), + [sym_date_literal] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1224), + [aux_sym_unary_expression_token1] = ACTIONS(1224), + [aux_sym_unary_expression_token2] = ACTIONS(1224), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1224), + [aux_sym_temp_table_expression_token1] = ACTIONS(1224), + [aux_sym_current_changed_expression_token1] = ACTIONS(1224), + [aux_sym_locked_expression_token1] = ACTIONS(1224), + [aux_sym_dataset_expression_token1] = ACTIONS(1224), + [aux_sym_input_expression_token1] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1224), + [aux_sym_if_statement_token1] = ACTIONS(1224), + [aux_sym_on_error_phrase_token1] = ACTIONS(1224), + [aux_sym_sort_order_token1] = ACTIONS(1224), + [aux_sym_sort_order_token2] = ACTIONS(1224), + [aux_sym_sort_order_token3] = ACTIONS(1224), + [aux_sym_sort_order_token4] = ACTIONS(1224), + [aux_sym_sort_clause_token1] = ACTIONS(1224), + [aux_sym_sort_clause_token2] = ACTIONS(1224), + [aux_sym_can_find_expression_token1] = ACTIONS(1224), + [aux_sym_accumulate_expression_token1] = ACTIONS(1224), + [aux_sym_available_expression_token1] = ACTIONS(1224), + [aux_sym_available_expression_token2] = ACTIONS(1224), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1226), }, [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(204), - [sym_identifier] = ACTIONS(1210), - [anon_sym_COLON] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1228), [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1228), + [aux_sym_boolean_literal_token1] = ACTIONS(1228), + [aux_sym_boolean_literal_token2] = ACTIONS(1228), + [aux_sym_boolean_literal_token3] = ACTIONS(1228), + [aux_sym_boolean_literal_token4] = ACTIONS(1228), + [sym__integer_literal] = ACTIONS(1228), + [sym_date_literal] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1228), + [aux_sym_unary_expression_token1] = ACTIONS(1228), + [aux_sym_unary_expression_token2] = ACTIONS(1228), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1228), + [aux_sym_temp_table_expression_token1] = ACTIONS(1228), + [aux_sym_current_changed_expression_token1] = ACTIONS(1228), + [aux_sym_locked_expression_token1] = ACTIONS(1228), + [aux_sym_dataset_expression_token1] = ACTIONS(1228), + [aux_sym_input_expression_token1] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1228), + [aux_sym_if_statement_token1] = ACTIONS(1228), + [aux_sym_on_error_phrase_token1] = ACTIONS(1228), + [aux_sym_sort_order_token1] = ACTIONS(1228), + [aux_sym_sort_order_token2] = ACTIONS(1228), + [aux_sym_sort_order_token3] = ACTIONS(1228), + [aux_sym_sort_order_token4] = ACTIONS(1228), + [aux_sym_sort_clause_token1] = ACTIONS(1228), + [aux_sym_sort_clause_token2] = ACTIONS(1228), + [aux_sym_can_find_expression_token1] = ACTIONS(1228), + [aux_sym_accumulate_expression_token1] = ACTIONS(1228), + [aux_sym_available_expression_token1] = ACTIONS(1228), + [aux_sym_available_expression_token2] = ACTIONS(1228), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1230), }, [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [sym_include] = STATE(205), - [sym_identifier] = ACTIONS(1214), - [anon_sym_COLON] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1232), + [anon_sym_COLON] = ACTIONS(1232), [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(1232), + [aux_sym_boolean_literal_token1] = ACTIONS(1232), + [aux_sym_boolean_literal_token2] = ACTIONS(1232), + [aux_sym_boolean_literal_token3] = ACTIONS(1232), + [aux_sym_boolean_literal_token4] = ACTIONS(1232), + [sym__integer_literal] = ACTIONS(1232), + [sym_date_literal] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [aux_sym_unary_expression_token1] = ACTIONS(1232), + [aux_sym_unary_expression_token2] = ACTIONS(1232), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1232), + [aux_sym_temp_table_expression_token1] = ACTIONS(1232), + [aux_sym_current_changed_expression_token1] = ACTIONS(1232), + [aux_sym_locked_expression_token1] = ACTIONS(1232), + [aux_sym_dataset_expression_token1] = ACTIONS(1232), + [aux_sym_input_expression_token1] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(1232), + [aux_sym_if_statement_token1] = ACTIONS(1232), + [aux_sym_on_error_phrase_token1] = ACTIONS(1232), + [aux_sym_sort_order_token1] = ACTIONS(1232), + [aux_sym_sort_order_token2] = ACTIONS(1232), + [aux_sym_sort_order_token3] = ACTIONS(1232), + [aux_sym_sort_order_token4] = ACTIONS(1232), + [aux_sym_sort_clause_token1] = ACTIONS(1232), + [aux_sym_sort_clause_token2] = ACTIONS(1232), + [aux_sym_can_find_expression_token1] = ACTIONS(1232), + [aux_sym_accumulate_expression_token1] = ACTIONS(1232), + [aux_sym_available_expression_token1] = ACTIONS(1232), + [aux_sym_available_expression_token2] = ACTIONS(1232), + [sym__or_operator] = ACTIONS(1113), + [sym__and_operator] = ACTIONS(1113), + [sym__escaped_string] = ACTIONS(1234), }, [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__logical_operator] = STATE(901), + [sym__additive_operator] = STATE(899), + [sym__multiplicative_operator] = STATE(475), + [sym__comparison_operator] = STATE(881), [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), + [sym_identifier] = ACTIONS(206), + [anon_sym_COLON] = ACTIONS(206), [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), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_STAR] = ACTIONS(1105), + [sym_null_expression] = ACTIONS(206), + [aux_sym_boolean_literal_token1] = ACTIONS(206), + [aux_sym_boolean_literal_token2] = ACTIONS(206), + [aux_sym_boolean_literal_token3] = ACTIONS(206), + [aux_sym_boolean_literal_token4] = ACTIONS(206), + [sym__integer_literal] = ACTIONS(206), + [sym_date_literal] = ACTIONS(206), + [anon_sym_LBRACK] = ACTIONS(206), + [anon_sym_COMMA] = ACTIONS(206), + [anon_sym_LPAREN] = ACTIONS(206), + [aux_sym_unary_expression_token1] = ACTIONS(206), + [aux_sym_unary_expression_token2] = ACTIONS(206), + [aux_sym_ambiguous_expression_token1] = ACTIONS(206), + [aux_sym_temp_table_expression_token1] = ACTIONS(206), + [aux_sym_current_changed_expression_token1] = ACTIONS(206), + [aux_sym_locked_expression_token1] = ACTIONS(206), + [aux_sym_dataset_expression_token1] = ACTIONS(206), + [aux_sym_input_expression_token1] = ACTIONS(206), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1105), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1109), + [anon_sym_LT_GT] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1109), + [aux_sym__comparison_operator_token1] = ACTIONS(1109), + [aux_sym__comparison_operator_token2] = ACTIONS(1109), + [aux_sym__comparison_operator_token3] = ACTIONS(1109), + [aux_sym__comparison_operator_token4] = ACTIONS(1109), + [aux_sym__comparison_operator_token5] = ACTIONS(1109), + [aux_sym__comparison_operator_token6] = ACTIONS(1109), + [aux_sym__comparison_operator_token7] = ACTIONS(1109), + [aux_sym__comparison_operator_token8] = ACTIONS(1109), + [aux_sym__comparison_operator_token9] = ACTIONS(1109), + [aux_sym_scope_tuning_token1] = ACTIONS(206), + [aux_sym_if_statement_token1] = ACTIONS(206), + [aux_sym_on_error_phrase_token1] = ACTIONS(206), + [aux_sym_sort_order_token1] = ACTIONS(206), + [aux_sym_sort_order_token2] = ACTIONS(206), + [aux_sym_sort_order_token3] = ACTIONS(206), + [aux_sym_sort_order_token4] = ACTIONS(206), + [aux_sym_sort_clause_token1] = ACTIONS(206), + [aux_sym_sort_clause_token2] = ACTIONS(206), + [aux_sym_can_find_expression_token1] = ACTIONS(206), + [aux_sym_accumulate_expression_token1] = ACTIONS(206), + [aux_sym_available_expression_token1] = ACTIONS(206), + [aux_sym_available_expression_token2] = ACTIONS(206), + [sym__or_operator] = ACTIONS(204), + [sym__and_operator] = ACTIONS(204), + [sym__escaped_string] = ACTIONS(204), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(857), 1, - sym__namedoublecolon, - STATE(222), 1, - aux_sym_member_access_repeat1, + ACTIONS(867), 1, + anon_sym_LPAREN, + STATE(256), 1, + sym_function_arguments, STATE(207), 2, sym_comment, sym_include, - ACTIONS(121), 5, + ACTIONS(89), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(119), 52, + ACTIONS(87), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61046,83 +61508,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [81] = 33, + [81] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(871), 1, + sym__namecolon, + STATE(182), 1, + aux_sym_object_access_repeat1, + STATE(208), 2, + sym_comment, + sym_include, + ACTIONS(89), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(87), 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, + [162] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1220), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(1223), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(1232), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(1235), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(1238), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(1241), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(1244), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(1247), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1250), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1253), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1256), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(1259), 1, - aux_sym_dataset_expression_token1, ACTIONS(1262), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(1265), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(1271), 1, + ACTIONS(1270), 1, aux_sym_if_statement_token2, - ACTIONS(1273), 1, + ACTIONS(1272), 1, aux_sym_case_conditon_token1, - ACTIONS(1276), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(1279), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1285), 1, + ACTIONS(1280), 1, sym__escaped_string, + STATE(218), 1, + aux_sym_case_when_branch_repeat1, STATE(1027), 1, sym__expression, - STATE(1115), 1, + STATE(1106), 1, sym_object_access, STATE(1135), 1, sym__decimal_literal, - STATE(2863), 1, + STATE(2693), 1, sym_case_conditon, - ACTIONS(1226), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(1282), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - STATE(208), 3, + STATE(209), 2, sym_comment, sym_include, - aux_sym_case_when_branch_repeat1, - ACTIONS(1229), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61144,24 +61680,24 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [212] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(209), 2, + STATE(210), 2, sym_comment, sym_include, - ACTIONS(140), 6, + ACTIONS(112), 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), 53, + ACTIONS(110), 53, sym__namecolon, sym__or_operator, sym__and_operator, @@ -61215,224 +61751,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [289] = 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(1322), 1, - aux_sym_if_statement_token2, - 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, - STATE(208), 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(210), 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, - [422] = 34, - ACTIONS(3), 1, + [372] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, - sym_identifier, - ACTIONS(1290), 1, + ACTIONS(75), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(1336), 1, - sym__namedot, - STATE(212), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 5, + ACTIONS(142), 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(108), 52, + ACTIONS(140), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61485,27 +61822,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [634] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [449] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(855), 1, - sym__namecolon, - STATE(186), 1, - aux_sym_object_access_repeat1, - STATE(213), 2, + STATE(212), 2, sym_comment, sym_include, - ACTIONS(71), 5, + ACTIONS(130), 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(65), 52, + ACTIONS(128), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61558,27 +61893,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [715] = 8, - ACTIONS(67), 1, + [526] = 34, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1236), 1, + sym_identifier, + ACTIONS(1238), 1, + anon_sym_LBRACE, + ACTIONS(1244), 1, + sym__integer_literal, + ACTIONS(1246), 1, + anon_sym_LBRACK, + ACTIONS(1248), 1, + anon_sym_LPAREN, + ACTIONS(1250), 1, + aux_sym_unary_expression_token1, + ACTIONS(1252), 1, + aux_sym_unary_expression_token2, + ACTIONS(1254), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1256), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1258), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1260), 1, + aux_sym_locked_expression_token1, + ACTIONS(1262), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1264), 1, + aux_sym_input_expression_token1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, + aux_sym_if_statement_token1, + ACTIONS(1272), 1, + aux_sym_case_conditon_token1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(1280), 1, + sym__escaped_string, + ACTIONS(1282), 1, + aux_sym_if_statement_token2, + STATE(209), 1, + aux_sym_case_when_branch_repeat1, + STATE(1027), 1, + sym__expression, + STATE(1106), 1, + sym_object_access, + STATE(1135), 1, + sym__decimal_literal, + STATE(2693), 1, + sym_case_conditon, + ACTIONS(1240), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1278), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(213), 2, + sym_comment, + sym_include, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1127), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1152), 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, + [659] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(855), 1, + ACTIONS(871), 1, sym__namecolon, - STATE(186), 1, + STATE(182), 1, aux_sym_object_access_repeat1, STATE(214), 2, sym_comment, sym_include, - ACTIONS(87), 5, + ACTIONS(73), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(85), 52, + ACTIONS(67), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61631,40 +62065,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [796] = 8, - ACTIONS(67), 1, + [740] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(853), 1, - sym__namedot, - STATE(212), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(1115), 1, + sym__escaped_string, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + STATE(2542), 1, + sym_sort_order, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, STATE(215), 2, sym_comment, sym_include, - ACTIONS(106), 5, + ACTIONS(1105), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(104), 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(1284), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(1109), 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, @@ -61675,54 +62116,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_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, - [877] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1103), 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, + [835] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, + ACTIONS(869), 1, + sym__namedot, + STATE(222), 1, + aux_sym_qualified_name_repeat1, STATE(216), 2, sym_comment, sym_include, - ACTIONS(117), 6, + ACTIONS(138), 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(115), 53, - sym__namecolon, + ACTIONS(136), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61775,25 +62218,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [954] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [916] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(217), 2, + ACTIONS(1286), 1, + sym__namedoublecolon, + STATE(217), 3, sym_comment, sym_include, - ACTIONS(144), 6, + aux_sym_member_access_repeat1, + ACTIONS(116), 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(142), 53, - sym__namecolon, + ACTIONS(114), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61846,107 +62290,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1031] = 15, + [995] = 33, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1096), 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, - STATE(2519), 1, - sym_sort_order, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(218), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - 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, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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(1084), 28, - anon_sym_LBRACE, + ACTIONS(1289), 1, sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(1292), 1, + anon_sym_LBRACE, + ACTIONS(1301), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(1304), 1, anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_LPAREN, + ACTIONS(1310), 1, aux_sym_unary_expression_token1, + ACTIONS(1313), 1, aux_sym_unary_expression_token2, + ACTIONS(1316), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(1319), 1, aux_sym_temp_table_expression_token1, + ACTIONS(1322), 1, aux_sym_current_changed_expression_token1, + ACTIONS(1325), 1, aux_sym_locked_expression_token1, + ACTIONS(1328), 1, aux_sym_dataset_expression_token1, + ACTIONS(1331), 1, aux_sym_input_expression_token1, + ACTIONS(1334), 1, aux_sym_scope_tuning_token1, + ACTIONS(1337), 1, aux_sym_if_statement_token1, + ACTIONS(1340), 1, + aux_sym_if_statement_token2, + ACTIONS(1342), 1, + aux_sym_case_conditon_token1, + ACTIONS(1345), 1, aux_sym_can_find_expression_token1, + ACTIONS(1348), 1, aux_sym_accumulate_expression_token1, + ACTIONS(1354), 1, + sym__escaped_string, + STATE(1027), 1, + sym__expression, + STATE(1106), 1, + sym_object_access, + STATE(1135), 1, + sym__decimal_literal, + STATE(2693), 1, + sym_case_conditon, + ACTIONS(1295), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1351), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + STATE(218), 3, + sym_comment, + sym_include, + aux_sym_case_when_branch_repeat1, + ACTIONS(1298), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1127), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1152), 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, [1126] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(851), 1, - anon_sym_LPAREN, - STATE(226), 1, - sym_function_arguments, + ACTIONS(869), 1, + sym__namedot, + STATE(222), 1, + aux_sym_qualified_name_repeat1, STATE(219), 2, sym_comment, sym_include, - ACTIONS(87), 5, + ACTIONS(104), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(85), 52, + ACTIONS(102), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61999,27 +62461,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1207] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [1207] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(853), 1, + ACTIONS(1357), 1, sym__namedot, - STATE(215), 1, - aux_sym_qualified_name_repeat1, - STATE(220), 2, + STATE(220), 3, sym_comment, sym_include, - ACTIONS(136), 5, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(134), 52, + ACTIONS(121), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -62072,27 +62533,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1288] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [1286] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(853), 1, - sym__namedot, - STATE(215), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(873), 1, + sym__namedoublecolon, + STATE(217), 1, + aux_sym_member_access_repeat1, STATE(221), 2, sym_comment, sym_include, - ACTIONS(125), 5, + ACTIONS(146), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(123), 52, + ACTIONS(144), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -62145,26 +62606,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1369] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [1367] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1341), 1, - sym__namedoublecolon, - STATE(222), 3, + ACTIONS(869), 1, + sym__namedot, + STATE(220), 1, + aux_sym_qualified_name_repeat1, + STATE(222), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 5, + ACTIONS(134), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(127), 52, + ACTIONS(132), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -62217,106 +62679,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1448] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(909), 1, - sym__namedot, - STATE(233), 1, - aux_sym_qualified_name_repeat1, - STATE(223), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(106), 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, - [1526] = 13, + [1448] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1196), 1, + ACTIONS(1226), 1, sym__escaped_string, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(224), 2, + STATE(223), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -62332,7 +62723,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(1194), 32, + ACTIONS(1224), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -62365,319 +62756,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [1616] = 6, - ACTIONS(67), 1, + [1538] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(225), 2, + ACTIONS(927), 1, + sym__namedot, + STATE(235), 1, + aux_sym_qualified_name_repeat1, + STATE(224), 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, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(138), 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, - [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, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [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, + 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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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(73), 1, - anon_sym_LBRACE, - 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, - 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(168), 5, - anon_sym_SLASH, - anon_sym_LT, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(166), 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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -62688,49 +62814,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_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, - [2000] = 5, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [1616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(230), 2, + STATE(225), 2, sym_comment, sym_include, - ACTIONS(115), 4, + ACTIONS(110), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 55, + ACTIONS(112), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -62786,20 +62896,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2074] = 5, + [1690] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(231), 2, + ACTIONS(927), 1, + sym__namedot, + STATE(235), 1, + aux_sym_qualified_name_repeat1, + STATE(226), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 55, + ACTIONS(104), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -62843,7 +62956,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, @@ -62855,20 +62967,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2148] = 5, + [1768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(232), 2, + STATE(227), 2, sym_comment, sym_include, - ACTIONS(138), 4, + ACTIONS(140), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 55, + ACTIONS(142), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -62924,22 +63036,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2222] = 6, + [1842] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1348), 1, - sym__namedot, - ACTIONS(108), 3, + ACTIONS(1360), 1, + aux_sym_function_call_token1, + STATE(228), 2, + sym_comment, + sym_include, + ACTIONS(166), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(233), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 54, + ACTIONS(168), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -62994,28 +63106,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2298] = 8, + [1918] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1351), 1, - sym_identifier, - ACTIONS(1356), 1, - aux_sym_input_expression_token2, - STATE(378), 1, - sym_qualified_name, - STATE(234), 2, + ACTIONS(931), 1, + sym__namedoublecolon, + STATE(230), 1, + aux_sym_member_access_repeat1, + STATE(229), 2, sym_comment, sym_include, - ACTIONS(1358), 3, + ACTIONS(144), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1354), 53, + ACTIONS(146), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -63066,20 +63177,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2378] = 5, + [1996] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(235), 2, - sym_comment, - sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(1362), 1, + sym__namedoublecolon, + ACTIONS(114), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 55, + STATE(230), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -63122,7 +63235,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, @@ -63135,20 +63247,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2452] = 5, + [2072] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(236), 2, + ACTIONS(929), 1, + sym__namecolon, + STATE(252), 1, + aux_sym_object_access_repeat1, + STATE(231), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 55, + ACTIONS(93), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -63191,7 +63306,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, @@ -63204,20 +63318,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2526] = 5, + [2150] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(237), 2, + ACTIONS(929), 1, + sym__namecolon, + STATE(252), 1, + aux_sym_object_access_repeat1, + STATE(232), 2, sym_comment, sym_include, - ACTIONS(115), 4, - sym__namecolon, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 55, + ACTIONS(93), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -63260,7 +63377,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, @@ -63273,35 +63389,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2600] = 13, + [2228] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1204), 1, - sym__escaped_string, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(238), 2, + STATE(233), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(204), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -63317,7 +63432,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(1202), 32, + ACTIONS(206), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -63350,34 +63465,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [2690] = 12, + [2316] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(239), 2, + STATE(234), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1212), 3, + ACTIONS(1202), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -63393,7 +63508,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(1210), 32, + ACTIONS(1200), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -63426,32 +63541,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [2778] = 9, + [2404] = 7, 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, - STATE(240), 2, + ACTIONS(927), 1, + sym__namedot, + STATE(260), 1, + aux_sym_qualified_name_repeat1, + STATE(235), 2, sym_comment, sym_include, - ACTIONS(1216), 3, + ACTIONS(132), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1214), 52, + ACTIONS(134), 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, @@ -63460,6 +63571,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, @@ -63489,44 +63601,113 @@ 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, - [2860] = 10, + [2482] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(860), 1, + ACTIONS(1222), 1, + sym__escaped_string, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - STATE(241), 2, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(236), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1121), 3, + ACTIONS(1109), 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(1220), 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_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, + [2572] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(237), 2, + sym_comment, + sym_include, + ACTIONS(128), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1119), 49, + ACTIONS(130), 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, @@ -63535,6 +63716,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, @@ -63546,6 +63728,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, @@ -63563,34 +63746,36 @@ 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, 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, - [2944] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [2646] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(242), 2, + STATE(238), 2, sym_comment, sym_include, - ACTIONS(164), 5, + ACTIONS(154), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(162), 53, - sym__namedoublecolon, + ACTIONS(152), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -63643,35 +63828,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [3020] = 13, + [2722] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, + ACTIONS(1234), 1, sym__escaped_string, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(243), 2, + STATE(239), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -63687,7 +63872,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(1115), 32, + ACTIONS(1232), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -63720,53 +63905,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3110] = 6, - ACTIONS(3), 1, + [2812] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(1360), 1, - anon_sym_NO_DASHERROR, - STATE(244), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(240), 2, sym_comment, sym_include, - ACTIONS(391), 4, - sym__namecolon, + ACTIONS(150), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(148), 53, + sym__namedoublecolon, 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, - 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, @@ -63777,48 +63946,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_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, - [3186] = 13, + 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, + [2888] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1200), 1, + ACTIONS(1230), 1, sym__escaped_string, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(245), 2, + STATE(241), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -63834,7 +64019,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(1198), 32, + ACTIONS(1228), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -63867,35 +64052,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3276] = 13, + [2978] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(242), 2, + sym_comment, + sym_include, + ACTIONS(123), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(121), 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, + [3054] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1113), 1, + ACTIONS(1133), 1, sym__escaped_string, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(246), 2, + STATE(243), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -63911,7 +64166,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(1111), 32, + ACTIONS(1131), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -63944,54 +64199,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3366] = 13, + [3144] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1208), 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(247), 2, + ACTIONS(1365), 1, + anon_sym_NO_DASHERROR, + STATE(244), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(647), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(649), 54, + anon_sym_COLON, 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(1206), 32, anon_sym_LBRACE, sym_identifier, - sym__terminator, + anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -64000,6 +64228,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, @@ -64009,47 +64238,66 @@ 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_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, - [3456] = 13, + [3220] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1192), 1, + ACTIONS(1129), 1, sym__escaped_string, - STATE(860), 1, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(248), 2, + STATE(245), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -64065,7 +64313,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(1190), 32, + ACTIONS(1127), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -64098,40 +64346,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3546] = 13, - ACTIONS(3), 1, + [3310] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - 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, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, + sym__namedot, + STATE(246), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(162), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(160), 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, @@ -64142,10 +64388,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1123), 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, + [3388] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(929), 1, + sym__namecolon, + STATE(232), 1, + aux_sym_object_access_repeat1, + STATE(247), 2, + sym_comment, + sym_include, + ACTIONS(87), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(89), 54, + 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, @@ -64154,6 +64447,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, @@ -64163,46 +64457,136 @@ 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_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, - [3636] = 12, + [3466] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(248), 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), 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_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [3542] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(860), 1, + ACTIONS(1214), 1, + sym__escaped_string, + STATE(847), 1, sym__comparison_operator, - STATE(862), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(865), 1, + STATE(849), 1, sym__additive_operator, - STATE(868), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(250), 2, - sym_comment, - sym_include, - ACTIONS(230), 3, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(1086), 3, + STATE(249), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -64218,7 +64602,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(232), 32, + ACTIONS(1212), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -64251,27 +64635,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3724] = 6, + [3632] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1362), 1, - sym__namecolon, - ACTIONS(93), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - STATE(251), 3, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + STATE(250), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 54, - anon_sym_COLON, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1210), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1208), 49, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, + sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -64280,7 +64671,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, @@ -64292,7 +64682,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, @@ -64310,39 +64699,42 @@ 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, - [3800] = 7, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [3716] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - sym__namecolon, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(252), 2, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + STATE(251), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(1206), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 54, - anon_sym_COLON, + ACTIONS(1204), 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, @@ -64351,7 +64743,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, @@ -64381,34 +64772,32 @@ 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, - [3878] = 7, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [3798] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(1369), 1, sym__namecolon, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(253), 2, - sym_comment, - sym_include, - ACTIONS(89), 3, + ACTIONS(95), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 54, + STATE(252), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(97), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64463,28 +64852,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3956] = 7, + [3874] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - sym__namecolon, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(254), 2, - sym_comment, - sym_include, - ACTIONS(89), 3, + ACTIONS(1218), 1, + sym__escaped_string, + 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(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(91), 54, - anon_sym_COLON, + STATE(253), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(1216), 32, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, + sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -64493,7 +64908,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, @@ -64503,53 +64917,32 @@ 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_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, - [4034] = 6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [3964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - sym__namedoublecolon, - ACTIONS(127), 3, + STATE(254), 2, + sym_comment, + sym_include, + ACTIONS(128), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(255), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 54, + ACTIONS(130), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64592,6 +64985,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, @@ -64604,23 +64998,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4110] = 7, + [4038] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - sym__namedoublecolon, - STATE(255), 1, - aux_sym_member_access_repeat1, - STATE(256), 2, + STATE(255), 2, sym_comment, sym_include, - ACTIONS(119), 3, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(121), 54, + ACTIONS(142), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64663,6 +65054,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, @@ -64675,26 +65067,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4188] = 6, + [4112] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1372), 1, + aux_sym_function_call_token1, + STATE(256), 2, + sym_comment, + sym_include, + ACTIONS(168), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(166), 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, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [4190] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1368), 1, - aux_sym_function_call_token1, + ACTIONS(1374), 1, + sym_identifier, + ACTIONS(1379), 1, + aux_sym_input_expression_token2, + STATE(335), 1, + sym_qualified_name, STATE(257), 2, sym_comment, sym_include, - ACTIONS(156), 4, - sym__namecolon, + ACTIONS(1381), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(158), 54, + ACTIONS(1377), 53, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -64745,23 +65210,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4264] = 7, + [4270] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(909), 1, - sym__namedot, - STATE(223), 1, - aux_sym_qualified_name_repeat1, STATE(258), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 54, + ACTIONS(112), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64804,6 +65266,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, @@ -64816,23 +65279,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4342] = 7, + [4344] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(909), 1, - sym__namedot, - STATE(223), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(929), 1, + sym__namecolon, + STATE(252), 1, + aux_sym_object_access_repeat1, STATE(259), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 54, + ACTIONS(93), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64887,23 +65350,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4420] = 7, + [4422] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - sym__namecolon, - STATE(253), 1, - aux_sym_object_access_repeat1, - STATE(260), 2, - sym_comment, - sym_include, - ACTIONS(85), 3, + ACTIONS(1383), 1, + sym__namedot, + ACTIONS(121), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 54, + STATE(260), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64963,18 +65425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(929), 1, sym__namecolon, - STATE(253), 1, + STATE(232), 1, aux_sym_object_access_repeat1, STATE(261), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 54, + ACTIONS(73), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -65029,149 +65491,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4576] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(262), 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, - 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, - [4651] = 32, + [4576] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(953), 1, - anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(847), 1, sym__escaped_string, - STATE(158), 1, - aux_sym_sort_clause_repeat1, - STATE(180), 1, + ACTIONS(1386), 1, + sym__terminator, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(272), 1, + aux_sym_abl_statement_repeat1, + STATE(1046), 1, sym__expression, - STATE(270), 1, + STATE(1083), 1, sym_object_access, - STATE(363), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2307), 1, - sym_sort_column, - ACTIONS(945), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, - sym_function_call, - sym_new_expression, - STATE(263), 2, + STATE(262), 2, sym_comment, sym_include, - ACTIONS(947), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65193,79 +65586,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4778] = 31, + [4703] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1370), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(1373), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(1382), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(1385), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(1388), 1, - anon_sym_RBRACK, - ACTIONS(1390), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(1396), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1399), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1402), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1405), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1408), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1411), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1414), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1417), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(1420), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1423), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(1426), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1432), 1, + ACTIONS(847), 1, sym__escaped_string, - STATE(1038), 1, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1390), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(1376), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(1429), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - STATE(264), 3, + STATE(263), 2, sym_comment, sym_include, - aux_sym_array_literal_repeat1, - ACTIONS(1379), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65287,157 +65681,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4903] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - 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, - 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_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, + [4830] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1445), 1, - anon_sym_RBRACK, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - STATE(271), 1, + ACTIONS(1392), 1, + anon_sym_RBRACK, + STATE(314), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(266), 2, + STATE(264), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65459,270 +65776,493 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5121] = 32, - ACTIONS(3), 1, + [4957] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + ACTIONS(75), 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(1449), 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(267), 2, + STATE(265), 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, - [5248] = 32, + ACTIONS(194), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(192), 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, + [5032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + STATE(266), 2, + sym_comment, + sym_include, + ACTIONS(121), 4, + sym__namedot, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(123), 54, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(789), 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(791), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(795), 1, + anon_sym_COMMA, + anon_sym_LPAREN, 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, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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(815), 1, aux_sym_if_statement_token1, - ACTIONS(817), 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(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - ACTIONS(1451), 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, + [5105] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(267), 2, + sym_comment, + sym_include, + ACTIONS(73), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(67), 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, + [5180] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, STATE(268), 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, - [5375] = 32, + ACTIONS(214), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(212), 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, + [5255] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(269), 2, + sym_comment, + sym_include, + ACTIONS(250), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(248), 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, + [5330] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(270), 2, + sym_comment, + sym_include, + ACTIONS(218), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(216), 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, + [5405] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1453), 1, + ACTIONS(1394), 1, anon_sym_RBRACK, - STATE(268), 1, + STATE(273), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(269), 2, + STATE(271), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65744,151 +66284,79 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5502] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - 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, + [5532] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(1396), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(1399), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(1402), 1, + sym__terminator, + ACTIONS(1410), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(1413), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(1416), 1, + anon_sym_LPAREN, + ACTIONS(1419), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(1422), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1428), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1431), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1434), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1437), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1440), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(1443), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1446), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(1449), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1452), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(1458), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_RBRACK, - STATE(264), 1, - aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1046), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(1404), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(1455), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(271), 2, - sym_comment, - sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + STATE(272), 3, + sym_comment, + sym_include, + aux_sym_abl_statement_repeat1, + ACTIONS(1407), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65910,80 +66378,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5708] = 32, + [5657] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1461), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(314), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(272), 2, + STATE(273), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66005,79 +66473,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5835] = 31, + [5784] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1459), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(1462), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(1465), 1, - sym__terminator, - ACTIONS(1473), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(1476), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1482), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(1485), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1488), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1491), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1494), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1497), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1500), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1503), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1506), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(1509), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1512), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(1515), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1521), 1, + ACTIONS(847), 1, sym__escaped_string, - STATE(1061), 1, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1463), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(1467), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(1518), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - STATE(273), 3, + STATE(274), 2, sym_comment, sym_include, - aux_sym_abl_statement_repeat1, - ACTIONS(1470), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66099,53 +66568,36 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5960] = 7, - ACTIONS(3), 1, + [5911] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_LPAREN, - STATE(257), 1, - sym_function_arguments, - STATE(274), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(275), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(89), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(87), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(87), 53, 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, - 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, @@ -66156,93 +66608,109 @@ static 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, - [6037] = 32, + 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, + [5986] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, - anon_sym_RBRACK, + ACTIONS(1465), 1, + sym__terminator, STATE(272), 1, - aux_sym_array_literal_repeat1, - STATE(1038), 1, + aux_sym_abl_statement_repeat1, + STATE(1046), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(275), 2, + STATE(276), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66264,80 +66732,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6164] = 32, + [6113] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1526), 1, + ACTIONS(1467), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(274), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(276), 2, + STATE(277), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66359,80 +66827,149 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6291] = 32, + [6240] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(278), 2, + sym_comment, + sym_include, + ACTIONS(206), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(204), 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, + [6315] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1528), 1, + ACTIONS(1469), 1, anon_sym_RBRACK, - STATE(276), 1, + STATE(282), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(277), 2, + STATE(279), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66454,80 +66991,149 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6418] = 32, + [6442] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(280), 2, + sym_comment, + sym_include, + ACTIONS(138), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(136), 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, + [6517] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(1003), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - ACTIONS(1530), 1, - anon_sym_RBRACK, - STATE(264), 1, - aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(163), 1, + aux_sym_sort_clause_repeat1, + STATE(184), 1, sym__expression, - STATE(1065), 1, + STATE(327), 1, sym_object_access, - STATE(1125), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2427), 1, + sym_sort_column, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(278), 2, - sym_comment, - sym_include, - STATE(1059), 2, + STATE(261), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + STATE(281), 2, + sym_comment, + sym_include, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66549,80 +67155,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6545] = 32, + [6644] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1532), 1, + ACTIONS(1471), 1, anon_sym_RBRACK, - STATE(278), 1, + STATE(314), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(279), 2, + STATE(282), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66644,256 +67250,105 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6672] = 32, - ACTIONS(3), 1, + [6771] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + ACTIONS(75), 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(1534), 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(280), 2, + STATE(283), 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, - [6799] = 32, - ACTIONS(3), 1, + ACTIONS(190), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(188), 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, + [6846] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, - sym_identifier, - ACTIONS(943), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(949), 1, - sym__integer_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, - ACTIONS(971), 1, - aux_sym_scope_tuning_token1, - ACTIONS(973), 1, - aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(159), 1, - aux_sym_sort_clause_repeat1, - STATE(180), 1, - sym__expression, - STATE(270), 1, - sym_object_access, - STATE(363), 1, - sym__decimal_literal, - STATE(2307), 1, - sym_sort_column, - ACTIONS(945), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(979), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(261), 2, - sym_function_call, - sym_new_expression, - STATE(281), 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, - [6926] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - 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, + STATE(284), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(182), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(180), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(87), 47, - 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_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, + 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, @@ -66904,276 +67359,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [7015] = 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, + [6921] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 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, - 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, - 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, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1540), 1, + ACTIONS(1473), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(314), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(285), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67195,175 +67483,149 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7396] = 32, - ACTIONS(3), 1, + [7048] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + ACTIONS(75), 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(1542), 1, - anon_sym_RBRACK, - STATE(285), 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(286), 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, - [7523] = 32, + ACTIONS(178), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(176), 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, + [7123] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1544), 1, + ACTIONS(1475), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(289), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(287), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67385,80 +67647,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7650] = 32, + [7250] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1546), 1, - anon_sym_RBRACK, - STATE(287), 1, - aux_sym_array_literal_repeat1, - STATE(1038), 1, + ACTIONS(1477), 1, + sym__terminator, + STATE(272), 1, + aux_sym_abl_statement_repeat1, + STATE(1046), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(288), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67480,80 +67742,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7777] = 32, + [7377] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1548), 1, + ACTIONS(1479), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(314), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(289), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67575,80 +67837,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7904] = 32, + [7504] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1550), 1, - sym__terminator, - STATE(273), 1, - aux_sym_abl_statement_repeat1, - STATE(1061), 1, + ACTIONS(1481), 1, + anon_sym_RBRACK, + STATE(285), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(290), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67670,21 +67932,20 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8031] = 6, + [7631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1552), 1, - sym__namedot, STATE(291), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 54, + ACTIONS(158), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -67739,102 +68000,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [8106] = 32, - ACTIONS(3), 1, + [7704] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + ACTIONS(75), 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(1554), 1, - anon_sym_RBRACK, - STATE(289), 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(292), 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, - [8233] = 5, + 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, + 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, + [7779] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -67842,12 +68077,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(293), 2, sym_comment, sym_include, - ACTIONS(162), 4, - sym__namedoublecolon, + ACTIONS(106), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(164), 54, + ACTIONS(108), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -67902,80 +68137,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [8306] = 32, + [7852] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1556), 1, + ACTIONS(1483), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(297), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(294), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67997,51 +68232,105 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8433] = 5, - ACTIONS(3), 1, + [7979] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, STATE(295), 2, sym_comment, sym_include, - ACTIONS(146), 4, - sym__namecolon, + ACTIONS(222), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(220), 52, 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_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_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [8054] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(296), 2, + sym_comment, + sym_include, + ACTIONS(198), 5, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(196), 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, @@ -68052,93 +68341,109 @@ static 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, - [8506] = 32, + 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, + [8129] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1558), 1, - sym__terminator, - STATE(273), 1, - aux_sym_abl_statement_repeat1, - STATE(1061), 1, + ACTIONS(1485), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(296), 2, + STATE(297), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68160,51 +68465,36 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8633] = 5, - ACTIONS(3), 1, + [8256] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - STATE(297), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(298), 2, sym_comment, sym_include, - ACTIONS(100), 4, - sym__namecolon, + ACTIONS(202), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(200), 52, 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_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, @@ -68215,93 +68505,452 @@ static 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_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, + [8331] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(299), 2, + sym_comment, + sym_include, + ACTIONS(210), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(208), 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, + [8406] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(300), 2, + sym_comment, + sym_include, + ACTIONS(152), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(154), 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, - [8706] = 32, + [8479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + STATE(301), 2, + sym_comment, + sym_include, + ACTIONS(148), 4, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(150), 54, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(789), 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(791), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(795), 1, + anon_sym_COMMA, + anon_sym_LPAREN, 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, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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(815), 1, aux_sym_if_statement_token1, - ACTIONS(817), 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(819), 1, aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [8552] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(302), 2, + sym_comment, + sym_include, + ACTIONS(234), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(232), 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, + [8627] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(303), 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_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [8702] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1487), 1, anon_sym_RBRACK, - STATE(294), 1, + STATE(306), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(298), 2, + STATE(304), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68323,20 +68972,21 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8833] = 5, + [8829] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(299), 2, + ACTIONS(1489), 1, + sym__namedot, + STATE(305), 2, sym_comment, sym_include, - ACTIONS(166), 4, - sym__namecolon, + ACTIONS(160), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(168), 54, + ACTIONS(162), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -68391,80 +69041,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [8906] = 32, + [8904] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1562), 1, + ACTIONS(1491), 1, anon_sym_RBRACK, - STATE(264), 1, + STATE(314), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(300), 2, + STATE(306), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68486,80 +69136,149 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9033] = 32, + [9031] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(307), 2, + sym_comment, + sym_include, + ACTIONS(242), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(240), 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, + [9106] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1564), 1, - sym__terminator, - STATE(273), 1, - aux_sym_abl_statement_repeat1, - STATE(1061), 1, + ACTIONS(1493), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(301), 2, + STATE(308), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68581,80 +69300,218 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9160] = 32, + [9233] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(309), 2, + sym_comment, + sym_include, + ACTIONS(226), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(224), 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, + [9308] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(310), 2, + sym_comment, + sym_include, + ACTIONS(230), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(228), 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, + [9383] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1566), 1, + ACTIONS(1495), 1, anon_sym_RBRACK, - STATE(300), 1, + STATE(308), 1, aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(302), 2, + STATE(311), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68676,80 +69533,156 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9287] = 32, + [9510] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(781), 1, + ACTIONS(1497), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + sym__namedot, + ACTIONS(1501), 1, + sym__namecolon, + ACTIONS(1503), 1, + sym__namedoublecolon, + STATE(1041), 1, + aux_sym_qualified_name_repeat1, + STATE(1048), 1, + aux_sym_member_access_repeat1, + STATE(1053), 1, + aux_sym_object_access_repeat1, + STATE(1060), 1, + sym_function_arguments, + STATE(312), 2, + sym_comment, + sym_include, + ACTIONS(87), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(89), 47, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(789), 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(791), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(795), 1, + anon_sym_COMMA, + anon_sym_RBRACK, 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, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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(815), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [9599] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, - ACTIONS(1568), 1, - anon_sym_RBRACK, - STATE(267), 1, - aux_sym_array_literal_repeat1, - STATE(1038), 1, + ACTIONS(1505), 1, + sym__terminator, + STATE(272), 1, + aux_sym_abl_statement_repeat1, + STATE(1046), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(303), 2, + STATE(313), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68771,80 +69704,79 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9414] = 32, + [9726] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(1507), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(1510), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(1519), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(1522), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(1525), 1, + anon_sym_RBRACK, + ACTIONS(1527), 1, + anon_sym_LPAREN, + ACTIONS(1530), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(1533), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1539), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1542), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1545), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1548), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1551), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(1554), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1557), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(1560), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1563), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(1569), 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, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(1513), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(1566), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(304), 2, - sym_comment, - sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + STATE(314), 3, + sym_comment, + sym_include, + aux_sym_array_literal_repeat1, + ACTIONS(1516), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68866,80 +69798,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9541] = 32, + [9851] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(847), 1, sym__escaped_string, - ACTIONS(1447), 1, + ACTIONS(1388), 1, anon_sym_LPAREN, ACTIONS(1572), 1, - sym__terminator, - STATE(273), 1, - aux_sym_abl_statement_repeat1, - STATE(1061), 1, + anon_sym_RBRACK, + STATE(317), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, sym__expression, - STATE(1065), 1, + STATE(1083), 1, sym_object_access, - STATE(1125), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(305), 2, + STATE(315), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -68961,80 +69893,80 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9668] = 32, + [9978] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(1003), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - ACTIONS(1574), 1, - anon_sym_RBRACK, - STATE(304), 1, - aux_sym_array_literal_repeat1, - STATE(1038), 1, + STATE(175), 1, + aux_sym_sort_clause_repeat1, + STATE(184), 1, sym__expression, - STATE(1065), 1, + STATE(327), 1, sym_object_access, - STATE(1125), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2427), 1, + sym_sort_column, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(306), 2, - sym_comment, - sym_include, - STATE(1059), 2, + STATE(261), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + STATE(316), 2, + sym_comment, + sym_include, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -69056,162 +69988,118 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9795] = 7, + [10105] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1576), 1, + ACTIONS(793), 1, sym_identifier, - STATE(373), 1, - sym_qualified_name, - STATE(307), 2, - sym_comment, - sym_include, - ACTIONS(1581), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1579), 53, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(797), 1, 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, + ACTIONS(805), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(807), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(811), 1, aux_sym_unary_expression_token1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, + ACTIONS(825), 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(829), 1, aux_sym_scope_tuning_token1, + ACTIONS(831), 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(833), 1, aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1574), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9872] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(308), 2, + STATE(317), 2, sym_comment, sym_include, - 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, - 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, - [9947] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [10232] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(309), 2, + STATE(318), 2, sym_comment, sym_include, - ACTIONS(244), 5, + ACTIONS(162), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(242), 52, + ACTIONS(160), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -69264,23 +70152,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10022] = 6, - ACTIONS(67), 1, + [10307] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, anon_sym_LBRACE, - STATE(310), 2, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(319), 2, sym_comment, sym_include, - ACTIONS(204), 5, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [10434] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(320), 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(202), 52, + ACTIONS(244), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -69333,23 +70316,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10097] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [10509] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(311), 2, + STATE(321), 2, sym_comment, sym_include, - ACTIONS(152), 5, + ACTIONS(186), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(150), 52, + ACTIONS(184), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -69402,20 +70385,213 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10172] = 5, + [10584] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(312), 2, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1578), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(322), 2, sym_comment, sym_include, - ACTIONS(108), 4, - sym__namedot, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [10711] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1580), 1, + sym__terminator, + STATE(272), 1, + aux_sym_abl_statement_repeat1, + STATE(1046), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(323), 2, + sym_comment, + sym_include, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [10838] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(925), 1, + anon_sym_LPAREN, + STATE(228), 1, + sym_function_arguments, + STATE(324), 2, + sym_comment, + sym_include, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(110), 54, + ACTIONS(89), 53, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -69430,7 +70606,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -69470,36 +70645,244 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [10245] = 6, - ACTIONS(67), 1, + [10915] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, anon_sym_LBRACE, - STATE(313), 2, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1582), 1, + anon_sym_RBRACK, + STATE(322), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(325), 2, sym_comment, sym_include, - ACTIONS(236), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(234), 52, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [11042] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1584), 1, + anon_sym_RBRACK, + STATE(331), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(326), 2, + sym_comment, + sym_include, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [11169] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(923), 1, + anon_sym_LBRACK, + ACTIONS(925), 1, + anon_sym_LPAREN, + STATE(228), 1, + sym_function_arguments, + STATE(327), 2, + sym_comment, + sym_include, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(73), 52, 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_COMMA, - aux_sym_type_tuning_token2, + 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, @@ -69510,52 +70893,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_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, - [10320] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [11248] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(314), 2, + STATE(328), 2, sym_comment, sym_include, - ACTIONS(71), 5, + ACTIONS(174), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(65), 52, + ACTIONS(172), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -69608,36 +70975,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10395] = 6, - ACTIONS(67), 1, + [11323] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, anon_sym_LBRACE, - STATE(315), 2, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_RBRACK, + STATE(319), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(329), 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, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [11450] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1497), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + sym__namedot, + ACTIONS(1501), 1, + sym__namecolon, + ACTIONS(1503), 1, + sym__namedoublecolon, + ACTIONS(1588), 1, + anon_sym_LBRACK, + STATE(1041), 1, + aux_sym_qualified_name_repeat1, + STATE(1048), 1, + aux_sym_member_access_repeat1, + STATE(1053), 1, + aux_sym_object_access_repeat1, + STATE(1060), 1, + sym_function_arguments, + STATE(330), 2, + sym_comment, + sym_include, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, - anon_sym_COLON, + sym__escaped_string, + ACTIONS(73), 46, + 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_COMMA, - aux_sym_type_tuning_token2, + 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, @@ -69648,65 +71141,154 @@ static 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, - [10470] = 6, - ACTIONS(67), 1, + 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, + [11541] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(793), 1, + sym_identifier, + ACTIONS(797), 1, anon_sym_LBRACE, - STATE(316), 2, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(807), 1, + anon_sym_LBRACK, + ACTIONS(811), 1, + aux_sym_unary_expression_token1, + ACTIONS(813), 1, + aux_sym_unary_expression_token2, + ACTIONS(815), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, + aux_sym_locked_expression_token1, + ACTIONS(823), 1, + aux_sym_dataset_expression_token1, + ACTIONS(825), 1, + aux_sym_input_expression_token1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, + aux_sym_if_statement_token1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(1590), 1, + anon_sym_RBRACK, + STATE(314), 1, + aux_sym_array_literal_repeat1, + STATE(1037), 1, + sym__expression, + STATE(1083), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + ACTIONS(801), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(837), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(331), 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(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1094), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1104), 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, + [11668] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1592), 1, + sym_identifier, + STATE(341), 1, + sym_qualified_name, + STATE(332), 2, + sym_comment, + sym_include, + ACTIONS(1597), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(1595), 53, anon_sym_COLON, + 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, - 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, @@ -69717,65 +71299,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_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, - [10545] = 6, - ACTIONS(67), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [11745] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(317), 2, + STATE(333), 2, sym_comment, sym_include, - ACTIONS(240), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(238), 52, + ACTIONS(212), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(214), 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, @@ -69786,65 +71366,156 @@ static 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, - [10620] = 6, - ACTIONS(67), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [11817] = 31, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, anon_sym_LBRACE, - STATE(318), 2, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, + aux_sym_unary_expression_token2, + ACTIONS(681), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(683), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(685), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(687), 1, + aux_sym_locked_expression_token1, + ACTIONS(689), 1, + aux_sym_dataset_expression_token1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, + aux_sym_if_statement_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1599), 1, + sym__terminator, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, + sym_object_access, + STATE(41), 1, + sym__decimal_literal, + STATE(2770), 1, + sym__expression, + ACTIONS(665), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(705), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, + STATE(334), 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, + ACTIONS(667), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(52), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(37), 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, + [11941] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(335), 2, + sym_comment, + sym_include, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(138), 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, @@ -69855,341 +71526,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_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, - [10695] = 6, - ACTIONS(67), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [12013] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(319), 2, + STATE(336), 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), 52, + ACTIONS(188), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(190), 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, - [10770] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(320), 2, - sym_comment, - sym_include, - 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, - 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, - [10845] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, anon_sym_LBRACE, - STATE(321), 2, - sym_comment, - sym_include, - 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, - anon_sym_COLON, + 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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [10920] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(322), 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, - [10995] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(323), 2, - sym_comment, - sym_include, - 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, - 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, @@ -70200,341 +71593,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_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, - [11070] = 6, - ACTIONS(67), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [12085] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(324), 2, + STATE(337), 2, sym_comment, sym_include, - 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, + ACTIONS(180), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(182), 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, - [11145] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(325), 2, - sym_comment, - sym_include, - 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, - 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, - [11220] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, anon_sym_LBRACE, - STATE(326), 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, + 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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [11295] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(327), 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, - 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, - [11370] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(328), 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, - 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, @@ -70545,272 +71660,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_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, - [11445] = 6, - ACTIONS(67), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [12157] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(329), 2, + STATE(338), 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, + ACTIONS(176), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(178), 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, - [11520] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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__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, - [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, + 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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -70821,56 +71727,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_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, - [11745] = 6, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [12229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1583), 1, - anon_sym_NO_DASHERROR, - STATE(333), 2, + STATE(339), 2, sym_comment, sym_include, - ACTIONS(391), 4, - sym__namecolon, + ACTIONS(204), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(393), 52, + ACTIONS(206), 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, @@ -70879,6 +71766,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, @@ -70908,37 +71796,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, - [11819] = 6, + [12301] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1585), 1, - sym__namecolon, - ACTIONS(93), 3, + STATE(340), 2, + sym_comment, + sym_include, + ACTIONS(172), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(334), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 52, + ACTIONS(174), 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, @@ -70947,6 +71833,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, @@ -70976,38 +71863,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, - [11893] = 7, + [12373] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1104), 1, - sym__namecolon, - STATE(334), 1, - aux_sym_object_access_repeat1, - STATE(335), 2, + STATE(341), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 52, + ACTIONS(104), 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, @@ -71016,6 +71900,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, @@ -71045,38 +71930,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, - [11969] = 7, + [12445] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1104), 1, - sym__namecolon, - STATE(334), 1, - aux_sym_object_access_repeat1, - STATE(336), 2, + STATE(342), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(220), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 52, + ACTIONS(222), 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, @@ -71085,6 +71967,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, @@ -71114,38 +71997,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, - [12045] = 7, + [12517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - sym__namedot, - STATE(338), 1, - aux_sym_qualified_name_repeat1, - STATE(337), 2, + STATE(343), 2, sym_comment, sym_include, - ACTIONS(104), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(106), 52, + ACTIONS(89), 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, @@ -71154,6 +72034,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, @@ -71183,37 +72064,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, - [12121] = 6, + [12589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1588), 1, - sym__namedot, - ACTIONS(108), 3, + STATE(344), 2, + sym_comment, + sym_include, + ACTIONS(196), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(338), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 52, + ACTIONS(198), 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, @@ -71222,6 +72101,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, @@ -71251,38 +72131,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, - [12195] = 7, + [12661] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1104), 1, - sym__namecolon, - STATE(334), 1, - aux_sym_object_access_repeat1, - STATE(339), 2, + STATE(345), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(200), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 52, + ACTIONS(202), 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, @@ -71291,6 +72168,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, @@ -71320,37 +72198,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, - [12271] = 6, + [12733] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1591), 1, - sym__namedoublecolon, - ACTIONS(127), 3, + STATE(346), 2, + sym_comment, + sym_include, + ACTIONS(208), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(340), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 52, + ACTIONS(210), 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, @@ -71359,6 +72235,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, @@ -71388,35 +72265,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, - [12345] = 5, + [12805] = 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(115), 4, - sym__namecolon, + ACTIONS(216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 53, + ACTIONS(218), 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, @@ -71425,6 +72302,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 +72331,36 @@ 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, - [12417] = 5, + [12877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(342), 2, + STATE(348), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(248), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 53, + ACTIONS(250), 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 +72369,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, @@ -71520,37 +72398,36 @@ 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, - [12489] = 5, + [12949] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(343), 2, + STATE(349), 2, sym_comment, sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(232), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 53, + ACTIONS(234), 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, @@ -71559,6 +72436,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, @@ -71587,40 +72465,36 @@ 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, - [12561] = 7, + [13021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1106), 1, - sym__namedoublecolon, - STATE(340), 1, - aux_sym_member_access_repeat1, - STATE(344), 2, + STATE(350), 2, sym_comment, sym_include, - ACTIONS(119), 3, + ACTIONS(236), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(121), 52, + ACTIONS(238), 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, @@ -71629,6 +72503,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, @@ -71658,35 +72533,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, - [12637] = 5, + [13093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(345), 2, + STATE(351), 2, sym_comment, sym_include, - ACTIONS(115), 4, - sym__namecolon, + ACTIONS(240), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 53, + ACTIONS(242), 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, @@ -71695,6 +72570,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, @@ -71724,36 +72600,35 @@ 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, 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, - [12709] = 5, + [13165] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(346), 2, + STATE(352), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 53, + ACTIONS(73), 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, @@ -71762,6 +72637,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, @@ -71791,36 +72667,35 @@ 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, 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, - [12781] = 5, + [13237] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(347), 2, + STATE(353), 2, sym_comment, sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(224), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 53, + ACTIONS(226), 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, @@ -71829,6 +72704,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, @@ -71858,40 +72734,52 @@ 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, 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, - [12853] = 8, + [13309] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - sym_identifier, - ACTIONS(1597), 1, - aux_sym_input_expression_token2, - STATE(1022), 1, - sym_qualified_name, - STATE(348), 2, + ACTIONS(1603), 1, + anon_sym_LBRACK, + ACTIONS(1605), 1, + anon_sym_LPAREN, + ACTIONS(1607), 1, + sym__namedot, + ACTIONS(1609), 1, + sym__namecolon, + ACTIONS(1611), 1, + sym__namedoublecolon, + STATE(1063), 1, + aux_sym_qualified_name_repeat1, + STATE(1075), 1, + aux_sym_object_access_repeat1, + STATE(1089), 1, + sym_function_arguments, + STATE(1090), 1, + aux_sym_member_access_repeat1, + STATE(354), 2, sym_comment, sym_include, - ACTIONS(1358), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1354), 51, + ACTIONS(73), 45, 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, @@ -71899,8 +72787,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, @@ -71929,130 +72815,112 @@ 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_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, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [12931] = 31, + [13399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + STATE(355), 2, + sym_comment, + sym_include, + ACTIONS(160), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(162), 54, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(657), 1, + anon_sym_COMMA, 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_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(681), 1, aux_sym_if_statement_token1, - ACTIONS(683), 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(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1599), 1, - sym__terminator, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, - sym_object_access, - STATE(43), 1, - sym__decimal_literal, - STATE(2845), 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(349), 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, - [13055] = 6, + [13471] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - aux_sym_function_call_token1, - STATE(350), 2, + ACTIONS(1605), 1, + anon_sym_LPAREN, + ACTIONS(1607), 1, + sym__namedot, + ACTIONS(1609), 1, + sym__namecolon, + ACTIONS(1611), 1, + sym__namedoublecolon, + STATE(1063), 1, + aux_sym_qualified_name_repeat1, + STATE(1075), 1, + aux_sym_object_access_repeat1, + STATE(1089), 1, + sym_function_arguments, + STATE(1090), 1, + aux_sym_member_access_repeat1, + STATE(356), 2, sym_comment, sym_include, - ACTIONS(156), 4, - sym__namecolon, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(158), 52, + ACTIONS(89), 46, 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, @@ -72061,7 +72929,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, @@ -72090,38 +72957,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_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + 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, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [13129] = 7, + [13559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - sym__namedot, - STATE(337), 1, - aux_sym_qualified_name_repeat1, - STATE(351), 2, + STATE(357), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(184), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 52, + ACTIONS(186), 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, @@ -72130,6 +72989,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, @@ -72159,38 +73019,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, - [13205] = 7, + [13631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - sym__namedot, - STATE(337), 1, - aux_sym_qualified_name_repeat1, - STATE(352), 2, + STATE(358), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(244), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 52, + ACTIONS(246), 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, @@ -72199,6 +73056,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, @@ -72228,38 +73086,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, - [13281] = 7, + [13703] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1104), 1, - sym__namecolon, - STATE(336), 1, - aux_sym_object_access_repeat1, - STATE(353), 2, + STATE(359), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(228), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 52, + ACTIONS(230), 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, @@ -72268,6 +73123,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, @@ -72297,126 +73153,101 @@ 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, - [13357] = 31, + [13775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + STATE(360), 2, + sym_comment, + sym_include, + ACTIONS(192), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(194), 54, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(657), 1, + anon_sym_COMMA, 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_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(681), 1, aux_sym_if_statement_token1, - ACTIONS(683), 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(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, - 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, + [13847] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1104), 1, + ACTIONS(1123), 1, sym__namecolon, - STATE(336), 1, + STATE(369), 1, aux_sym_object_access_repeat1, - STATE(355), 2, + STATE(361), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 52, + ACTIONS(73), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72469,24 +73300,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [13557] = 5, + [13923] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(356), 2, + ACTIONS(1123), 1, + sym__namecolon, + STATE(369), 1, + aux_sym_object_access_repeat1, + STATE(362), 2, sym_comment, sym_include, - ACTIONS(246), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(248), 54, - anon_sym_COLON, + ACTIONS(89), 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, @@ -72495,7 +73330,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, @@ -72525,35 +73359,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, - [13629] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [13999] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(357), 2, + ACTIONS(1121), 1, + sym__namedot, + STATE(373), 1, + aux_sym_qualified_name_repeat1, + STATE(363), 2, sym_comment, sym_include, - ACTIONS(242), 3, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(244), 54, - anon_sym_COLON, + ACTIONS(138), 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, @@ -72562,7 +73399,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, @@ -72592,128 +73428,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, - [13701] = 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(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, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14075] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(359), 2, + ACTIONS(1121), 1, + sym__namedot, + STATE(373), 1, + aux_sym_qualified_name_repeat1, + STATE(364), 2, sym_comment, sym_include, - ACTIONS(178), 3, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(180), 54, - anon_sym_COLON, + ACTIONS(104), 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, @@ -72722,7 +73468,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, @@ -72752,35 +73497,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, - [13897] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14151] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(360), 2, + ACTIONS(1613), 1, + aux_sym_function_call_token1, + STATE(365), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(166), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 54, - anon_sym_COLON, + ACTIONS(168), 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, @@ -72789,7 +73536,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, @@ -72819,50 +73565,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, - [13969] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14225] = 7, 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, + ACTIONS(1125), 1, sym__namedoublecolon, - STATE(1067), 1, - aux_sym_object_access_repeat1, - STATE(1076), 1, - aux_sym_qualified_name_repeat1, - STATE(1084), 1, + STATE(367), 1, aux_sym_member_access_repeat1, - STATE(1088), 1, - sym_function_arguments, - STATE(361), 2, + STATE(366), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(144), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 46, + ACTIONS(146), 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, @@ -72871,6 +73605,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, @@ -72899,123 +73634,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_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_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(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(15), 1, - sym_object_access, - STATE(43), 1, - sym__decimal_literal, - STATE(2684), 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(362), 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, - [14181] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14301] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(363), 2, - sym_comment, - sym_include, - ACTIONS(150), 3, + ACTIONS(1615), 1, + sym__namedoublecolon, + ACTIONS(114), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 54, - anon_sym_COLON, + STATE(367), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 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, @@ -73024,7 +73673,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, @@ -73054,52 +73702,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, - [14253] = 14, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14375] = 7, 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, + ACTIONS(1123), 1, sym__namecolon, - ACTIONS(1615), 1, - sym__namedoublecolon, - ACTIONS(1619), 1, - anon_sym_LBRACK, - STATE(1067), 1, + STATE(371), 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, + STATE(368), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 45, + ACTIONS(93), 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, @@ -73107,6 +73741,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_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -73135,30 +73771,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_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, - [14343] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14451] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(365), 2, + ACTIONS(1123), 1, + sym__namecolon, + STATE(371), 1, + aux_sym_object_access_repeat1, + STATE(369), 2, sym_comment, sym_include, - ACTIONS(234), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(236), 54, - anon_sym_COLON, + ACTIONS(93), 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, @@ -73167,7 +73811,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, @@ -73197,35 +73840,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, - [14415] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14527] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(366), 2, + ACTIONS(1123), 1, + sym__namecolon, + STATE(371), 1, + aux_sym_object_access_repeat1, + STATE(370), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 54, - anon_sym_COLON, + ACTIONS(93), 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, @@ -73234,7 +73880,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, @@ -73264,35 +73909,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, - [14487] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14603] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(367), 2, - sym_comment, - sym_include, - ACTIONS(222), 3, + ACTIONS(1618), 1, + sym__namecolon, + ACTIONS(95), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 54, - anon_sym_COLON, + STATE(371), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(97), 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, @@ -73301,7 +73948,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, @@ -73331,35 +73977,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, - [14559] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(368), 2, + ACTIONS(1621), 1, + anon_sym_NO_DASHERROR, + STATE(372), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(647), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 54, - anon_sym_COLON, + ACTIONS(649), 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, @@ -73368,7 +74016,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, @@ -73398,35 +74045,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, - [14631] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14751] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(369), 2, + ACTIONS(1121), 1, + sym__namedot, + STATE(374), 1, + aux_sym_qualified_name_repeat1, + STATE(373), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(132), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 54, - anon_sym_COLON, + ACTIONS(134), 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, @@ -73435,7 +74085,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, @@ -73465,35 +74114,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, - [14703] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(370), 2, - sym_comment, - sym_include, - ACTIONS(186), 3, + ACTIONS(1623), 1, + sym__namedot, + ACTIONS(121), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 54, - anon_sym_COLON, + STATE(374), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 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, @@ -73502,7 +74153,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, @@ -73532,35 +74182,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, - [14775] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14901] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(371), 2, + STATE(375), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(128), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 54, - anon_sym_COLON, + ACTIONS(130), 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, @@ -73569,7 +74219,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, @@ -73598,36 +74247,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_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, - [14847] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [14973] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(372), 2, + STATE(376), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 54, - anon_sym_COLON, + ACTIONS(142), 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, @@ -73636,7 +74286,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, @@ -73665,36 +74314,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_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, - [14919] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [15045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(373), 2, + STATE(377), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 54, - anon_sym_COLON, + ACTIONS(112), 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, @@ -73703,7 +74353,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, @@ -73732,36 +74381,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_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, - [14991] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [15117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(374), 2, + STATE(378), 2, sym_comment, sym_include, - ACTIONS(182), 3, + ACTIONS(128), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(184), 54, - anon_sym_COLON, + ACTIONS(130), 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, @@ -73770,7 +74420,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, @@ -73800,35 +74449,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, - [15063] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [15189] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(375), 2, + STATE(379), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(196), 54, - anon_sym_COLON, + ACTIONS(142), 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, @@ -73837,7 +74487,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, @@ -73867,35 +74516,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, - [15135] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [15261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(376), 2, + STATE(380), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 54, - anon_sym_COLON, + ACTIONS(112), 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, @@ -73904,7 +74554,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, @@ -73934,35 +74583,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, - [15207] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [15333] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(377), 2, + ACTIONS(1626), 1, + sym_identifier, + ACTIONS(1629), 1, + aux_sym_input_expression_token2, + STATE(999), 1, + sym_qualified_name, + STATE(381), 2, sym_comment, sym_include, - ACTIONS(210), 3, + ACTIONS(1381), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(212), 54, - anon_sym_COLON, + ACTIONS(1377), 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, @@ -73971,7 +74625,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, @@ -74001,558 +74654,367 @@ 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, - [15279] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [15411] = 31, 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, + ACTIONS(661), 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(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(673), 1, anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, + ACTIONS(689), 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(693), 1, aux_sym_scope_tuning_token1, + ACTIONS(697), 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(699), 1, aux_sym_can_find_expression_token1, + ACTIONS(703), 1, 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, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(232), 54, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1631), 1, + sym__terminator, + STATE(13), 1, + sym_object_access, + STATE(41), 1, + sym__decimal_literal, + STATE(2752), 1, + sym__expression, + ACTIONS(665), 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_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, + ACTIONS(705), 2, 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, - STATE(380), 2, + STATE(12), 2, + sym_function_call, + sym_new_expression, + STATE(382), 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, - sym_identifier, - anon_sym_STAR, - sym_null_expression, + ACTIONS(667), 4, 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, - [15495] = 5, + STATE(52), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(37), 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, + [15535] = 31, 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(240), 54, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(661), 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(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(673), 1, anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, + ACTIONS(689), 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(693), 1, aux_sym_scope_tuning_token1, + ACTIONS(697), 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(699), 1, aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1633), 1, + sym__terminator, + STATE(13), 1, + sym_object_access, + STATE(41), 1, + sym__decimal_literal, + STATE(2881), 1, + sym__expression, + ACTIONS(665), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(705), 2, 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, + STATE(12), 2, + sym_function_call, + sym_new_expression, + STATE(383), 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, + ACTIONS(667), 4, 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, + STATE(52), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(37), 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, + [15659] = 31, 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, + ACTIONS(661), 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(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(671), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(673), 1, anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, + ACTIONS(689), 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(693), 1, aux_sym_scope_tuning_token1, + ACTIONS(697), 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(699), 1, aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1635), 1, + sym__terminator, + STATE(13), 1, + sym_object_access, + STATE(41), 1, + sym__decimal_literal, + STATE(2774), 1, + sym__expression, + ACTIONS(665), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(705), 2, 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(12), 2, + sym_function_call, + sym_new_expression, 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, + ACTIONS(667), 4, 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, + STATE(52), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(37), 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, [15783] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1637), 1, sym__terminator, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2638), 1, + STATE(2838), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(385), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74579,71 +75041,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1512), 1, + STATE(2619), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(386), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74670,71 +75132,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2371), 1, + STATE(2564), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(387), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74761,71 +75223,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1687), 1, + aux_sym_input_expression_token1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - ACTIONS(1659), 1, - sym_identifier, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2659), 1, + STATE(2832), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(388), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74852,71 +75314,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1705), 1, + aux_sym_input_expression_token1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - ACTIONS(1661), 1, - sym_identifier, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2836), 1, + STATE(1873), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(389), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74943,71 +75405,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1705), 1, + aux_sym_input_expression_token1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - ACTIONS(1663), 1, - sym_identifier, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2883), 1, + STATE(1872), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(390), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75034,71 +75496,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2898), 1, + STATE(1871), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(391), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75120,144 +75582,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [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, + [16633] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2782), 1, + STATE(1870), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(393), 2, + STATE(392), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75279,76 +75673,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16829] = 30, + [16754] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2783), 1, + STATE(1869), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(394), 2, + STATE(393), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75370,76 +75764,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16950] = 30, + [16875] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2784), 1, + STATE(1868), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(395), 2, + STATE(394), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75461,76 +75855,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17071] = 30, + [16996] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2785), 1, + STATE(2798), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(396), 2, + STATE(395), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75552,76 +75946,144 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17192] = 30, - ACTIONS(3), 1, + [17117] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(123), 1, + aux_sym_variable_tuning_token2, + ACTIONS(1711), 1, + sym__namedot, + STATE(396), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(121), 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, + [17192] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2895), 1, + STATE(2690), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(397), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75648,71 +76110,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2786), 1, + STATE(2671), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(398), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75739,71 +76201,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1510), 1, + STATE(2629), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(399), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75830,71 +76292,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1517), 1, + STATE(2628), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(400), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75921,71 +76383,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1518), 1, + STATE(2620), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(401), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76012,71 +76474,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1519), 1, + STATE(1322), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(402), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76103,71 +76565,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1520), 1, + STATE(1324), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(403), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76194,71 +76656,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1522), 1, + STATE(2878), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(404), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76285,71 +76747,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2893), 1, + STATE(2879), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(405), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76376,71 +76838,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1687), 1, + aux_sym_input_expression_token1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2685), 1, + STATE(2876), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(406), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76467,71 +76929,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1009), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2874), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(407), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76558,71 +77020,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1008), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2871), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(408), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76649,71 +77111,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2823), 1, + STATE(2853), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(409), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76740,71 +77202,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2888), 1, + STATE(2347), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(410), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76831,71 +77293,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2639), 1, + STATE(2849), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(411), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76922,71 +77384,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1470), 1, + STATE(2846), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(412), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77013,71 +77475,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, - aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1007), 1, - sym__expression, - STATE(1065), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2860), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(413), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77104,71 +77566,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1004), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2842), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(414), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77195,71 +77657,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2832), 1, + STATE(2837), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(415), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77281,145 +77743,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [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, + [19491] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2736), 1, + STATE(2614), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(417), 2, + STATE(416), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77441,76 +77834,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19689] = 30, + [19612] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1936), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2835), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(418), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(417), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77532,76 +77925,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19810] = 30, + [19733] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1935), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2612), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(419), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(418), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77623,76 +78016,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19931] = 30, + [19854] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1934), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1325), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(420), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(419), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77714,76 +78107,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20052] = 30, + [19975] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1933), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1837), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(421), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(420), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77805,76 +78198,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20173] = 30, + [20096] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, - aux_sym_unary_expression_token2, ACTIONS(1786), 1, - aux_sym_ambiguous_expression_token1, + aux_sym_unary_expression_token2, ACTIONS(1788), 1, - aux_sym_temp_table_expression_token1, + aux_sym_ambiguous_expression_token1, ACTIONS(1790), 1, - aux_sym_current_changed_expression_token1, + aux_sym_temp_table_expression_token1, ACTIONS(1792), 1, - aux_sym_locked_expression_token1, + aux_sym_current_changed_expression_token1, ACTIONS(1794), 1, - aux_sym_dataset_expression_token1, + aux_sym_locked_expression_token1, ACTIONS(1796), 1, - aux_sym_input_expression_token1, + aux_sym_dataset_expression_token1, ACTIONS(1798), 1, - aux_sym_if_statement_token1, + aux_sym_input_expression_token1, ACTIONS(1800), 1, + aux_sym_if_statement_token1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2687), 1, + STATE(1836), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(422), 2, + STATE(421), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77896,76 +78289,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20294] = 30, + [20217] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1932), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1835), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(423), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(422), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77987,76 +78380,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20415] = 30, + [20338] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1931), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1820), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(424), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(423), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78078,76 +78471,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20536] = 30, + [20459] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2698), 1, + STATE(1327), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(425), 2, + STATE(424), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78169,76 +78562,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20657] = 30, + [20580] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1796), 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, + ACTIONS(1798), 1, aux_sym_input_expression_token1, + ACTIONS(1800), 1, + aux_sym_if_statement_token1, ACTIONS(1802), 1, - sym_identifier, - STATE(15), 1, + aux_sym_accumulate_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2646), 1, + STATE(1806), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(426), 2, + STATE(425), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78260,76 +78653,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20778] = 30, + [20701] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2781), 1, + STATE(1791), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(427), 2, + STATE(426), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78351,76 +78744,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20899] = 30, + [20822] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(1665), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(1004), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2647), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(428), 2, + STATE(427), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78442,28 +78835,28 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21020] = 30, + [20943] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1804), 1, aux_sym_unary_expression_token2, @@ -78483,35 +78876,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token1, ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2185), 1, + STATE(1293), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(429), 2, + STATE(428), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78533,76 +78926,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21141] = 30, + [21064] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2650), 1, + STATE(2839), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(430), 2, + STATE(429), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78624,76 +79017,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21262] = 30, + [21185] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2651), 1, + STATE(1328), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(431), 2, + STATE(430), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78715,76 +79108,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21383] = 30, + [21306] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1409), 1, + STATE(2668), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(432), 2, + STATE(431), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78806,76 +79199,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21504] = 30, + [21427] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2652), 1, + STATE(1329), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(433), 2, + STATE(432), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78897,76 +79290,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21625] = 30, + [21548] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2677), 1, + STATE(2667), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(434), 2, + STATE(433), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78988,76 +79381,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21746] = 30, + [21669] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2680), 1, + STATE(2665), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(435), 2, + STATE(434), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79079,76 +79472,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21867] = 30, + [21790] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2682), 1, + STATE(2661), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(436), 2, + STATE(435), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79170,76 +79563,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21988] = 30, + [21911] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1310), 1, + STATE(2660), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(437), 2, + STATE(436), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79261,76 +79654,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22109] = 30, + [22032] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(723), 1, + aux_sym_input_expression_token1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1800), 1, + STATE(1401), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(438), 2, + STATE(437), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79352,76 +79745,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22230] = 30, + [22153] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1735), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(2504), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(439), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(438), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79443,76 +79836,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22351] = 30, + [22274] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1734), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1373), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(440), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(439), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79534,76 +79927,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22472] = 30, + [22395] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(1733), 1, + STATE(1372), 1, sym__expression, - STATE(2197), 1, + STATE(2436), 1, sym_object_access, - STATE(2691), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(1844), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(441), 2, + STATE(440), 2, sym_comment, sym_include, - STATE(2459), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79625,76 +80018,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22593] = 30, + [22516] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1730), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(2689), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(442), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(441), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79716,76 +80109,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22714] = 30, + [22637] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1729), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1498), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(443), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(442), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79807,76 +80200,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22835] = 30, + [22758] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1500), 1, + STATE(2611), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(444), 2, + STATE(443), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79898,76 +80291,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22956] = 30, + [22879] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1498), 1, + STATE(1315), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(445), 2, + STATE(444), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79989,76 +80382,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23077] = 30, + [23000] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1497), 1, + STATE(1399), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(446), 2, + STATE(445), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80080,76 +80473,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23198] = 30, + [23121] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1503), 1, + STATE(1393), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(447), 2, + STATE(446), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80171,76 +80564,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23319] = 30, + [23242] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1513), 1, + STATE(1392), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(448), 2, + STATE(447), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80262,76 +80655,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23440] = 30, + [23363] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1515), 1, + STATE(1386), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(449), 2, + STATE(448), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80353,76 +80746,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23561] = 30, + [23484] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1728), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(2635), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(450), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(449), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80444,76 +80837,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23682] = 30, + [23605] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2686), 1, + STATE(2641), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(451), 2, + STATE(450), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80535,76 +80928,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23803] = 30, + [23726] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1651), 1, + aux_sym_input_expression_token1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - ACTIONS(1882), 1, - sym_identifier, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2801), 1, + STATE(2546), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(452), 2, + STATE(451), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80626,76 +81019,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23924] = 30, + [23847] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2703), 1, + STATE(2577), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(453), 2, + STATE(452), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80717,76 +81110,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24045] = 30, + [23968] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1003), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2553), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(454), 2, - sym_comment, - sym_include, - STATE(1059), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + STATE(453), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80808,76 +81201,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24166] = 30, + [24089] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2708), 1, + STATE(2548), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(455), 2, + STATE(454), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80899,76 +81292,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24287] = 30, + [24210] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(1804), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(993), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2466), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(456), 2, + STATE(455), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80990,76 +81383,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24408] = 30, + [24331] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2465), 1, + STATE(1385), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(457), 2, + STATE(456), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81081,76 +81474,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24529] = 30, + [24452] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(1804), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(1003), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2464), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(458), 2, + STATE(457), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81172,76 +81565,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24650] = 30, + [24573] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 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(1884), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1894), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2568), 1, + STATE(1138), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(459), 2, + STATE(458), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81263,76 +81656,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24771] = 30, + [24694] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2569), 1, + STATE(2653), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(460), 2, + STATE(459), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81354,76 +81747,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24892] = 30, + [24815] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2570), 1, + STATE(2806), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(461), 2, + STATE(460), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81445,76 +81838,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25013] = 30, + [24936] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2571), 1, + STATE(2807), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(462), 2, + STATE(461), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81536,76 +81929,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25134] = 30, + [25057] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2572), 1, + STATE(2808), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(463), 2, + STATE(462), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81627,76 +82020,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25255] = 30, + [25178] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 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(1884), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1894), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2573), 1, + STATE(1137), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(464), 2, + STATE(463), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81718,76 +82111,167 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25376] = 30, + [25299] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, + ACTIONS(1922), 1, + aux_sym_unary_expression_token2, + ACTIONS(1924), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1926), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1928), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1930), 1, + aux_sym_locked_expression_token1, + ACTIONS(1932), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1934), 1, + aux_sym_input_expression_token1, + ACTIONS(1936), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1938), 1, + aux_sym_if_statement_token1, + ACTIONS(1940), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1942), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(1946), 1, sym__escaped_string, - ACTIONS(1804), 1, + STATE(1288), 1, + sym__expression, + STATE(1298), 1, + sym_object_access, + STATE(1449), 1, + sym__decimal_literal, + ACTIONS(1910), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1944), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(464), 2, + sym_comment, + sym_include, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1413), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1417), 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, + [25420] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1906), 1, + sym_identifier, + ACTIONS(1908), 1, + anon_sym_LBRACE, + ACTIONS(1914), 1, + sym__integer_literal, + ACTIONS(1916), 1, + anon_sym_LBRACK, + ACTIONS(1918), 1, + anon_sym_LPAREN, + ACTIONS(1920), 1, + aux_sym_unary_expression_token1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1289), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(2463), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(465), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81809,76 +82293,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25497] = 30, + [25541] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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(1804), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1292), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(2462), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(466), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81900,76 +82384,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25618] = 30, + [25662] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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(1665), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1290), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(2710), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(467), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81991,76 +82475,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25739] = 30, + [25783] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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(1665), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1291), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(2711), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(468), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82082,76 +82566,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25860] = 30, + [25904] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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(1665), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1280), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(2715), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(469), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82173,76 +82657,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25981] = 30, + [26025] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2716), 1, + STATE(2543), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(470), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82264,76 +82748,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26102] = 30, + [26146] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2681), 1, + STATE(2554), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(471), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82355,76 +82839,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26223] = 30, + [26267] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2744), 1, + STATE(2555), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(472), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82446,76 +82930,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26344] = 30, + [26388] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1461), 1, + STATE(2559), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(473), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82537,76 +83021,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26465] = 30, + [26509] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1292), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(2562), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(474), 2, sym_comment, sym_include, - STATE(1321), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1908), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82628,76 +83112,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26586] = 30, + [26630] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(1291), 1, + STATE(196), 1, sym__expression, - STATE(1319), 1, + STATE(327), 1, sym_object_access, - STATE(1412), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(1906), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(261), 2, + sym_function_call, + sym_new_expression, STATE(475), 2, sym_comment, sym_include, - STATE(1321), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1908), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82719,76 +83203,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26707] = 30, + [26751] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, + ACTIONS(1904), 1, sym__escaped_string, - STATE(1290), 1, - sym__expression, - STATE(1319), 1, + STATE(191), 1, sym_object_access, - STATE(1412), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1126), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(214), 2, + sym_function_call, + sym_new_expression, STATE(476), 2, sym_comment, sym_include, - STATE(1321), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1908), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82810,76 +83294,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26828] = 30, + [26872] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1289), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1440), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(477), 2, sym_comment, sym_include, - STATE(1321), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1908), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82901,76 +83385,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26949] = 30, + [26993] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1288), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1432), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(478), 2, sym_comment, sym_include, - STATE(1321), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1908), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82992,76 +83476,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27070] = 30, + [27114] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, + ACTIONS(1904), 1, sym__escaped_string, - STATE(1286), 1, - sym__expression, - STATE(1319), 1, + STATE(191), 1, sym_object_access, - STATE(1412), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1134), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(214), 2, + sym_function_call, + sym_new_expression, STATE(479), 2, sym_comment, sym_include, - STATE(1321), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1908), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83083,76 +83567,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27191] = 30, + [27235] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2587), 1, + STATE(1438), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(480), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83174,76 +83658,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27312] = 30, + [27356] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2588), 1, + STATE(1439), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(481), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83265,76 +83749,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27433] = 30, + [27477] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2589), 1, + STATE(1411), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(482), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83356,76 +83840,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27554] = 30, + [27598] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2590), 1, + STATE(1442), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(483), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83447,76 +83931,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27675] = 30, + [27719] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1944), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, - aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1966), 1, + sym_identifier, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2591), 1, + STATE(2691), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(484), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83538,76 +84022,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27796] = 30, + [27840] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(1964), 1, - anon_sym_LBRACE, ACTIONS(1970), 1, + anon_sym_LBRACE, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1982), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(1998), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, + ACTIONS(2002), 1, aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, + ACTIONS(2008), 1, sym__escaped_string, - STATE(193), 1, + STATE(2402), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(311), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1148), 1, - sym__expression, - ACTIONS(1966), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, - sym_function_call, - sym_new_expression, STATE(485), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83629,76 +84113,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27917] = 30, + [27961] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(1944), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2404), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(2592), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(486), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83720,76 +84204,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28038] = 30, + [28082] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(1665), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2406), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(2746), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(487), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83811,76 +84295,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28159] = 30, + [28203] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(1665), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2408), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(2777), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(488), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83902,76 +84386,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28280] = 30, + [28324] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(1665), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2409), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(2819), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(489), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83993,76 +84477,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28401] = 30, + [28445] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(1665), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2410), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(2644), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(490), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84084,76 +84568,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28522] = 30, + [28566] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 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(1665), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1894), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2851), 1, + STATE(1145), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(491), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84175,76 +84659,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28643] = 30, + [28687] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2022), 1, + aux_sym_input_expression_token1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1676), 1, + STATE(2362), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(492), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84266,76 +84750,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28764] = 30, + [28808] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1472), 1, + STATE(2360), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(493), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84357,76 +84841,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28885] = 30, + [28929] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2022), 1, + aux_sym_input_expression_token1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1675), 1, + STATE(2358), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(494), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84448,76 +84932,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29006] = 30, + [29050] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1467), 1, + STATE(2357), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(495), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84539,76 +85023,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29127] = 30, + [29171] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2066), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(2356), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(496), 2, sym_comment, sym_include, - STATE(2551), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84630,76 +85114,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29248] = 30, + [29292] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2069), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(2355), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(497), 2, sym_comment, sym_include, - STATE(2551), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84721,76 +85205,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29369] = 30, + [29413] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, + ACTIONS(1904), 1, sym__escaped_string, - STATE(2073), 1, - sym__expression, - STATE(2490), 1, + STATE(191), 1, sym_object_access, - STATE(2984), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(1132), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(214), 2, + sym_function_call, + sym_new_expression, STATE(498), 2, sym_comment, sym_include, - STATE(2551), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84812,76 +85296,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29490] = 30, + [29534] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 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, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(1894), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1471), 1, + STATE(1131), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(499), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84903,76 +85387,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29611] = 30, + [29655] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, - aux_sym_input_expression_token1, - ACTIONS(2034), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(2074), 1, - sym__expression, - STATE(2490), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(2031), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(500), 2, sym_comment, sym_include, - STATE(2551), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84994,76 +85478,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29732] = 30, + [29776] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, - anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(811), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, + ACTIONS(829), 1, aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, + ACTIONS(833), 1, aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, + ACTIONS(847), 1, sym__escaped_string, - STATE(2075), 1, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(1017), 1, sym__expression, - STATE(2490), 1, + STATE(1083), 1, sym_object_access, - STATE(2984), 1, + STATE(1107), 1, sym__decimal_literal, - ACTIONS(2008), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(501), 2, sym_comment, sym_include, - STATE(2551), 2, + STATE(1045), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85085,76 +85569,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29853] = 30, + [29897] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2076), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(2830), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(502), 2, sym_comment, sym_include, - STATE(2551), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85176,76 +85660,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29974] = 30, + [30018] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2389), 1, + STATE(2803), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(503), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85267,76 +85751,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30095] = 30, + [30139] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2046), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, - aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(2028), 1, + sym_identifier, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2388), 1, + STATE(2678), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(504), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85358,76 +85842,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30216] = 30, + [30260] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2387), 1, + STATE(2800), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(505), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85449,76 +85933,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30337] = 30, + [30381] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2385), 1, + STATE(2795), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(506), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85540,76 +86024,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30458] = 30, + [30502] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2384), 1, + STATE(2819), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(507), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85631,29 +86115,23 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30579] = 30, + [30623] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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(2046), 1, aux_sym_unary_expression_token2, ACTIONS(2048), 1, @@ -85669,38 +86147,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2058), 1, aux_sym_input_expression_token1, ACTIONS(2060), 1, - aux_sym_if_statement_token1, + aux_sym_scope_tuning_token1, ACTIONS(2062), 1, + aux_sym_if_statement_token1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2435), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(2382), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(508), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85722,76 +86206,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30700] = 30, + [30744] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(2058), 1, + aux_sym_input_expression_token1, + ACTIONS(2060), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(2064), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(2070), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(2437), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1674), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(509), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85813,76 +86297,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30821] = 30, + [30865] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(2058), 1, + aux_sym_input_expression_token1, + ACTIONS(2060), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(2064), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(2070), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(2438), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1673), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(510), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85904,76 +86388,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30942] = 30, + [30986] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(2058), 1, + aux_sym_input_expression_token1, + ACTIONS(2060), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(2064), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(2070), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(2439), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1672), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(511), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85995,76 +86479,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31063] = 30, + [31107] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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(2064), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2440), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1179), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(512), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86086,76 +86570,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31184] = 30, + [31228] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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(1665), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2441), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(2860), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(513), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86177,76 +86661,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31305] = 30, + [31349] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2105), 1, + STATE(2370), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(514), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86268,76 +86752,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31426] = 30, + [31470] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2875), 1, + STATE(2371), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(515), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86359,76 +86843,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31547] = 30, + [31591] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1202), 1, + STATE(2372), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(516), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86450,76 +86934,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31668] = 30, + [31712] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1459), 1, + STATE(2373), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(517), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86541,76 +87025,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31789] = 30, + [31833] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2082), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1234), 1, + STATE(1172), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(518), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86632,76 +87116,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31910] = 30, + [31954] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2114), 1, + STATE(2374), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(519), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86723,76 +87207,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32031] = 30, + [32075] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2802), 1, + STATE(2375), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(520), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86814,76 +87298,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32152] = 30, + [32196] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(1804), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(987), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2133), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(521), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86905,76 +87389,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32273] = 30, + [32317] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2107), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(1199), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(522), 2, sym_comment, sym_include, - STATE(2558), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86996,76 +87480,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32394] = 30, + [32438] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2108), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(2821), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(523), 2, sym_comment, sym_include, - STATE(2558), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87087,76 +87571,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32515] = 30, + [32559] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2109), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(2465), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(524), 2, sym_comment, sym_include, - STATE(2558), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87178,76 +87662,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32636] = 30, + [32680] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2110), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(2683), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(525), 2, sym_comment, sym_include, - STATE(2558), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87269,76 +87753,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32757] = 30, + [32801] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2115), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(2787), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(526), 2, sym_comment, sym_include, - STATE(2558), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87360,76 +87844,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32878] = 30, + [32922] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(2142), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(1014), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2468), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(527), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87451,76 +87935,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32999] = 30, + [33043] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2129), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(2759), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(528), 2, sym_comment, sym_include, - STATE(2558), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87542,76 +88026,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33120] = 30, + [33164] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2374), 1, + STATE(1191), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(529), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87633,76 +88117,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33241] = 30, + [33285] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2373), 1, + STATE(1190), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(530), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87724,76 +88208,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33362] = 30, + [33406] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2372), 1, + STATE(1189), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(531), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87815,76 +88299,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33483] = 30, + [33527] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1511), 1, + STATE(1188), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(532), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87906,76 +88390,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33604] = 30, + [33648] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2370), 1, + STATE(2757), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(533), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87997,76 +88481,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33725] = 30, + [33769] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(2082), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(253), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1226), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, STATE(534), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88088,76 +88572,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33846] = 30, + [33890] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(1641), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(236), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(2369), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, STATE(535), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88179,76 +88663,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33967] = 30, + [34011] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(1704), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(223), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(2839), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, STATE(536), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88270,76 +88754,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34088] = 30, + [34132] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(2082), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(241), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1235), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, STATE(537), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88361,76 +88845,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34209] = 30, + [34253] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(2082), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(239), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1238), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, STATE(538), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88452,76 +88936,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34330] = 30, + [34374] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(1665), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(233), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(2828), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, STATE(539), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88543,76 +89027,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34451] = 30, + [34495] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2082), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1239), 1, + STATE(1187), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(540), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88634,76 +89118,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34572] = 30, + [34616] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1628), 1, + STATE(2248), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(541), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88725,76 +89209,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34693] = 30, + [34737] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1627), 1, + STATE(2247), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(542), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88816,76 +89300,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34814] = 30, + [34858] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2082), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, - aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1227), 1, + STATE(2243), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(543), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88907,76 +89391,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34935] = 30, + [34979] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1626), 1, + STATE(2242), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(544), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88998,76 +89482,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35056] = 30, + [35100] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, - aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(245), 1, - sym__expression, - STATE(668), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(1000), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(865), 2, + STATE(2241), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(545), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89089,76 +89573,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35177] = 30, + [35221] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, - aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(246), 1, - sym__expression, - STATE(668), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(1000), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(865), 2, + STATE(2236), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(546), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89180,76 +89664,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35298] = 30, + [35342] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, - aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, - aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, - sym__escaped_string, - STATE(247), 1, - sym__expression, - STATE(668), 1, + STATE(13), 1, sym_object_access, - STATE(1000), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(865), 2, + STATE(2823), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(547), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89271,76 +89755,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35419] = 30, + [35463] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, - aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, - aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, - sym__escaped_string, - STATE(248), 1, - sym__expression, - STATE(668), 1, + STATE(13), 1, sym_object_access, - STATE(1000), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(865), 2, + STATE(2652), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(548), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89362,76 +89846,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35540] = 30, + [35584] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(249), 1, + STATE(206), 1, sym__expression, - STATE(668), 1, + STATE(327), 1, sym_object_access, - STATE(1000), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(865), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(549), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89453,76 +89937,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35661] = 30, + [35705] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(250), 1, + STATE(205), 1, sym__expression, - STATE(668), 1, + STATE(327), 1, sym_object_access, - STATE(1000), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(865), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(550), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89544,76 +90028,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35782] = 30, + [35826] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(991), 1, + aux_sym_input_expression_token1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(1003), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(204), 1, + sym__expression, + STATE(327), 1, sym_object_access, - STATE(43), 1, + STATE(355), 1, sym__decimal_literal, - STATE(1625), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(551), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89635,76 +90119,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35903] = 30, + [35947] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(991), 1, + aux_sym_input_expression_token1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(1003), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(203), 1, + sym__expression, + STATE(327), 1, sym_object_access, - STATE(43), 1, + STATE(355), 1, sym__decimal_literal, - STATE(1624), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(552), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89726,76 +90210,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36024] = 30, + [36068] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2102), 1, + aux_sym_input_expression_token1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1623), 1, + STATE(1201), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(553), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89817,76 +90301,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36145] = 30, + [36189] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1391), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1197), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(554), 2, sym_comment, sym_include, - STATE(2498), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89908,76 +90392,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36266] = 30, + [36310] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2837), 1, + STATE(1196), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(555), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89999,76 +90483,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36387] = 30, + [36431] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2460), 1, + STATE(1193), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(556), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90090,76 +90574,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36508] = 30, + [36552] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1457), 1, + STATE(1194), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(557), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90181,76 +90665,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36629] = 30, + [36673] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2149), 1, + STATE(1200), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(558), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90272,76 +90756,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36750] = 30, + [36794] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(1003), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(991), 1, + STATE(202), 1, sym__expression, - STATE(1065), 1, + STATE(327), 1, sym_object_access, - STATE(1125), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(261), 2, + sym_function_call, + sym_new_expression, STATE(559), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90363,76 +90847,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36871] = 30, + [36915] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(193), 1, + STATE(1396), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(311), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1153), 1, - sym__expression, - ACTIONS(1966), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, - sym_function_call, - sym_new_expression, STATE(560), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90454,76 +90938,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36992] = 30, + [37036] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(193), 1, + STATE(199), 1, + sym__expression, + STATE(327), 1, sym_object_access, - STATE(311), 1, + STATE(355), 1, sym__decimal_literal, - STATE(1156), 1, - sym__expression, - ACTIONS(1966), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(561), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90545,76 +91029,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37113] = 30, + [37157] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1160), 1, + STATE(1184), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(562), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90636,76 +91120,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37234] = 30, + [37278] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1128), 1, + STATE(2723), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(563), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90727,76 +91211,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37355] = 30, + [37399] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, - sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, - aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(193), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(2126), 1, + sym_identifier, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1151), 1, + STATE(2703), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(564), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90818,76 +91302,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37476] = 30, + [37520] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1198), 1, + STATE(2650), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(565), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90909,76 +91393,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37597] = 30, + [37641] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1199), 1, + STATE(2649), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(566), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91000,76 +91484,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37718] = 30, + [37762] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1205), 1, + STATE(2648), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(567), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91091,76 +91575,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37839] = 30, + [37883] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1171), 1, + STATE(2663), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(568), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91182,76 +91666,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37960] = 30, + [38004] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1206), 1, + STATE(1379), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(569), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91273,76 +91757,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38081] = 30, + [38125] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1207), 1, + STATE(2687), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(570), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91364,76 +91848,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38202] = 30, + [38246] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2142), 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(2064), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2158), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2162), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2168), 1, + sym__escaped_string, + STATE(2416), 1, + sym__expression, + STATE(2481), 1, sym_object_access, - STATE(43), 1, + STATE(3002), 1, sym__decimal_literal, - STATE(1208), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(571), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2560), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91455,76 +91939,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38323] = 30, + [38367] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(193), 1, + STATE(2415), 1, + sym__expression, + STATE(2481), 1, sym_object_access, - STATE(311), 1, + STATE(3002), 1, sym__decimal_literal, - STATE(1145), 1, - sym__expression, - ACTIONS(1966), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, - sym_function_call, - sym_new_expression, STATE(572), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + STATE(2560), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91546,76 +92030,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38444] = 30, + [38488] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2142), 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(1665), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2158), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2162), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2168), 1, + sym__escaped_string, + STATE(2414), 1, + sym__expression, + STATE(2481), 1, sym_object_access, - STATE(43), 1, + STATE(3002), 1, sym__decimal_literal, - STATE(2773), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(573), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2560), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91637,76 +92121,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38565] = 30, + [38609] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1021), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(1394), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(574), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91728,76 +92212,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38686] = 30, + [38730] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(2140), 1, + anon_sym_LPAREN, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(2168), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1013), 1, + STATE(2413), 1, sym__expression, - STATE(1065), 1, + STATE(2481), 1, sym_object_access, - STATE(1125), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(575), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91819,76 +92303,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38807] = 30, + [38851] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(2140), 1, + anon_sym_LPAREN, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(2168), 1, sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(992), 1, + STATE(2412), 1, sym__expression, - STATE(1065), 1, + STATE(2481), 1, sym_object_access, - STATE(1125), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(785), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(576), 2, sym_comment, sym_include, - STATE(1059), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91910,76 +92394,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38928] = 30, + [38972] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(2156), 1, + aux_sym_input_expression_token1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(2168), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(2411), 1, + sym__expression, + STATE(2481), 1, sym_object_access, - STATE(43), 1, + STATE(3002), 1, sym__decimal_literal, - STATE(2797), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(577), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2560), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92001,76 +92485,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39049] = 30, + [39093] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1012), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(1406), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(578), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92092,76 +92576,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39170] = 30, + [39214] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2756), 1, + STATE(1405), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(579), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92183,76 +92667,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39291] = 30, + [39335] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2755), 1, + STATE(1404), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(580), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92274,76 +92758,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39412] = 30, + [39456] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2800), 1, + STATE(2705), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(581), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92365,76 +92849,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39533] = 30, + [39577] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2615), 1, + STATE(1402), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(582), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92456,76 +92940,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39654] = 30, + [39698] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2222), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2670), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(583), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92547,76 +93031,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39775] = 30, + [39819] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2226), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2727), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(584), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92638,76 +93122,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39896] = 30, + [39940] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2229), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2755), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(585), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92729,76 +93213,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40017] = 30, + [40061] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2230), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2768), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(586), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92820,76 +93304,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40138] = 30, + [40182] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2232), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2780), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(587), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92911,76 +93395,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40259] = 30, + [40303] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2233), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2791), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(588), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93002,76 +93486,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40380] = 30, + [40424] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2617), 1, + STATE(2453), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(589), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93093,76 +93577,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40501] = 30, + [40545] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2618), 1, + STATE(1202), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(590), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93184,76 +93668,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40622] = 30, + [40666] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2620), 1, + STATE(1378), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(591), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93275,76 +93759,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40743] = 30, + [40787] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2621), 1, + STATE(1377), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(592), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93366,76 +93850,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40864] = 30, + [40908] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2641), 1, + STATE(1375), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(593), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93457,76 +93941,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40985] = 30, + [41029] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1181), 1, + STATE(1374), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(594), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93548,76 +94032,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41106] = 30, + [41150] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1189), 1, + STATE(1371), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(595), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93639,76 +94123,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41227] = 30, + [41271] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1191), 1, + STATE(1370), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(596), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93730,76 +94214,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41348] = 30, + [41392] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1190), 1, + STATE(1203), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(597), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93821,76 +94305,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41469] = 30, + [41513] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2622), 1, + STATE(1206), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(598), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93912,76 +94396,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41590] = 30, + [41634] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1188), 1, + STATE(1205), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(599), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94003,76 +94487,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41711] = 30, + [41755] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2844), 1, + STATE(1208), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(600), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94094,76 +94578,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41832] = 30, + [41876] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1396), 1, + STATE(2827), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(601), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94185,76 +94669,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41953] = 30, + [41997] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1967), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1397), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(602), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94276,76 +94760,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42074] = 30, + [42118] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1398), 1, + STATE(2834), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(603), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94367,76 +94851,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42195] = 30, + [42239] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1282), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(1354), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(604), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94458,76 +94942,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42316] = 30, + [42360] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, - aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1402), 1, + STATE(2840), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(605), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94549,76 +95033,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42437] = 30, + [42481] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1968), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1403), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(606), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94640,76 +95124,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42558] = 30, + [42602] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(988), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(1216), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(607), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94731,76 +95215,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42679] = 30, + [42723] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1311), 1, + STATE(2645), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(608), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94822,76 +95306,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42800] = 30, + [42844] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, - aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(195), 1, - sym__expression, - STATE(270), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(2845), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(609), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94913,76 +95397,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42921] = 30, + [42965] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, - aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(196), 1, - sym__expression, - STATE(270), 1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(1209), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(610), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95004,76 +95488,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43042] = 30, + [43086] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(198), 1, + STATE(1969), 1, sym__expression, - STATE(270), 1, + STATE(2436), 1, sym_object_access, - STATE(363), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(945), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, - sym_function_call, - sym_new_expression, STATE(611), 2, sym_comment, sym_include, - ACTIONS(947), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95095,76 +95579,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43163] = 30, + [43207] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, - aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(202), 1, - sym__expression, - STATE(270), 1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(2750), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(612), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95186,76 +95670,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43284] = 30, + [43328] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, - aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(191), 1, - sym__expression, - STATE(270), 1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(2747), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(613), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95277,76 +95761,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43405] = 30, + [43449] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, - aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(200), 1, - sym__expression, - STATE(270), 1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(2744), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(614), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95368,76 +95852,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43526] = 30, + [43570] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2635), 1, + STATE(2847), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(615), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95459,76 +95943,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43647] = 30, + [43691] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2809), 1, + STATE(2741), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(616), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95550,76 +96034,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43768] = 30, + [43812] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2115), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1393), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(617), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95641,76 +96125,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43889] = 30, + [43933] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2119), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1390), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(618), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95732,76 +96216,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44010] = 30, + [44054] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2124), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1382), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(619), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95823,76 +96307,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44131] = 30, + [44175] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2133), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1355), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(620), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95914,76 +96398,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44252] = 30, + [44296] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2134), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1380), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(621), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96005,76 +96489,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44373] = 30, + [44417] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(2202), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, + ACTIONS(2218), 1, aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, + ACTIONS(2222), 1, aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, + ACTIONS(2228), 1, sym__escaped_string, - STATE(2201), 1, + STATE(2135), 1, sym__expression, - STATE(2433), 1, + STATE(2400), 1, sym_object_access, - STATE(2958), 1, + STATE(2909), 1, sym__decimal_literal, - ACTIONS(2182), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(622), 2, sym_comment, sym_include, - STATE(2525), 2, + STATE(2476), 2, sym_function_call, sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96096,76 +96580,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44494] = 30, + [44538] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1748), 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, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(2622), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(623), 2, sym_comment, sym_include, - STATE(1059), 2, - sym_function_call, - sym_new_expression, - ACTIONS(787), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96187,76 +96671,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44615] = 30, + [44659] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1377), 1, + STATE(2599), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(624), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96278,76 +96762,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44736] = 30, + [44780] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2891), 1, + STATE(2573), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(625), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96369,76 +96853,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44857] = 30, + [44901] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2671), 1, + STATE(2570), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(626), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96460,76 +96944,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44978] = 30, + [45022] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1183), 1, + STATE(2568), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(627), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96551,76 +97035,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45099] = 30, + [45143] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1732), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1734), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1736), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1738), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1740), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1742), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1744), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1746), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1748), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2673), 1, + STATE(2585), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(628), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96642,76 +97126,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45220] = 30, + [45264] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1946), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(2676), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(629), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96733,76 +97217,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45341] = 30, + [45385] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1948), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(2369), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(630), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96824,76 +97308,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45462] = 30, + [45506] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1947), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(2359), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(631), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96915,76 +97399,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45583] = 30, + [45627] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1845), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(2354), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(632), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97006,76 +97490,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45704] = 30, + [45748] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1965), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(2353), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(633), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97097,76 +97581,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45825] = 30, + [45869] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(1951), 1, + STATE(2348), 1, sym__expression, - STATE(2283), 1, + STATE(2481), 1, sym_object_access, - STATE(2886), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(2260), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(634), 2, sym_comment, sym_include, - STATE(2500), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97188,76 +97672,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45946] = 30, + [45990] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2679), 1, + STATE(2351), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(635), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97279,76 +97763,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46067] = 30, + [46111] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(2064), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(1001), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(1197), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(636), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97370,76 +97854,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46188] = 30, + [46232] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2614), 1, + STATE(2350), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(637), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97461,76 +97945,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46309] = 30, + [46353] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1196), 1, + STATE(2858), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(638), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97552,76 +98036,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46430] = 30, + [46474] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2613), 1, + STATE(1464), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(639), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97643,76 +98127,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46551] = 30, + [46595] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(2064), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(1000), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(1201), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(640), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97734,76 +98218,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46672] = 30, + [46716] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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(2142), 1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(998), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2610), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(641), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97825,76 +98309,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46793] = 30, + [46837] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(2064), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2425), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1204), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(642), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97916,76 +98400,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46914] = 30, + [46958] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1203), 1, + STATE(2740), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(643), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98007,76 +98491,145 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47035] = 30, + [47079] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1117), 1, + anon_sym_LBRACK, + ACTIONS(1119), 1, + anon_sym_LPAREN, + STATE(365), 1, + sym_function_arguments, + STATE(644), 2, + sym_comment, + sym_include, + ACTIONS(67), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(73), 50, + 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, + 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, + [47156] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, - aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2697), 1, + STATE(2865), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(644), 2, + STATE(645), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98098,76 +98651,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47156] = 30, + [47277] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2298), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1353), 1, + STATE(1213), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(645), 2, + STATE(646), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98189,76 +98742,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47277] = 30, + [47398] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1970), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1389), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(646), 2, + STATE(647), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98280,76 +98833,144 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47398] = 30, + [47519] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1119), 1, + anon_sym_LPAREN, + STATE(365), 1, + sym_function_arguments, + STATE(648), 2, + sym_comment, + sym_include, + ACTIONS(87), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(89), 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, + [47594] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2609), 1, + STATE(1216), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(647), 2, + STATE(649), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98371,76 +98992,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47519] = 30, + [47715] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2142), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, - aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2607), 1, + STATE(2866), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(648), 2, + STATE(650), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98462,76 +99083,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47640] = 30, + [47836] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2238), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1213), 1, + STATE(1210), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(649), 2, + STATE(651), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98553,76 +99174,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47761] = 30, + [47957] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2142), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2144), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2146), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2148), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2150), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2152), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2154), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2156), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2158), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2605), 1, + STATE(2892), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(650), 2, + STATE(652), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98644,76 +99265,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47882] = 30, + [48078] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, - aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2702), 1, + STATE(2894), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(651), 2, + STATE(653), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98735,76 +99356,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48003] = 30, + [48199] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(793), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(797), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(805), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(807), 1, anon_sym_LBRACK, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(811), 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, + ACTIONS(813), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(825), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(829), 1, + aux_sym_scope_tuning_token1, + ACTIONS(831), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(833), 1, + aux_sym_can_find_expression_token1, + ACTIONS(835), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(847), 1, + sym__escaped_string, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(996), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(2704), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(652), 2, + STATE(654), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98826,76 +99447,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48124] = 30, + [48320] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1200), 1, + STATE(1218), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(653), 2, + STATE(655), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98917,76 +99538,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48245] = 30, + [48441] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2160), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, - aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1445), 1, + STATE(2763), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(654), 2, + STATE(656), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99008,76 +99629,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48366] = 30, + [48562] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2375), 1, + STATE(1337), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(655), 2, + STATE(657), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99099,76 +99720,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48487] = 30, + [48683] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2376), 1, + STATE(1384), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(656), 2, + STATE(658), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99190,76 +99811,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48608] = 30, + [48804] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(1875), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1317), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(657), 2, + STATE(659), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99281,76 +99902,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48729] = 30, + [48925] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1641), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2377), 1, + STATE(2880), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(658), 2, + STATE(660), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99372,76 +99993,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48850] = 30, + [49046] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1641), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, - aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2378), 1, + STATE(2895), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(659), 2, + STATE(661), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99463,76 +100084,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48971] = 30, + [49167] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2260), 1, + aux_sym_input_expression_token1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2835), 1, + STATE(1219), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(660), 2, + STATE(662), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99554,76 +100175,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49092] = 30, + [49288] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 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(2064), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1280), 1, + sym__escaped_string, + STATE(1030), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1172), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(661), 2, + STATE(663), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99645,76 +100266,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49213] = 30, + [49409] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 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(1641), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1280), 1, + sym__escaped_string, + STATE(1031), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2379), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(662), 2, + STATE(664), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99736,76 +100357,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49334] = 30, + [49530] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, + ACTIONS(1280), 1, sym__escaped_string, - STATE(2012), 1, + STATE(1032), 1, sym__expression, - STATE(2490), 1, + STATE(1106), 1, sym_object_access, - STATE(2984), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(2008), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(663), 2, + STATE(665), 2, sym_comment, sym_include, - STATE(2551), 2, + STATE(1074), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99827,76 +100448,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49455] = 30, + [49651] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 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(1641), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1280), 1, + sym__escaped_string, + STATE(1036), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2380), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(664), 2, + STATE(666), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99918,76 +100539,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49576] = 30, + [49772] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 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, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1280), 1, + sym__escaped_string, + STATE(1035), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2705), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(665), 2, + STATE(667), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100009,76 +100630,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49697] = 30, + [49893] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(1264), 1, + aux_sym_input_expression_token1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(1280), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(1039), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2826), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(666), 2, + STATE(668), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100100,76 +100721,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49818] = 30, + [50014] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1447), 1, + STATE(2503), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(667), 2, + STATE(669), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100191,145 +100812,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49939] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - 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, - 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, + [50135] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2852), 1, + STATE(2505), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(669), 2, + STATE(670), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100351,76 +100903,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50137] = 30, + [50256] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1368), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2508), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(670), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(671), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100442,76 +100994,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50258] = 30, + [50377] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2712), 1, + STATE(2511), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(671), 2, + STATE(672), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100533,76 +101085,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50379] = 30, + [50498] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1450), 1, + STATE(2512), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(672), 2, + STATE(673), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100624,76 +101176,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50500] = 30, + [50619] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1523), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(2720), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(673), 2, - sym_comment, - sym_include, - STATE(2500), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2262), 4, + STATE(674), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100715,144 +101267,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [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, + [50740] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2814), 1, + STATE(2516), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(675), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100874,76 +101358,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50817] = 30, + [50861] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1025), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2786), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(676), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100965,76 +101449,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50938] = 30, + [50982] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(1024), 1, + STATE(1971), 1, sym__expression, - STATE(1115), 1, + STATE(2436), 1, sym_object_access, - STATE(1135), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(1292), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(677), 2, sym_comment, sym_include, - STATE(1078), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101056,76 +101540,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51059] = 30, + [51103] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2713), 1, + STATE(1221), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(678), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101147,76 +101631,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51180] = 30, + [51224] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1030), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2363), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(679), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101238,76 +101722,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51301] = 30, + [51345] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1313), 1, + STATE(2364), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(680), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101329,76 +101813,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51422] = 30, + [51466] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1026), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2365), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(681), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101420,76 +101904,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51543] = 30, + [51587] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1028), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2366), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(682), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101511,76 +101995,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51664] = 30, + [51708] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1029), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2367), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(683), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101602,76 +102086,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51785] = 30, + [51829] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1804), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, - aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2469), 1, + STATE(2776), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(684), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101693,76 +102177,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51906] = 30, + [51950] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1804), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, - aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2470), 1, + STATE(2775), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(685), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101784,76 +102268,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52027] = 30, + [52071] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2474), 1, + STATE(1176), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(686), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101875,76 +102359,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52148] = 30, + [52192] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2475), 1, + STATE(2714), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(687), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101966,76 +102450,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52269] = 30, + [52313] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1804), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, - aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2477), 1, + STATE(2702), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(688), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102057,76 +102541,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52390] = 30, + [52434] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1804), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, - aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2480), 1, + STATE(2701), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(689), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102148,76 +102632,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52511] = 30, + [52555] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2160), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, - aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(2266), 1, + sym_identifier, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1440), 1, + STATE(2760), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(690), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102239,76 +102723,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52632] = 30, + [52676] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1356), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2368), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(691), 2, sym_comment, sym_include, - STATE(2498), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102330,76 +102814,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52753] = 30, + [52797] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2072), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2074), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2076), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2078), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2080), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2082), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2084), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2086), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2088), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2722), 1, + STATE(2401), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(692), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102421,76 +102905,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52874] = 30, + [52918] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2403), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(2723), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(693), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102512,76 +102996,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52995] = 30, + [53039] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2728), 1, + STATE(1407), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(694), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102603,76 +103087,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53116] = 30, + [53160] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1375), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1207), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(695), 2, sym_comment, sym_include, - STATE(2498), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102694,76 +103178,212 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53237] = 30, + [53281] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + ACTIONS(2268), 1, + sym__namedot, + STATE(696), 2, + sym_comment, + sym_include, + ACTIONS(160), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(162), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 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(683), 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(691), 1, - sym__escaped_string, - ACTIONS(1784), 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, + [53354] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + aux_sym_variable_tuning_token2, + ACTIONS(2270), 1, + sym__namedot, + STATE(396), 1, + aux_sym_qualified_name_repeat1, + STATE(697), 2, + sym_comment, + sym_include, + ACTIONS(132), 52, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + 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, + [53431] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, + aux_sym_unary_expression_token2, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, - aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(2272), 1, + sym_identifier, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2729), 1, + STATE(2767), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(696), 2, + STATE(698), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102785,76 +103405,142 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53358] = 30, + [53552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + STATE(699), 2, + sym_comment, + sym_include, + ACTIONS(148), 4, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(150), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, 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, + 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, + [53623] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_LPAREN, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2732), 1, + STATE(2778), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(697), 2, + STATE(700), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102876,76 +103562,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53479] = 30, + [53744] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1376), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2541), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(698), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(701), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102967,76 +103653,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53600] = 30, + [53865] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1282), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1450), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(699), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(702), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103058,76 +103744,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53721] = 30, + [53986] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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(2160), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(1647), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1410), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(700), 2, + STATE(703), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103149,76 +103835,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53842] = 30, + [54107] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2390), 1, + STATE(2848), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(701), 2, + STATE(704), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103240,76 +103926,142 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53963] = 30, + [54228] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + STATE(705), 2, + sym_comment, + sym_include, + ACTIONS(152), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(154), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, 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, + 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, + [54299] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_LPAREN, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2391), 1, + STATE(2540), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(702), 2, + STATE(706), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103331,76 +104083,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54084] = 30, + [54420] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1299), 1, + STATE(2539), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(703), 2, + STATE(707), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103422,76 +104174,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54205] = 30, + [54541] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1669), 1, + aux_sym_input_expression_token1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2762), 1, + STATE(2538), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(704), 2, + STATE(708), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103513,76 +104265,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54326] = 30, + [54662] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2252), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(2537), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(705), 2, - sym_comment, - sym_include, - STATE(2558), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + STATE(709), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103604,76 +104356,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54447] = 30, + [54783] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1359), 1, + STATE(2813), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(706), 2, + STATE(710), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103695,76 +104447,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54568] = 30, + [54904] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2046), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, - aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2393), 1, + STATE(2647), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(707), 2, + STATE(711), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103786,76 +104538,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54689] = 30, + [55025] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(2064), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, - aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1175), 1, + STATE(2651), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(708), 2, + STATE(712), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103877,76 +104629,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54810] = 30, + [55146] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2394), 1, + STATE(2536), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(709), 2, + STATE(713), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103968,76 +104720,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54931] = 30, + [55267] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2395), 1, + STATE(2856), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(710), 2, + STATE(714), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104059,76 +104811,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55052] = 30, + [55388] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2238), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1210), 1, + STATE(2725), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(711), 2, + STATE(715), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104150,76 +104902,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55173] = 30, + [55509] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2242), 1, + aux_sym_input_expression_token1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2758), 1, + STATE(1482), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(712), 2, + STATE(716), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104241,76 +104993,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55294] = 30, + [55630] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1966), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2838), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(713), 2, + STATE(717), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104332,76 +105084,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55415] = 30, + [55751] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2842), 1, + STATE(1310), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(714), 2, + STATE(718), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104423,76 +105175,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55536] = 30, + [55872] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1507), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1480), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(715), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(719), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104514,76 +105266,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55657] = 30, + [55993] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2846), 1, + STATE(1313), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(716), 2, + STATE(720), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104605,76 +105357,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55778] = 30, + [56114] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1904), 1, + sym__escaped_string, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(2330), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1360), 1, - sym__expression, - STATE(2002), 1, + STATE(191), 1, sym_object_access, - STATE(2748), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1318), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(717), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(721), 2, + sym_comment, + sym_include, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104696,76 +105448,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55899] = 30, + [56235] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2735), 1, + STATE(1319), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(718), 2, + STATE(722), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104787,76 +105539,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56020] = 30, + [56356] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2767), 1, + STATE(1316), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(719), 2, + STATE(723), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104878,76 +105630,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56141] = 30, + [56477] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2847), 1, + STATE(1314), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(720), 2, + STATE(724), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104969,76 +105721,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56262] = 30, + [56598] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2882), 1, + STATE(2887), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(721), 2, + STATE(725), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105060,76 +105812,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56383] = 30, + [56719] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2894), 1, + STATE(2907), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(722), 2, + STATE(726), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105151,76 +105903,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56504] = 30, + [56840] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1443), 1, + STATE(2910), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(723), 2, + STATE(727), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105242,76 +105994,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56625] = 30, + [56961] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2396), 1, + STATE(2901), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(724), 2, + STATE(728), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105333,76 +106085,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56746] = 30, + [57082] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2848), 1, + STATE(2891), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(725), 2, + STATE(729), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105424,167 +106176,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56867] = 30, + [57203] = 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(2896), 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(726), 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, - [56988] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(645), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2753), 1, + STATE(2762), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(727), 2, + STATE(730), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105606,76 +106267,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57109] = 30, + [57324] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1303), 1, + STATE(2751), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(728), 2, + STATE(731), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105697,21 +106358,20 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57230] = 6, + [57445] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2316), 1, - sym__namedot, - STATE(729), 2, + STATE(732), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(106), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 52, + ACTIONS(108), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -105764,76 +106424,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [57303] = 30, + [57516] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2298), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1344), 1, + STATE(1233), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(730), 2, + STATE(733), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105855,76 +106515,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57424] = 30, + [57637] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2885), 1, + STATE(2496), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(731), 2, + STATE(734), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105946,76 +106606,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57545] = 30, + [57758] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2586), 1, + STATE(2700), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(732), 2, + STATE(735), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106037,76 +106697,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57666] = 30, + [57879] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1306), 1, + STATE(2613), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(733), 2, + STATE(736), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106128,76 +106788,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57787] = 30, + [58000] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1294), 1, + STATE(2610), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(734), 2, + STATE(737), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106219,76 +106879,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57908] = 30, + [58121] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1298), 1, + STATE(2609), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(735), 2, + STATE(738), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106310,76 +106970,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58029] = 30, + [58242] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1302), 1, + STATE(2604), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(736), 2, + STATE(739), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106401,76 +107061,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58150] = 30, + [58363] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, - aux_sym_input_expression_token1, - ACTIONS(2332), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1314), 1, + STATE(2730), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(737), 2, + STATE(740), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106492,76 +107152,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58271] = 30, + [58484] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1307), 1, + STATE(1475), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(738), 2, + STATE(741), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106583,76 +107243,142 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58392] = 30, + [58605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, - sym_identifier, - ACTIONS(647), 1, + STATE(742), 2, + sym_comment, + sym_include, + ACTIONS(156), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(158), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, 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, + 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, + [58676] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_LPAREN, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1651), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2787), 1, + STATE(2602), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(739), 2, + STATE(743), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106674,76 +107400,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58513] = 30, + [58797] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2788), 1, + STATE(2444), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(740), 2, + STATE(744), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106765,76 +107491,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58634] = 30, + [58918] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2790), 1, + STATE(2497), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(741), 2, + STATE(745), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106856,142 +107582,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [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, + [59039] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2791), 1, + STATE(2498), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(743), 2, + STATE(746), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107013,76 +107673,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58947] = 30, + [59160] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2585), 1, + STATE(2502), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(744), 2, + STATE(747), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107104,76 +107764,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59068] = 30, + [59281] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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(2220), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2261), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1185), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(745), 2, + STATE(748), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107195,76 +107855,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59189] = 30, + [59402] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1195), 1, + STATE(2422), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(746), 2, + STATE(749), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107286,76 +107946,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59310] = 30, + [59523] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2793), 1, + STATE(2789), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(747), 2, + STATE(750), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107377,76 +108037,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59431] = 30, + [59644] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2794), 1, + STATE(2824), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(748), 2, + STATE(751), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107468,76 +108128,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59552] = 30, + [59765] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1178), 1, + STATE(1303), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, - STATE(749), 2, + STATE(752), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107559,76 +108219,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59673] = 30, + [59886] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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(1944), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1906), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2584), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(750), 2, + STATE(753), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107650,76 +108310,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59794] = 30, + [60007] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1944), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, - aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2583), 1, + STATE(2728), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(751), 2, + STATE(754), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107741,76 +108401,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59915] = 30, + [60128] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1358), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1680), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(752), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(755), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107832,76 +108492,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60036] = 30, + [60249] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2582), 1, + STATE(2382), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(753), 2, + STATE(756), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107923,76 +108583,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60157] = 30, + [60370] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2082), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1237), 1, + STATE(1183), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(754), 2, + STATE(757), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108014,76 +108674,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60278] = 30, + [60491] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2834), 1, + STATE(1198), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(755), 2, + STATE(758), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108105,76 +108765,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60399] = 30, + [60612] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, - aux_sym_unary_expression_token2, ACTIONS(1786), 1, - aux_sym_ambiguous_expression_token1, + aux_sym_unary_expression_token2, ACTIONS(1788), 1, - aux_sym_temp_table_expression_token1, + aux_sym_ambiguous_expression_token1, ACTIONS(1790), 1, - aux_sym_current_changed_expression_token1, + aux_sym_temp_table_expression_token1, ACTIONS(1792), 1, - aux_sym_locked_expression_token1, + aux_sym_current_changed_expression_token1, ACTIONS(1794), 1, - aux_sym_dataset_expression_token1, + aux_sym_locked_expression_token1, ACTIONS(1796), 1, - aux_sym_input_expression_token1, + aux_sym_dataset_expression_token1, ACTIONS(1798), 1, - aux_sym_if_statement_token1, + aux_sym_input_expression_token1, ACTIONS(1800), 1, + aux_sym_if_statement_token1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2808), 1, + STATE(1845), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(756), 2, + STATE(759), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108196,76 +108856,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60520] = 30, + [60733] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2581), 1, + STATE(1222), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(757), 2, + STATE(760), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108287,76 +108947,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60641] = 30, + [60854] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1798), 1, + aux_sym_input_expression_token1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2805), 1, + STATE(1847), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(758), 2, + STATE(761), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108378,76 +109038,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60762] = 30, + [60975] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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(1704), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2262), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(2807), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(759), 2, + STATE(762), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108469,142 +109129,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60883] = 5, + [61096] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(760), 2, - sym_comment, - sym_include, - ACTIONS(100), 4, - sym__namecolon, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(102), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(661), 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(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(671), 1, anon_sym_LBRACK, + ACTIONS(673), 1, anon_sym_LPAREN, + ACTIONS(677), 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(693), 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(699), 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, - [60954] = 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, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1357), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1861), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(761), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(763), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108626,76 +109220,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61075] = 30, + [61217] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2567), 1, + STATE(1864), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(762), 2, + STATE(764), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108717,76 +109311,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61196] = 30, + [61338] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1884), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, - aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2566), 1, + STATE(2870), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(763), 2, + STATE(765), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108808,76 +109402,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61317] = 30, + [61459] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2565), 1, + STATE(1865), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(764), 2, + STATE(766), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108899,76 +109493,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61438] = 30, + [61580] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(2010), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(2012), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(2014), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(2016), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(2018), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(2020), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(2022), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(2024), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(2026), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2564), 1, + STATE(2395), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(765), 2, + STATE(767), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108990,76 +109584,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61559] = 30, + [61701] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2563), 1, + STATE(2713), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(766), 2, + STATE(768), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109081,76 +109675,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61680] = 30, + [61822] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1293), 1, + STATE(2352), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(767), 2, + STATE(769), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109172,76 +109766,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61801] = 30, + [61943] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1639), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1641), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1643), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1645), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1647), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1649), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1651), 1, + aux_sym_input_expression_token1, + ACTIONS(1653), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1655), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2717), 1, + STATE(2517), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(768), 2, + STATE(770), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109263,76 +109857,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61922] = 30, + [62064] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2816), 1, + STATE(1365), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(769), 2, + STATE(771), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109354,76 +109948,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62043] = 30, + [62185] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1786), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1788), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1790), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1792), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1794), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1796), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1798), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1800), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1802), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1315), 1, + STATE(1866), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(770), 2, + STATE(772), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109445,76 +110039,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62164] = 30, + [62306] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(1920), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(1936), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(1940), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(1946), 1, sym__escaped_string, - STATE(1694), 1, + STATE(1286), 1, sym__expression, - STATE(2002), 1, + STATE(1298), 1, sym_object_access, - STATE(2748), 1, + STATE(1449), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(771), 2, + STATE(773), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(1351), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109536,76 +110130,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62285] = 30, + [62427] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1528), 1, + STATE(2816), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(772), 2, + STATE(774), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109627,76 +110221,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62406] = 30, + [62548] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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(2064), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1279), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(1173), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(773), 2, + STATE(775), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109718,76 +110312,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62527] = 30, + [62669] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 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(2064), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1936), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1278), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(1170), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(774), 2, + STATE(776), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109809,142 +110403,167 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62648] = 5, + [62790] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(1906), 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(1908), 1, + anon_sym_LBRACE, + ACTIONS(1914), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(1916), 1, anon_sym_LBRACK, + ACTIONS(1918), 1, anon_sym_LPAREN, + ACTIONS(1920), 1, aux_sym_unary_expression_token1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, + ACTIONS(1934), 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(1936), 1, aux_sym_scope_tuning_token1, + ACTIONS(1938), 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(1940), 1, aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1283), 1, + sym__expression, + STATE(1298), 1, + sym_object_access, + STATE(1449), 1, + sym__decimal_literal, + ACTIONS(1910), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [62719] = 30, + STATE(777), 2, + sym_comment, + sym_include, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1413), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1417), 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, + [62911] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1934), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, + ACTIONS(1936), 1, aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1940), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1946), 1, + sym__escaped_string, + STATE(1277), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(1366), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(776), 2, + STATE(778), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109966,76 +110585,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62840] = 30, + [63032] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1906), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1914), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1916), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1920), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(1922), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1924), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1926), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1928), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1930), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1932), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(1934), 1, + aux_sym_input_expression_token1, + ACTIONS(1936), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1938), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1940), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1942), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(1946), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(1285), 1, + sym__expression, + STATE(1298), 1, sym_object_access, - STATE(43), 1, + STATE(1449), 1, sym__decimal_literal, - STATE(2714), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1910), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1944), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(777), 2, + STATE(779), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1351), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1912), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1413), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1417), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110057,76 +110676,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62961] = 30, + [63153] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2046), 1, + ACTIONS(1768), 1, aux_sym_unary_expression_token2, - ACTIONS(2048), 1, + ACTIONS(1770), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2050), 1, + ACTIONS(1772), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2052), 1, + ACTIONS(1774), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2054), 1, + ACTIONS(1776), 1, aux_sym_locked_expression_token1, - ACTIONS(2056), 1, + ACTIONS(1778), 1, aux_sym_dataset_expression_token1, - ACTIONS(2058), 1, + ACTIONS(1780), 1, aux_sym_input_expression_token1, - ACTIONS(2060), 1, + ACTIONS(1782), 1, aux_sym_if_statement_token1, - ACTIONS(2062), 1, + ACTIONS(1784), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2272), 1, + STATE(2361), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(778), 2, + STATE(780), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110148,76 +110767,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63082] = 30, + [63274] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1468), 1, + STATE(1230), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(779), 2, + STATE(781), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110239,76 +110858,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63203] = 30, + [63395] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2854), 1, + STATE(2659), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(780), 2, + STATE(782), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110330,76 +110949,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63324] = 30, + [63516] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2505), 1, + STATE(1235), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(781), 2, + STATE(783), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110421,76 +111040,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63445] = 30, + [63637] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2238), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1217), 1, + STATE(1227), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(782), 2, + STATE(784), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110512,76 +111131,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63566] = 30, + [63758] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1364), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1239), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(783), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(785), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110603,76 +111222,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63687] = 30, + [63879] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1283), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1231), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(784), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(786), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110694,76 +111313,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63808] = 30, + [64000] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1194), 1, + STATE(1226), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(785), 2, + STATE(787), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110785,76 +111404,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63929] = 30, + [64121] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1287), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(2662), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(786), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(788), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110876,76 +111495,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64050] = 30, + [64242] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1281), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1225), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(787), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(789), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110967,76 +111586,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64171] = 30, + [64363] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1284), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(2746), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(788), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(790), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111058,76 +111677,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64292] = 30, + [64484] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1277), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1214), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(789), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(791), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111149,76 +111768,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64413] = 30, + [64605] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1902), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1904), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1912), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1914), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1916), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1918), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1920), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1922), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1924), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1926), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1928), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1930), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1932), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1934), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1936), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1938), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1942), 1, - sym__escaped_string, - STATE(1280), 1, - sym__expression, - STATE(1319), 1, + STATE(13), 1, sym_object_access, - STATE(1412), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1906), 2, + STATE(1215), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1940), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(790), 2, - sym_comment, - sym_include, - STATE(1321), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1908), 4, + STATE(792), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1451), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1448), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111240,76 +111859,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64534] = 30, + [64726] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1884), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1886), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1888), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1890), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1892), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1894), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1896), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1898), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1900), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2562), 1, + STATE(1220), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(791), 2, + STATE(793), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111331,76 +111950,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64655] = 30, + [64847] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2082), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1233), 1, + STATE(1223), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(792), 2, + STATE(794), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111422,76 +112041,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64776] = 30, + [64968] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(2248), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(2250), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(2252), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(2254), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(2256), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(2258), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(2260), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(2262), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(2264), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1505), 1, + STATE(1211), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(793), 2, + STATE(795), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111513,76 +112132,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64897] = 30, + [65089] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2813), 1, + STATE(2680), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(794), 2, + STATE(796), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111604,76 +112223,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65018] = 30, + [65210] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(1982), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(1998), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(2002), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(2008), 1, sym__escaped_string, - STATE(1395), 1, + STATE(2393), 1, sym__expression, - STATE(2002), 1, + STATE(2463), 1, sym_object_access, - STATE(2748), 1, + STATE(2960), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(795), 2, + STATE(797), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(2600), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111695,76 +112314,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65139] = 30, + [65331] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(2082), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2394), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1231), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(796), 2, + STATE(798), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111786,76 +112405,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65260] = 30, + [65452] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(2082), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2396), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1228), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(797), 2, + STATE(799), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111877,76 +112496,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65381] = 30, + [65573] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(2082), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2397), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1232), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(798), 2, + STATE(800), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111968,76 +112587,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65502] = 30, + [65694] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(2082), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2398), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1230), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(799), 2, + STATE(801), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112059,76 +112678,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65623] = 30, + [65815] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1968), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1976), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1978), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1982), 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(2082), 1, + ACTIONS(1984), 1, aux_sym_unary_expression_token2, - ACTIONS(2084), 1, + ACTIONS(1986), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2086), 1, + ACTIONS(1988), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2088), 1, + ACTIONS(1990), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2090), 1, + ACTIONS(1992), 1, aux_sym_locked_expression_token1, - ACTIONS(2092), 1, + ACTIONS(1994), 1, aux_sym_dataset_expression_token1, - ACTIONS(2094), 1, + ACTIONS(1996), 1, aux_sym_input_expression_token1, - ACTIONS(2096), 1, + ACTIONS(1998), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2000), 1, aux_sym_if_statement_token1, - ACTIONS(2098), 1, + ACTIONS(2002), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2004), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2008), 1, + sym__escaped_string, + STATE(2399), 1, + sym__expression, + STATE(2463), 1, sym_object_access, - STATE(43), 1, + STATE(2960), 1, sym__decimal_literal, - STATE(1240), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1972), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2006), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(800), 2, + STATE(802), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2600), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1974), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2914), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2937), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112150,76 +112769,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65744] = 30, + [65936] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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(1623), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2417), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1514), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(801), 2, + STATE(803), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112241,76 +112860,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65865] = 30, + [66057] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2429), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1212), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(802), 2, + STATE(804), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112332,76 +112951,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65986] = 30, + [66178] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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(1623), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2430), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1516), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(803), 2, + STATE(805), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112423,76 +113042,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66107] = 30, + [66299] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, - aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1214), 1, + STATE(2764), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(804), 2, + STATE(806), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112514,76 +113133,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66228] = 30, + [66420] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1354), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2709), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(805), 2, + STATE(807), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112605,76 +113224,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66349] = 30, + [66541] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2431), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1219), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(806), 2, + STATE(808), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112696,76 +113315,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66470] = 30, + [66662] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2432), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1220), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(807), 2, + STATE(809), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112787,76 +113406,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66591] = 30, + [66783] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2030), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2038), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2040), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2042), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2044), 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(1623), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(2060), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2062), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(2064), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2066), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2070), 1, + sym__escaped_string, + STATE(2433), 1, + sym__expression, + STATE(2460), 1, sym_object_access, - STATE(43), 1, + STATE(2922), 1, sym__decimal_literal, - STATE(1525), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2034), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2068), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(808), 2, + STATE(810), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2589), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2036), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2949), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2963), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112878,76 +113497,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66712] = 30, + [66904] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1316), 1, + STATE(2711), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(809), 2, + STATE(811), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112969,76 +113588,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66833] = 30, + [67025] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2064), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1174), 1, + STATE(2724), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(810), 2, + STATE(812), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113060,76 +113679,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66954] = 30, + [67146] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2238), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1221), 1, + STATE(2729), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(811), 2, + STATE(813), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113151,76 +113770,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67075] = 30, + [67267] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2238), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1211), 1, + STATE(2731), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(812), 2, + STATE(814), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113242,76 +113861,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67196] = 30, + [67388] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1623), 1, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(1625), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1627), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1629), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1631), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(1633), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(1635), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(1637), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(1639), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1526), 1, + STATE(2736), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(813), 2, + STATE(815), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113333,76 +113952,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67317] = 30, + [67509] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2170), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(2172), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(2174), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(2176), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(2178), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(2180), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(2182), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(2184), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(2186), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2016), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(2738), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(814), 2, - sym_comment, - sym_include, - STATE(2551), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + STATE(816), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113424,76 +114043,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67438] = 30, + [67630] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2023), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(1237), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(815), 2, - sym_comment, - sym_include, - STATE(2551), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + STATE(817), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113515,76 +114134,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67559] = 30, + [67751] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2032), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(1185), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(816), 2, - sym_comment, - sym_include, - STATE(2551), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + STATE(818), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113606,76 +114225,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67680] = 30, + [67872] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, - aux_sym_input_expression_token1, - ACTIONS(2034), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(2034), 1, - sym__expression, - STATE(2490), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(2646), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(817), 2, - sym_comment, - sym_include, - STATE(2551), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + STATE(819), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113697,76 +114316,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67801] = 30, + [67993] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(2039), 1, + STATE(1369), 1, sym__expression, - STATE(2490), 1, + STATE(2436), 1, sym_object_access, - STATE(2984), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(2008), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(818), 2, + STATE(820), 2, sym_comment, sym_include, - STATE(2551), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113788,76 +114407,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67922] = 30, + [68114] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2004), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2012), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2014), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2018), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2020), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2022), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2024), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2026), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2028), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2030), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2032), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2034), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2036), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2038), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2040), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2044), 1, - sym__escaped_string, - STATE(2056), 1, - sym__expression, - STATE(2490), 1, + STATE(13), 1, sym_object_access, - STATE(2984), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2008), 2, + STATE(1229), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2042), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(819), 2, - sym_comment, - sym_include, - STATE(2551), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2010), 4, + STATE(821), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2967), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2960), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113879,76 +114498,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68043] = 30, + [68235] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2093), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(1232), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(820), 2, - sym_comment, - sym_include, - STATE(2558), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + STATE(822), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113970,76 +114589,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68164] = 30, + [68356] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(2094), 1, + STATE(1367), 1, sym__expression, - STATE(2485), 1, + STATE(2436), 1, sym_object_access, - STATE(2966), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(2104), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(821), 2, + STATE(823), 2, sym_comment, sym_include, - STATE(2558), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114061,76 +114680,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68285] = 30, + [68477] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2095), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(1174), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(822), 2, - sym_comment, - sym_include, - STATE(2558), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + STATE(824), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114152,76 +114771,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68406] = 30, + [68598] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2096), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(1186), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(823), 2, - sym_comment, - sym_include, - STATE(2558), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + STATE(825), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114243,76 +114862,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68527] = 30, + [68719] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2097), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(1192), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(824), 2, - sym_comment, - sym_include, - STATE(2558), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + STATE(826), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114334,76 +114953,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68648] = 30, + [68840] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2100), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2108), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2110), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2114), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2116), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(2118), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2120), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2122), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2124), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(2126), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(2130), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2132), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(2134), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2136), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2140), 1, - sym__escaped_string, - STATE(2098), 1, - sym__expression, - STATE(2485), 1, + STATE(13), 1, sym_object_access, - STATE(2966), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2104), 2, + STATE(1181), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2138), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(825), 2, - sym_comment, - sym_include, - STATE(2558), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(2106), 4, + STATE(827), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2947), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2959), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114425,76 +115044,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68769] = 30, + [68961] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2770), 1, + STATE(1180), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(826), 2, + STATE(828), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114516,76 +115135,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68890] = 30, + [69082] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(2108), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(2110), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(2112), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(2114), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(2116), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(2118), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(2120), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(2122), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(2124), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2780), 1, + STATE(1182), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(827), 2, + STATE(829), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114607,76 +115226,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69011] = 30, + [69203] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2789), 1, + STATE(1312), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(828), 2, + STATE(830), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114698,76 +115317,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69132] = 30, + [69324] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2796), 1, + STATE(2889), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(829), 2, + STATE(831), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114789,76 +115408,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69253] = 30, + [69445] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2799), 1, + STATE(1452), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(830), 2, + STATE(832), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114880,76 +115499,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69374] = 30, + [69566] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1704), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(1706), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1708), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1710), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1712), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(1714), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(1716), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(1718), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(1720), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2804), 1, + STATE(1234), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(831), 2, + STATE(833), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114971,76 +115590,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69495] = 30, + [69687] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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(2220), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2263), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1184), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(832), 2, + STATE(834), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115062,76 +115681,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69616] = 30, + [69808] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2348), 1, + aux_sym_input_expression_token1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2803), 1, + STATE(1236), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(833), 2, + STATE(835), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115153,76 +115772,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69737] = 30, + [69929] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2754), 1, + STATE(1447), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(834), 2, + STATE(836), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115244,76 +115863,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69858] = 30, + [70050] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2238), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1225), 1, + STATE(1446), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(835), 2, + STATE(837), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115335,76 +115954,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69979] = 30, + [70171] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1182), 1, + STATE(1445), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(836), 2, + STATE(838), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115426,76 +116045,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70100] = 30, + [70292] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1186), 1, + STATE(1444), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(837), 2, + STATE(839), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115517,76 +116136,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70221] = 30, + [70413] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(1948), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(1950), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(1952), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(1954), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(1956), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(1958), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(1960), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(1962), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(1964), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1187), 1, + STATE(1443), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(838), 2, + STATE(840), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115608,76 +116227,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70342] = 30, + [70534] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2220), 1, + ACTIONS(2336), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(2338), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(2340), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(2342), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(2344), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(2346), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(2348), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(2350), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(2352), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1180), 1, + STATE(1240), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(839), 2, + STATE(841), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115699,76 +116318,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70463] = 30, + [70655] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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(2220), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(2222), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2224), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2226), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2228), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(2230), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(2232), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(2234), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(2236), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2264), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1192), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(840), 2, + STATE(842), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115790,76 +116409,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70584] = 30, + [70776] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(907), 1, + aux_sym_input_expression_token1, + ACTIONS(909), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(913), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(919), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(243), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(2738), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, - STATE(841), 2, + STATE(843), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115881,76 +116500,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70705] = 30, + [70897] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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(1641), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1643), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1651), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1653), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1655), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1657), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1366), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2413), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(842), 2, + STATE(844), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115972,76 +116591,144 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70826] = 30, + [71018] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2354), 1, sym_identifier, - ACTIONS(647), 1, + STATE(994), 1, + sym_qualified_name, + STATE(845), 2, + sym_comment, + sym_include, + ACTIONS(1597), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1595), 51, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(653), 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(655), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 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(683), 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(691), 1, - sym__escaped_string, - ACTIONS(2160), 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, + [71093] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(661), 1, + sym_identifier, + ACTIONS(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(671), 1, + anon_sym_LBRACK, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, - aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1433), 1, + STATE(2890), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(843), 2, + STATE(846), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116063,76 +116750,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70947] = 30, + [71214] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(2064), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(234), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1176), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, - STATE(844), 2, + STATE(847), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116154,76 +116841,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71068] = 30, + [71335] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(251), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1224), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, - STATE(845), 2, + STATE(848), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116245,76 +116932,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71189] = 30, + [71456] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(893), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(909), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(913), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(919), 1, sym__escaped_string, - STATE(1399), 1, + STATE(250), 1, sym__expression, - STATE(2002), 1, + STATE(644), 1, sym_object_access, - STATE(2748), 1, + STATE(1007), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(846), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(361), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(849), 2, + sym_comment, + sym_include, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116336,76 +117023,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71310] = 30, + [71577] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(2160), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(249), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1434), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, - STATE(847), 2, + STATE(850), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116427,76 +117114,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71431] = 30, + [71698] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(877), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(885), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(887), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(893), 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(2160), 1, + ACTIONS(895), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(897), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(899), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(901), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(903), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(905), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(907), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(909), 1, + aux_sym_scope_tuning_token1, + ACTIONS(911), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(913), 1, + aux_sym_can_find_expression_token1, + ACTIONS(915), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(919), 1, + sym__escaped_string, + STATE(245), 1, + sym__expression, + STATE(644), 1, sym_object_access, - STATE(43), 1, + STATE(1007), 1, sym__decimal_literal, - STATE(1413), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(881), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(917), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(361), 2, sym_function_call, sym_new_expression, - STATE(848), 2, + STATE(851), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(883), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1002), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1010), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116518,76 +117205,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71552] = 30, + [71819] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1419), 1, + STATE(1171), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(849), 2, + STATE(852), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116609,76 +117296,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71673] = 30, + [71940] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1435), 1, + STATE(2872), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(850), 2, + STATE(853), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116700,76 +117387,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71794] = 30, + [72061] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2160), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(2162), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2164), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2166), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2168), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(2170), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(2172), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(2174), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(2176), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1439), 1, + STATE(1341), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(851), 2, + STATE(854), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116791,76 +117478,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71915] = 30, + [72182] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2750), 1, + STATE(2692), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(852), 2, + STATE(855), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116882,76 +117569,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72036] = 30, + [72303] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2745), 1, + STATE(1311), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(853), 2, + STATE(856), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116973,76 +117660,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72157] = 30, + [72424] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(238), 1, + STATE(1363), 1, sym__expression, - STATE(668), 1, + STATE(2436), 1, sym_object_access, - STATE(1000), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(865), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, - sym_function_call, - sym_new_expression, - STATE(854), 2, + STATE(857), 2, sym_comment, sym_include, - ACTIONS(867), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117064,76 +117751,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72278] = 30, + [72545] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2890), 1, + STATE(1321), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(855), 2, + STATE(858), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117155,144 +117842,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72399] = 7, + [72666] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2338), 1, + ACTIONS(661), 1, sym_identifier, - 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, + ACTIONS(663), 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(669), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(671), 1, anon_sym_LBRACK, + ACTIONS(673), 1, anon_sym_LPAREN, + ACTIONS(677), 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(693), 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(699), 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, - [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, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1762), 1, + aux_sym_input_expression_token1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2741), 1, + STATE(1336), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(857), 2, + STATE(859), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117314,76 +117933,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72595] = 30, + [72787] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(781), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(791), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(797), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(799), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(801), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(803), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(805), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(807), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(809), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(813), 1, - aux_sym_scope_tuning_token1, - ACTIONS(815), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(817), 1, - aux_sym_can_find_expression_token1, - ACTIONS(819), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - sym__escaped_string, - ACTIONS(1447), 1, - anon_sym_LPAREN, - STATE(1002), 1, - sym__expression, - STATE(1065), 1, + STATE(13), 1, sym_object_access, - STATE(1125), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(785), 2, + STATE(1335), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(821), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(858), 2, - sym_comment, - sym_include, - STATE(1059), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(787), 4, + STATE(860), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1093), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1107), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117405,76 +118024,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72716] = 30, + [72908] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1361), 1, + STATE(1333), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(859), 2, + STATE(861), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117496,76 +118115,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72837] = 30, + [73029] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1750), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(1752), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(1754), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(1756), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(1758), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(1760), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(1762), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, - aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(1764), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, - aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(1766), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, - sym__escaped_string, - STATE(239), 1, - sym__expression, - STATE(668), 1, + STATE(13), 1, sym_object_access, - STATE(1000), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(865), 2, + STATE(1332), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(860), 2, + STATE(862), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117587,76 +118206,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72958] = 30, + [73150] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(1966), 1, + STATE(2012), 1, sym__expression, - STATE(2002), 1, + STATE(2436), 1, sym_object_access, - STATE(2748), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(861), 2, + STATE(863), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117678,76 +118297,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73079] = 30, + [73271] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1657), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(1659), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(1661), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(1663), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(1665), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(1667), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(1669), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, - aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(1671), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, - aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(1673), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, - sym__escaped_string, - STATE(240), 1, - sym__expression, - STATE(668), 1, + STATE(13), 1, sym_object_access, - STATE(1000), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(865), 2, + STATE(2556), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(862), 2, + STATE(864), 2, sym_comment, sym_include, - ACTIONS(867), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117769,76 +118388,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73200] = 30, + [73392] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(1967), 1, + STATE(2424), 1, sym__expression, - STATE(2002), 1, + STATE(2481), 1, sym_object_access, - STATE(2748), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(863), 2, + STATE(865), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117860,76 +118479,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73321] = 30, + [73513] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(1968), 1, + STATE(2423), 1, sym__expression, - STATE(2002), 1, + STATE(2481), 1, sym_object_access, - STATE(2748), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(864), 2, + STATE(866), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117951,76 +118570,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73442] = 30, + [73634] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(241), 1, + STATE(2421), 1, sym__expression, - STATE(668), 1, + STATE(2481), 1, sym_object_access, - STATE(1000), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(865), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, - sym_function_call, - sym_new_expression, - STATE(865), 2, + STATE(867), 2, sym_comment, sym_include, - ACTIONS(867), 4, + STATE(2560), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118042,76 +118661,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73563] = 30, + [73755] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(1969), 1, + STATE(2420), 1, sym__expression, - STATE(2002), 1, + STATE(2481), 1, sym_object_access, - STATE(2748), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(866), 2, + STATE(868), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118133,76 +118752,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73684] = 30, + [73876] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(1970), 1, + STATE(2419), 1, sym__expression, - STATE(2002), 1, + STATE(2481), 1, sym_object_access, - STATE(2748), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(867), 2, + STATE(869), 2, sym_comment, sym_include, - STATE(2498), 2, + STATE(2560), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118224,76 +118843,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73805] = 30, + [73997] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(2128), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(2136), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(2140), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(2144), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(2146), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(2148), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(2150), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(2152), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(2154), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(2156), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(2158), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(2160), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(2162), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(2164), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(2168), 1, sym__escaped_string, - STATE(224), 1, + STATE(2418), 1, sym__expression, - STATE(668), 1, + STATE(2481), 1, sym_object_access, - STATE(1000), 1, + STATE(3002), 1, sym__decimal_literal, - ACTIONS(865), 2, + ACTIONS(2132), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(2166), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, - sym_function_call, - sym_new_expression, - STATE(868), 2, + STATE(870), 2, sym_comment, sym_include, - ACTIONS(867), 4, + STATE(2560), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2134), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1014), 4, + STATE(2929), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(997), 21, + STATE(2924), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118315,167 +118934,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73926] = 30, + [74118] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(859), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(861), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(871), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(873), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(2202), 1, aux_sym_unary_expression_token1, - ACTIONS(879), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(881), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(883), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(885), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(887), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(889), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(891), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(893), 1, + ACTIONS(2218), 1, aux_sym_scope_tuning_token1, - ACTIONS(895), 1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(897), 1, + ACTIONS(2222), 1, aux_sym_can_find_expression_token1, - ACTIONS(899), 1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - ACTIONS(903), 1, + ACTIONS(2228), 1, sym__escaped_string, - STATE(243), 1, + STATE(2097), 1, sym__expression, - STATE(668), 1, + STATE(2400), 1, sym_object_access, - STATE(1000), 1, + STATE(2909), 1, sym__decimal_literal, - ACTIONS(865), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(901), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, - sym_function_call, - sym_new_expression, - STATE(869), 2, + STATE(871), 2, sym_comment, sym_include, - ACTIONS(867), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1014), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(997), 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, - [74047] = 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(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(43), 1, - sym__decimal_literal, - STATE(1349), 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, + STATE(2476), 2, sym_function_call, sym_new_expression, - STATE(870), 2, - sym_comment, - sym_include, - ACTIONS(651), 4, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118497,76 +119025,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74168] = 30, + [74239] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, + ACTIONS(2218), 1, aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2098), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1394), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(871), 2, + STATE(872), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118588,76 +119116,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74289] = 30, + [74360] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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(2298), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2100), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1332), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(872), 2, + STATE(873), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118679,76 +119207,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74410] = 30, + [74481] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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(2298), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2101), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1345), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(873), 2, + STATE(874), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118770,142 +119298,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74531] = 5, + [74602] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(793), 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(797), 1, + anon_sym_LBRACE, + ACTIONS(805), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(807), 1, anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(811), 1, aux_sym_unary_expression_token1, + ACTIONS(813), 1, aux_sym_unary_expression_token2, + ACTIONS(815), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(817), 1, aux_sym_temp_table_expression_token1, + ACTIONS(819), 1, aux_sym_current_changed_expression_token1, + ACTIONS(821), 1, aux_sym_locked_expression_token1, + ACTIONS(823), 1, aux_sym_dataset_expression_token1, + ACTIONS(825), 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(829), 1, aux_sym_scope_tuning_token1, + ACTIONS(831), 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(833), 1, aux_sym_can_find_expression_token1, + ACTIONS(835), 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, - [74602] = 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, + ACTIONS(847), 1, sym__escaped_string, - 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, + ACTIONS(1388), 1, + anon_sym_LPAREN, + STATE(991), 1, + sym__expression, + STATE(1083), 1, sym_object_access, - STATE(43), 1, + STATE(1107), 1, sym__decimal_literal, - STATE(1343), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(801), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(837), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(875), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1045), 2, + sym_function_call, + sym_new_expression, + ACTIONS(803), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1094), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1104), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118932,71 +119394,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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(2298), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(2013), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1331), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(876), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119023,71 +119485,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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(2298), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2102), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1330), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(877), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119114,71 +119576,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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(2298), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(2014), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1324), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(878), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119205,71 +119667,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2188), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2190), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2196), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2198), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2200), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2202), 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(2298), 1, + ACTIONS(2204), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2206), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2208), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2210), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2212), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2214), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2216), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2218), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2220), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2222), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2224), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2228), 1, + sym__escaped_string, + STATE(2105), 1, + sym__expression, + STATE(2400), 1, sym_object_access, - STATE(43), 1, + STATE(2909), 1, sym__decimal_literal, - STATE(1326), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2192), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2226), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(879), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2476), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2194), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2855), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119296,71 +119758,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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(2298), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(2015), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1350), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(880), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119387,71 +119849,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(977), 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, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(993), 1, + aux_sym_scope_tuning_token1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(997), 1, + aux_sym_can_find_expression_token1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1003), 1, + sym__escaped_string, + STATE(194), 1, + sym__expression, + STATE(327), 1, sym_object_access, - STATE(43), 1, + STATE(355), 1, sym__decimal_literal, - STATE(2688), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(881), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119478,71 +119940,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 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(2298), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1280), 1, + sym__escaped_string, + STATE(1038), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1338), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(882), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119569,71 +120031,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2298), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(2300), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2302), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2304), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2306), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(2308), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(2310), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(2312), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(2314), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1336), 1, + STATE(1481), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(883), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119660,71 +120122,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(2202), 1, + STATE(1361), 1, sym__expression, - STATE(2433), 1, + STATE(2436), 1, sym_object_access, - STATE(2958), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(2182), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(884), 2, sym_comment, sym_include, - STATE(2525), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119751,71 +120213,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2207), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2885), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(885), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119842,71 +120304,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2208), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(1177), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(886), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119933,71 +120395,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, - aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, + aux_sym_unary_expression_token2, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, - sym__escaped_string, - STATE(2211), 1, - sym__expression, - STATE(2433), 1, + STATE(13), 1, sym_object_access, - STATE(2958), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2182), 2, + STATE(2888), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(887), 2, sym_comment, sym_include, - STATE(2525), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120024,71 +120486,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, + ACTIONS(1280), 1, sym__escaped_string, - STATE(2213), 1, + STATE(1034), 1, sym__expression, - STATE(2433), 1, + STATE(1106), 1, sym_object_access, - STATE(2958), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(2182), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(888), 2, sym_comment, sym_include, - STATE(2525), 2, + STATE(1074), 2, sym_function_call, sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120115,71 +120577,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2178), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(2188), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(2192), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(2194), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2196), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2198), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2200), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2202), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2204), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2206), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2208), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(2210), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2212), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(2214), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2218), 1, + ACTIONS(1280), 1, sym__escaped_string, - STATE(2214), 1, + STATE(1029), 1, sym__expression, - STATE(2433), 1, + STATE(1106), 1, sym_object_access, - STATE(2958), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(2182), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(2216), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(889), 2, sym_comment, sym_include, - STATE(2525), 2, + STATE(1074), 2, sym_function_call, sym_new_expression, - ACTIONS(2184), 4, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2904), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2906), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120206,71 +120668,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, + ACTIONS(1280), 1, sym__escaped_string, - STATE(1939), 1, + STATE(1028), 1, sym__expression, - STATE(2283), 1, + STATE(1106), 1, sym_object_access, - STATE(2886), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(2260), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(890), 2, sym_comment, sym_include, - STATE(2500), 2, + STATE(1074), 2, sym_function_call, sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120297,71 +120759,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, + ACTIONS(1280), 1, sym__escaped_string, - STATE(1941), 1, + STATE(1026), 1, sym__expression, - STATE(2283), 1, + STATE(1106), 1, sym_object_access, - STATE(2886), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(2260), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(891), 2, sym_comment, sym_include, - STATE(2500), 2, + STATE(1074), 2, sym_function_call, sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120388,71 +120850,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(1250), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, + ACTIONS(1266), 1, aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, + ACTIONS(1274), 1, aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, + ACTIONS(1280), 1, sym__escaped_string, - STATE(1942), 1, + STATE(1024), 1, sym__expression, - STATE(2283), 1, + STATE(1106), 1, sym_object_access, - STATE(2886), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(2260), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(892), 2, sym_comment, sym_include, - STATE(2500), 2, + STATE(1074), 2, sym_function_call, sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120479,71 +120941,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1943), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(1458), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(893), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120570,71 +121032,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, - sym__escaped_string, - STATE(1944), 1, - sym__expression, - STATE(2283), 1, + STATE(13), 1, sym_object_access, - STATE(2886), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(2260), 2, + STATE(1302), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(894), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120661,71 +121123,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2256), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(2264), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(2266), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(2270), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(2272), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(2274), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2276), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2278), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2280), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(2282), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(2284), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(2286), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(2288), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(2290), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(2292), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2296), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(1945), 1, + STATE(190), 1, sym__expression, - STATE(2283), 1, + STATE(327), 1, sym_object_access, - STATE(2886), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(2260), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(2294), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(261), 2, + sym_function_call, + sym_new_expression, STATE(895), 2, sym_comment, sym_include, - STATE(2500), 2, - sym_function_call, - sym_new_expression, - ACTIONS(2262), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2815), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2810), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120752,71 +121214,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1037), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2859), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(896), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120843,71 +121305,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(2016), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(1312), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(897), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120934,71 +121396,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1687), 1, + aux_sym_input_expression_token1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2678), 1, + STATE(2833), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(898), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121025,71 +121487,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(1818), 1, + STATE(197), 1, sym__expression, - STATE(2002), 1, + STATE(327), 1, sym_object_access, - STATE(2748), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(1746), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(261), 2, + sym_function_call, + sym_new_expression, STATE(899), 2, sym_comment, sym_include, - STATE(2498), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121116,71 +121578,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1236), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1238), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1244), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1246), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1250), 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, + ACTIONS(1252), 1, aux_sym_unary_expression_token2, - ACTIONS(2240), 1, + ACTIONS(1254), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2242), 1, + ACTIONS(1256), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2244), 1, + ACTIONS(1258), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2246), 1, + ACTIONS(1260), 1, aux_sym_locked_expression_token1, - ACTIONS(2248), 1, + ACTIONS(1262), 1, aux_sym_dataset_expression_token1, - ACTIONS(2250), 1, + ACTIONS(1264), 1, aux_sym_input_expression_token1, - ACTIONS(2252), 1, + ACTIONS(1266), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(2254), 1, + ACTIONS(1274), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1276), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1280), 1, + sym__escaped_string, + STATE(1033), 1, + sym__expression, + STATE(1106), 1, sym_object_access, - STATE(43), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1215), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1240), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1278), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(900), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(1074), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1242), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(1127), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(1152), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121207,71 +121669,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(997), 1, + aux_sym_can_find_expression_token1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1003), 1, + sym__escaped_string, + STATE(198), 1, + sym__expression, + STATE(327), 1, sym_object_access, - STATE(43), 1, + STATE(355), 1, sym__decimal_literal, - STATE(1365), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(261), 2, sym_function_call, sym_new_expression, STATE(901), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121298,71 +121760,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(965), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(971), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(979), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(981), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(983), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(985), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(987), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(989), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(991), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, + ACTIONS(993), 1, aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(995), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, + ACTIONS(997), 1, aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(999), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, + ACTIONS(1003), 1, sym__escaped_string, - STATE(1036), 1, + STATE(189), 1, sym__expression, - STATE(1115), 1, + STATE(327), 1, sym_object_access, - STATE(1135), 1, + STATE(355), 1, sym__decimal_literal, - ACTIONS(1292), 2, + ACTIONS(967), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(1001), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(261), 2, + sym_function_call, + sym_new_expression, STATE(902), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(969), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(348), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(352), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121389,71 +121851,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(1035), 1, + STATE(1362), 1, sym__expression, - STATE(1115), 1, + STATE(2436), 1, sym_object_access, - STATE(1135), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(1292), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(903), 2, sym_comment, sym_include, - STATE(1078), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121480,71 +121942,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1904), 1, + sym__escaped_string, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, + ACTIONS(2330), 1, aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1034), 1, - sym__expression, - STATE(1115), 1, + STATE(191), 1, sym_object_access, - STATE(1135), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(1296), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(214), 2, + sym_function_call, + sym_new_expression, STATE(904), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121571,71 +122033,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, - aux_sym_input_expression_token1, - ACTIONS(1318), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(1033), 1, - sym__expression, - STATE(1115), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(2844), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(905), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121662,71 +122124,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1032), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(1179), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(906), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121753,71 +122215,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, + ACTIONS(2330), 1, aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1362), 1, + STATE(1309), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(907), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121844,71 +122306,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(1804), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1806), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1808), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1810), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1812), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1814), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1816), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1818), 1, + ACTIONS(2330), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1820), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(2442), 1, + STATE(1300), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(908), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121935,71 +122397,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1904), 1, + sym__escaped_string, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(2330), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1379), 1, - sym__expression, - STATE(2002), 1, + STATE(191), 1, sym_object_access, - STATE(2748), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1299), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(214), 2, + sym_function_call, + sym_new_expression, STATE(909), 2, sym_comment, sym_include, - STATE(2498), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122026,71 +122488,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1904), 1, + sym__escaped_string, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(2330), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(201), 1, - sym__expression, - STATE(270), 1, + STATE(191), 1, sym_object_access, - STATE(363), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(1295), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(910), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122117,71 +122579,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(1904), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(2316), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(2318), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(2320), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(2322), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(2324), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(2326), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(2328), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, + ACTIONS(2330), 1, aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(2332), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(2334), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1374), 1, + STATE(1306), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(911), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122208,71 +122670,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, - aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(204), 1, - sym__expression, - STATE(270), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(2843), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(912), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122299,71 +122761,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(205), 1, + STATE(2132), 1, sym__expression, - STATE(270), 1, + STATE(2436), 1, sym_object_access, - STATE(363), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(945), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, - sym_function_call, - sym_new_expression, STATE(913), 2, sym_comment, sym_include, - ACTIONS(947), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122390,71 +122852,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, - aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, - aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, - sym__escaped_string, - STATE(194), 1, - sym__expression, - STATE(270), 1, + STATE(13), 1, sym_object_access, - STATE(363), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(945), 2, + STATE(1307), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(914), 2, sym_comment, sym_include, - ACTIONS(947), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122481,71 +122943,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(199), 1, + STATE(1388), 1, sym__expression, - STATE(270), 1, + STATE(2436), 1, sym_object_access, - STATE(363), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(945), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, - sym_function_call, - sym_new_expression, STATE(915), 2, sym_comment, sym_include, - ACTIONS(947), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122572,71 +123034,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(943), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(949), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(951), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(953), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(957), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(959), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(961), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(963), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(965), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(967), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(969), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(971), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(973), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(975), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(977), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(981), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(192), 1, + STATE(1391), 1, sym__expression, - STATE(270), 1, + STATE(2436), 1, sym_object_access, - STATE(363), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(945), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(979), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 2, - sym_function_call, - sym_new_expression, STATE(916), 2, sym_comment, sym_include, - ACTIONS(947), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(382), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(384), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122663,71 +123125,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1878), 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(2064), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(2066), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2068), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2070), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2072), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(2074), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(2076), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(2078), 1, + ACTIONS(1894), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(2080), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(43), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1177), 1, + STATE(1147), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(917), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122754,71 +123216,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1297), 1, + STATE(1173), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(918), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122845,71 +123307,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1816), 1, + aux_sym_input_expression_token1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2734), 1, + STATE(1301), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(919), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122936,71 +123398,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1726), 1, + aux_sym_input_expression_token1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2676), 1, + STATE(2684), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(920), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123027,71 +123489,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(311), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1296), 1, + STATE(1160), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(921), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123118,71 +123580,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(311), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1295), 1, + STATE(1159), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(922), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123209,71 +123671,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(311), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1305), 1, + STATE(1158), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(923), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123300,71 +123762,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(1898), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + ACTIONS(1904), 1, + sym__escaped_string, + STATE(191), 1, sym_object_access, - STATE(311), 1, + STATE(318), 1, sym__decimal_literal, - STATE(1304), 1, + STATE(1157), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(214), 2, sym_function_call, sym_new_expression, STATE(924), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123391,71 +123853,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(2288), 1, aux_sym_unary_expression_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - ACTIONS(2318), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(2320), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2322), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2324), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2326), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(2328), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(2330), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(2332), 1, + ACTIONS(2304), 1, aux_sym_scope_tuning_token1, - ACTIONS(2334), 1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(2336), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(193), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2266), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(311), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1300), 1, - sym__expression, - ACTIONS(1966), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, - sym_function_call, - sym_new_expression, STATE(925), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123482,71 +123944,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(1864), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(1872), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(1874), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(1876), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(1878), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(1880), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1882), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1884), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1886), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1888), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1890), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1892), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, + ACTIONS(1894), 1, aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1896), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, + ACTIONS(1898), 1, aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, + ACTIONS(1904), 1, sym__escaped_string, - STATE(1367), 1, - sym__expression, - STATE(2002), 1, + STATE(191), 1, sym_object_access, - STATE(2748), 1, + STATE(318), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(1156), 1, + sym__expression, + ACTIONS(1868), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(1902), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(214), 2, + sym_function_call, + sym_new_expression, STATE(926), 2, sym_comment, sym_include, - STATE(2498), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1748), 4, + ACTIONS(1870), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(269), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(267), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123573,71 +124035,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2670), 1, + STATE(2756), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(927), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123664,71 +124126,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(1850), 1, + aux_sym_input_expression_token1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(1862), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(1408), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2733), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(928), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123755,71 +124217,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1146), 1, + STATE(1397), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(929), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123846,71 +124308,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2742), 1, + STATE(2726), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(930), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123937,71 +124399,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2102), 1, + aux_sym_input_expression_token1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2725), 1, + STATE(1170), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(931), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124028,71 +124490,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1705), 1, + aux_sym_input_expression_token1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2721), 1, + STATE(1876), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(932), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124119,71 +124581,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, - aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, + ACTIONS(707), 1, sym__escaped_string, - STATE(193), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1131), 1, + STATE(2753), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(933), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124210,71 +124672,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1133), 1, + STATE(1398), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(934), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124301,71 +124763,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1134), 1, + STATE(1400), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(935), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124392,71 +124854,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1136), 1, + STATE(1403), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(936), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124483,71 +124945,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1962), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1972), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1974), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1978), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1980), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1982), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1984), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1986), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1988), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1990), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1992), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1994), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1996), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1998), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2002), 1, - sym__escaped_string, - STATE(193), 1, + STATE(13), 1, sym_object_access, - STATE(311), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1138), 1, + STATE(1359), 1, sym__expression, - ACTIONS(1966), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(2000), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(213), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(937), 2, sym_comment, sym_include, - ACTIONS(1968), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(316), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(314), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124574,71 +125036,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1288), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1290), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1296), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1298), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1300), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1302), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1304), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(711), 1, aux_sym_unary_expression_token2, - ACTIONS(1306), 1, + ACTIONS(713), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1308), 1, + ACTIONS(715), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1310), 1, + ACTIONS(717), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1312), 1, + ACTIONS(719), 1, aux_sym_locked_expression_token1, - ACTIONS(1314), 1, + ACTIONS(721), 1, aux_sym_dataset_expression_token1, - ACTIONS(1316), 1, + ACTIONS(723), 1, aux_sym_input_expression_token1, - ACTIONS(1318), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1320), 1, + ACTIONS(729), 1, aux_sym_if_statement_token1, - ACTIONS(1326), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1328), 1, + ACTIONS(739), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1332), 1, - sym__escaped_string, - STATE(1031), 1, - sym__expression, - STATE(1115), 1, + STATE(13), 1, sym_object_access, - STATE(1135), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1292), 2, + STATE(1409), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1330), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(12), 2, + sym_function_call, + sym_new_expression, STATE(938), 2, sym_comment, sym_include, - STATE(1078), 2, - sym_function_call, - sym_new_expression, - ACTIONS(1294), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1137), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1141), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124665,71 +125127,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2693), 1, + STATE(1877), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(939), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124756,71 +125218,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1372), 1, + STATE(1878), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(940), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124847,71 +125309,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1822), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1824), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1826), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1828), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1830), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1832), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1834), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1836), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1838), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1301), 1, + STATE(1879), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(941), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124938,71 +125400,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1686), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, - aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1509), 1, + STATE(2187), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(942), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125029,71 +125491,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2726), 1, + STATE(2797), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(943), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125120,162 +125582,71 @@ static const uint16_t ts_small_parse_table[] = { 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(2690), 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(944), 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, - [83072] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(645), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1370), 1, + STATE(1880), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(945), 2, + STATE(944), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125297,76 +125668,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83193] = 30, + [83072] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1369), 1, + STATE(2814), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(946), 2, + STATE(945), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125388,76 +125759,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83314] = 30, + [83193] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1384), 1, + STATE(1297), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(947), 2, + STATE(946), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125479,76 +125850,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83435] = 30, + [83314] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1363), 1, + STATE(2799), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(948), 2, + STATE(947), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125570,76 +125941,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83556] = 30, + [83435] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1944), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1946), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1948), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1950), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1952), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1954), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1956), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1958), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1960), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2526), 1, + STATE(2801), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(949), 2, + STATE(948), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125661,76 +126032,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83677] = 30, + [83556] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1388), 1, + STATE(2802), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(950), 2, + STATE(949), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125752,76 +126123,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83798] = 30, + [83677] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1371), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2804), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(951), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(950), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125843,76 +126214,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83919] = 30, + [83798] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1742), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1744), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1752), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1754), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1756), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1758), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1760), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1762), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1764), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1766), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1768), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1770), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1772), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1774), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1776), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1778), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1782), 1, - sym__escaped_string, - STATE(1404), 1, - sym__expression, - STATE(2002), 1, + STATE(13), 1, sym_object_access, - STATE(2748), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1746), 2, + STATE(2805), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1780), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(952), 2, - sym_comment, - sym_include, - STATE(2498), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1748), 4, + STATE(951), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2749), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2700), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125934,76 +126305,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84040] = 30, + [83919] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1506), 1, + STATE(2664), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(953), 2, + STATE(952), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126025,76 +126396,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84161] = 30, + [84040] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1686), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1501), 1, + STATE(2707), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(954), 2, + STATE(953), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126116,76 +126487,167 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84282] = 30, + [84161] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 1, aux_sym_unary_expression_token1, - ACTIONS(677), 1, + ACTIONS(2290), 1, + aux_sym_unary_expression_token2, + ACTIONS(2292), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(2294), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(2296), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(2298), 1, + aux_sym_locked_expression_token1, + ACTIONS(2300), 1, + aux_sym_dataset_expression_token1, + ACTIONS(2302), 1, + aux_sym_input_expression_token1, + ACTIONS(2304), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(2306), 1, + aux_sym_if_statement_token1, + ACTIONS(2308), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(2310), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(2314), 1, sym__escaped_string, - ACTIONS(1686), 1, + STATE(2058), 1, + sym__expression, + STATE(2386), 1, + sym_object_access, + STATE(2785), 1, + sym__decimal_literal, + ACTIONS(2278), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(2312), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(954), 2, + sym_comment, + sym_include, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(2784), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(2793), 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, + [84282] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2274), 1, + sym_identifier, + ACTIONS(2276), 1, + anon_sym_LBRACE, + ACTIONS(2282), 1, + sym__integer_literal, + ACTIONS(2284), 1, + anon_sym_LBRACK, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, + aux_sym_unary_expression_token1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2265), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1499), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(955), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126212,71 +126674,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2310), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(2884), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(956), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126303,71 +126765,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(695), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(697), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(699), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(701), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(703), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(705), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(707), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(709), 1, + ACTIONS(2304), 1, aux_sym_scope_tuning_token1, - ACTIONS(713), 1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(723), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2309), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1378), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(957), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126394,71 +126856,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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(1686), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2308), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(1504), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(958), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126485,71 +126947,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(2302), 1, + aux_sym_input_expression_token1, + ACTIONS(2304), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(2308), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(2314), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(2307), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(2637), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(959), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126576,71 +127038,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(2282), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(2284), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(2286), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(2288), 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, + ACTIONS(2290), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2292), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2294), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2296), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2298), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2300), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2302), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2304), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2306), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2308), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2310), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(2314), 1, + sym__escaped_string, + STATE(2306), 1, + sym__expression, + STATE(2386), 1, sym_object_access, - STATE(43), 1, + STATE(2785), 1, sym__decimal_literal, - STATE(2752), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(2278), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(2312), 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, + STATE(2524), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2280), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2784), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2793), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126667,71 +127129,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, - aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2871), 1, + STATE(2190), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(961), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126758,71 +127220,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_unary_expression_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2868), 1, + STATE(1470), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(962), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126849,71 +127311,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1784), 1, + ACTIONS(1693), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1695), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1697), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1699), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1701), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1703), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1705), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1707), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1709), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2867), 1, + STATE(1888), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(963), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126940,71 +127402,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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(1686), 1, + aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1688), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1690), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1692), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1694), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1696), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1698), 1, - aux_sym_input_expression_token1, - ACTIONS(1700), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1702), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1531), 1, + STATE(2193), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(964), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127031,71 +127493,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 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_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, - aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2640), 1, + STATE(2191), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(965), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127122,71 +127584,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - aux_sym_unary_expression_token1, ACTIONS(677), 1, + aux_sym_unary_expression_token1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(1665), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1667), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1669), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1671), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1673), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1681), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2645), 1, + STATE(1317), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(966), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127213,71 +127675,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(693), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2642), 1, + STATE(2772), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(967), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127304,71 +127766,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(2102), 1, + aux_sym_input_expression_token1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2643), 1, + STATE(1175), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(968), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127390,142 +127852,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85976] = 5, + [85976] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(969), 2, - sym_comment, - sym_include, - ACTIONS(108), 4, - sym__namedot, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(110), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(661), 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(663), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(671), 1, anon_sym_LBRACK, + ACTIONS(673), 1, anon_sym_LPAREN, + ACTIONS(677), 1, aux_sym_unary_expression_token1, + ACTIONS(679), 1, aux_sym_unary_expression_token2, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, + ACTIONS(689), 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(693), 1, aux_sym_scope_tuning_token1, + ACTIONS(697), 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(699), 1, aux_sym_can_find_expression_token1, + ACTIONS(703), 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, - [86047] = 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, + ACTIONS(707), 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, + ACTIONS(1601), 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, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2862), 1, + STATE(2782), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(970), 2, + STATE(969), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127547,76 +127943,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86168] = 30, + [86097] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 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, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1786), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1788), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1790), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1792), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1794), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1796), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1798), 1, + ACTIONS(1852), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1800), 1, + ACTIONS(1856), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(1862), 1, + sym__escaped_string, + STATE(1355), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2653), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, - STATE(971), 2, + STATE(970), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127638,76 +128034,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86289] = 30, + [86218] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1850), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, + ACTIONS(1862), 1, sym__escaped_string, - STATE(1537), 1, + STATE(1368), 1, sym__expression, - STATE(2197), 1, + STATE(2436), 1, sym_object_access, - STATE(2691), 1, + STATE(2735), 1, sym__decimal_literal, - ACTIONS(1844), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(972), 2, + STATE(971), 2, sym_comment, sym_include, - STATE(2459), 2, + STATE(2445), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127729,76 +128125,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86410] = 30, + [86339] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1466), 1, + STATE(1487), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - STATE(973), 2, + STATE(972), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127820,76 +128216,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86531] = 30, + [86460] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1692), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1486), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(974), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(973), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -127911,76 +128307,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86652] = 30, + [86581] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1693), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1485), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(975), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(974), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128002,76 +128398,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86773] = 30, + [86702] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1695), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1484), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(976), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(975), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128093,76 +128489,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86894] = 30, + [86823] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(725), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1696), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(1483), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(977), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(976), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128184,76 +128580,76 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [87015] = 30, + [86944] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1840), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(1842), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(1848), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(1850), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(1852), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1854), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(1856), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1714), 1, aux_sym_unary_expression_token2, - ACTIONS(1858), 1, + ACTIONS(1716), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1860), 1, + ACTIONS(1718), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1862), 1, + ACTIONS(1720), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1864), 1, + ACTIONS(1722), 1, aux_sym_locked_expression_token1, - ACTIONS(1866), 1, + ACTIONS(1724), 1, aux_sym_dataset_expression_token1, - ACTIONS(1868), 1, + ACTIONS(1726), 1, aux_sym_input_expression_token1, - ACTIONS(1870), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1872), 1, + ACTIONS(1728), 1, aux_sym_if_statement_token1, - ACTIONS(1874), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1876), 1, + ACTIONS(1730), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1880), 1, - sym__escaped_string, - STATE(1697), 1, - sym__expression, - STATE(2197), 1, + STATE(13), 1, sym_object_access, - STATE(2691), 1, + STATE(41), 1, sym__decimal_literal, - ACTIONS(1844), 2, + STATE(2825), 1, + sym__expression, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(1878), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(978), 2, - sym_comment, - sym_include, - STATE(2459), 2, + STATE(12), 2, sym_function_call, sym_new_expression, - ACTIONS(1846), 4, + STATE(977), 2, + sym_comment, + sym_include, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2692), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2850), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128275,76 +128671,142 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, + [87065] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(978), 2, + sym_comment, + sym_include, + ACTIONS(121), 4, + sym__namedot, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(123), 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, [87136] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1464), 1, + STATE(1305), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(979), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128371,71 +128833,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2090), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2092), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2094), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2096), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2098), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2100), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2102), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2104), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2106), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1462), 1, + STATE(1178), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(980), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128462,71 +128924,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, + ACTIONS(725), 1, aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(2230), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(2232), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(2234), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(2236), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(2238), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(2240), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(2242), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(2244), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(2246), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1474), 1, + STATE(1459), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(981), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128553,71 +129015,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(1830), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(1832), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(1836), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(1838), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1840), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1842), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1844), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1846), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1848), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, + ACTIONS(1850), 1, + aux_sym_input_expression_token1, + ACTIONS(1852), 1, aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1854), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, + ACTIONS(1856), 1, aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1858), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(1862), 1, sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(1364), 1, + sym__expression, + STATE(2436), 1, sym_object_access, - STATE(43), 1, + STATE(2735), 1, sym__decimal_literal, - STATE(2657), 1, - sym__expression, - ACTIONS(649), 2, + ACTIONS(1826), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(1860), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, - sym_function_call, - sym_new_expression, STATE(982), 2, sym_comment, sym_include, - ACTIONS(651), 4, + STATE(2445), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1828), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(2773), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(2734), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128644,71 +129106,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(683), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, aux_sym_can_find_expression_token1, - ACTIONS(691), 1, + ACTIONS(707), 1, sym__escaped_string, - ACTIONS(709), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1722), 1, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, + ACTIONS(1687), 1, aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1473), 1, + STATE(2828), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(983), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128735,71 +129197,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 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, + ACTIONS(679), 1, aux_sym_unary_expression_token2, - ACTIONS(1724), 1, + ACTIONS(681), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1726), 1, + ACTIONS(683), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1728), 1, + ACTIONS(685), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1730), 1, + ACTIONS(687), 1, aux_sym_locked_expression_token1, - ACTIONS(1732), 1, + ACTIONS(689), 1, aux_sym_dataset_expression_token1, - ACTIONS(1734), 1, - aux_sym_input_expression_token1, - ACTIONS(1736), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(697), 1, aux_sym_if_statement_token1, - ACTIONS(1738), 1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(703), 1, aux_sym_accumulate_expression_token1, - STATE(15), 1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(1475), 1, + STATE(2192), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(984), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128826,71 +129288,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(645), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(647), 1, + ACTIONS(663), 1, anon_sym_LBRACE, - ACTIONS(653), 1, + ACTIONS(669), 1, sym__integer_literal, - ACTIONS(655), 1, + ACTIONS(671), 1, anon_sym_LBRACK, - ACTIONS(657), 1, + ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(677), 1, aux_sym_unary_expression_token1, - ACTIONS(663), 1, + ACTIONS(693), 1, + aux_sym_scope_tuning_token1, + ACTIONS(699), 1, + aux_sym_can_find_expression_token1, + ACTIONS(707), 1, + sym__escaped_string, + ACTIONS(1675), 1, aux_sym_unary_expression_token2, - ACTIONS(665), 1, + ACTIONS(1677), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(667), 1, + ACTIONS(1679), 1, aux_sym_temp_table_expression_token1, - ACTIONS(669), 1, + ACTIONS(1681), 1, aux_sym_current_changed_expression_token1, - ACTIONS(671), 1, + ACTIONS(1683), 1, aux_sym_locked_expression_token1, - ACTIONS(673), 1, + ACTIONS(1685), 1, aux_sym_dataset_expression_token1, - ACTIONS(677), 1, - aux_sym_scope_tuning_token1, - ACTIONS(681), 1, + ACTIONS(1687), 1, + aux_sym_input_expression_token1, + ACTIONS(1689), 1, aux_sym_if_statement_token1, - ACTIONS(683), 1, - aux_sym_can_find_expression_token1, - ACTIONS(687), 1, + ACTIONS(1691), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, - sym__escaped_string, - ACTIONS(1601), 1, - aux_sym_input_expression_token1, - STATE(15), 1, + STATE(13), 1, sym_object_access, - STATE(43), 1, + STATE(41), 1, sym__decimal_literal, - STATE(2655), 1, + STATE(2719), 1, sym__expression, - ACTIONS(649), 2, + ACTIONS(665), 2, sym_null_expression, sym_date_literal, - ACTIONS(689), 2, + ACTIONS(705), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(13), 2, + STATE(12), 2, sym_function_call, sym_new_expression, STATE(985), 2, sym_comment, sym_include, - ACTIONS(651), 4, + ACTIONS(667), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(29), 4, + STATE(52), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(30), 21, + STATE(37), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -128920,11 +129382,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(986), 2, sym_comment, sym_include, - ACTIONS(206), 3, + ACTIONS(192), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(208), 52, + ACTIONS(194), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128977,23 +129439,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88053] = 5, + [88053] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1230), 1, + sym__escaped_string, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, STATE(987), 2, sym_comment, sym_include, - ACTIONS(210), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(212), 52, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(1228), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129003,6 +129495,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, @@ -129012,9 +129506,40 @@ 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, + [88139] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(988), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(1202), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129030,35 +129555,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, - [88123] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(988), 2, - sym_comment, - sym_include, - ACTIONS(174), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(176), 52, - anon_sym_SLASH, + ACTIONS(1200), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129068,6 +129567,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, @@ -129077,49 +129578,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, - [88193] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [88223] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(123), 1, aux_sym_variable_tuning_token2, STATE(989), 2, sym_comment, sym_include, - ACTIONS(108), 53, + ACTIONS(121), 53, sym__namedot, anon_sym_COLON, sym__terminator, @@ -129173,7 +129650,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_definition_token1, aux_sym_index_definition_token1, aux_sym_prompt_for_statement_token2, - [88265] = 5, + [88295] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -129181,11 +129658,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(990), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(180), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 52, + ACTIONS(182), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -129238,34 +129715,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88335] = 12, + [88365] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(407), 1, + ACTIONS(1133), 1, + sym__escaped_string, + STATE(607), 1, sym__comparison_operator, - STATE(408), 1, + STATE(636), 1, sym__multiplicative_operator, - STATE(413), 1, + STATE(640), 1, sym__additive_operator, - STATE(414), 1, + STATE(641), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, STATE(991), 2, sym_comment, sym_include, - ACTIONS(230), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129281,7 +129759,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(232), 28, + ACTIONS(1131), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -129310,35 +129788,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [88419] = 13, + [88451] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1113), 1, + STATE(992), 2, + sym_comment, + sym_include, + ACTIONS(172), 3, + sym__or_operator, + sym__and_operator, sym__escaped_string, - STATE(407), 1, + ACTIONS(174), 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, + [88521] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1218), 1, + sym__escaped_string, + STATE(607), 1, sym__comparison_operator, - STATE(408), 1, + STATE(636), 1, sym__multiplicative_operator, - STATE(413), 1, + STATE(640), 1, sym__additive_operator, - STATE(414), 1, + STATE(641), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(992), 2, + STATE(993), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129354,7 +129897,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(1111), 28, + ACTIONS(1216), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -129383,19 +129926,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [88505] = 5, + [88607] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(993), 2, + STATE(994), 2, sym_comment, sym_include, - ACTIONS(246), 3, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(248), 52, + ACTIONS(104), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -129448,19 +129991,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88575] = 5, + [88677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(994), 2, + STATE(995), 2, sym_comment, sym_include, - ACTIONS(242), 3, + ACTIONS(188), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(244), 52, + ACTIONS(190), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -129513,44 +130056,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88645] = 5, + [88747] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(995), 2, - sym_comment, - sym_include, - ACTIONS(178), 3, + ACTIONS(1129), 1, + sym__escaped_string, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(180), 52, + STATE(996), 2, + sym_comment, + sym_include, + ACTIONS(1105), 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(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129566,35 +130100,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, - [88715] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(996), 2, - sym_comment, - sym_include, - ACTIONS(182), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(184), 52, - anon_sym_SLASH, + ACTIONS(1127), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129604,6 +130112,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, @@ -129613,37 +130123,13 @@ 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, - [88785] = 5, + [88833] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -129651,11 +130137,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(997), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(220), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 52, + ACTIONS(222), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -129708,23 +130194,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88855] = 5, + [88903] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1214), 1, + sym__escaped_string, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, STATE(998), 2, sym_comment, sym_include, - ACTIONS(194), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(196), 52, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(1212), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129734,6 +130250,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, @@ -129743,37 +130261,13 @@ 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, - [88925] = 5, + [88989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -129781,11 +130275,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(999), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 52, + ACTIONS(138), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -129838,23 +130332,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88995] = 5, + [89059] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, STATE(1000), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1210), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 52, - anon_sym_SLASH, + ACTIONS(1208), 45, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129864,6 +130368,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, @@ -129875,7 +130381,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, @@ -129893,29 +130398,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, - [89065] = 5, + [89139] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, STATE(1001), 2, sym_comment, sym_include, - ACTIONS(234), 3, + ACTIONS(1206), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(236), 52, + ACTIONS(1204), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -129929,6 +130436,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, @@ -129958,63 +130467,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_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, - [89135] = 13, + [89217] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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, STATE(1002), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(248), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(250), 52, 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(1202), 28, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -130024,8 +130497,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, @@ -130035,41 +130506,65 @@ 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, - [89221] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [89287] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, + ACTIONS(1222), 1, sym__escaped_string, - STATE(407), 1, + STATE(607), 1, sym__comparison_operator, - STATE(408), 1, + STATE(636), 1, sym__multiplicative_operator, - STATE(413), 1, + STATE(640), 1, sym__additive_operator, - STATE(414), 1, + STATE(641), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, STATE(1003), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -130085,7 +130580,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(1115), 28, + ACTIONS(1220), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -130114,35 +130609,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89307] = 13, + [89373] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1196), 1, + ACTIONS(1234), 1, sym__escaped_string, - STATE(407), 1, + STATE(607), 1, sym__comparison_operator, - STATE(408), 1, + STATE(636), 1, sym__multiplicative_operator, - STATE(413), 1, + STATE(640), 1, sym__additive_operator, - STATE(414), 1, + STATE(641), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, STATE(1004), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -130158,7 +130653,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(1194), 28, + ACTIONS(1232), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -130187,7 +130682,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89393] = 5, + [89459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -130195,11 +130690,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1005), 2, sym_comment, sym_include, - ACTIONS(186), 3, + ACTIONS(204), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 52, + ACTIONS(206), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130252,7 +130747,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [89463] = 5, + [89529] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -130260,11 +130755,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1006), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(196), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 52, + ACTIONS(198), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130317,33 +130812,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [89533] = 10, + [89599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(1007), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1121), 3, + ACTIONS(160), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1119), 45, + ACTIONS(162), 52, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -130353,8 +130838,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, @@ -130366,6 +130849,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, @@ -130383,31 +130867,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, - [89613] = 9, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [89669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(1216), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1214), 48, + ACTIONS(89), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130421,8 +130903,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, @@ -130452,56 +130932,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_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, - [89691] = 12, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [89739] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1212), 3, + ACTIONS(200), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - 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, + ACTIONS(202), 52, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -130511,8 +130968,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, @@ -130522,41 +130977,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, - [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, @@ -130572,48 +130995,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(1123), 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, - [89861] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [89809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1011), 2, + STATE(1010), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 52, + ACTIONS(73), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130666,53 +131072,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [89931] = 13, + [89879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1200), 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(1012), 2, + STATE(1011), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(212), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(214), 52, 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), 28, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -130722,8 +131098,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, @@ -130733,41 +131107,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, - [90017] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1208), 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(1013), 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, @@ -130783,48 +131125,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(1206), 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, - [90103] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [89949] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1014), 2, + STATE(1012), 2, sym_comment, sym_include, - ACTIONS(170), 3, + ACTIONS(184), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(172), 52, + ACTIONS(186), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130877,19 +131202,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90173] = 5, + [90019] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1015), 2, + STATE(1013), 2, sym_comment, sym_include, - ACTIONS(238), 3, + ACTIONS(176), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(240), 52, + ACTIONS(178), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130942,19 +131267,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90243] = 5, + [90089] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1016), 2, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1014), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(204), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 52, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(206), 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, + [90173] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1015), 2, + sym_comment, + sym_include, + ACTIONS(208), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(210), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131007,19 +131404,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90313] = 5, + [90243] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1017), 2, + STATE(1016), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(228), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 52, + ACTIONS(230), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131072,7 +131469,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90383] = 5, + [90313] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1226), 1, + sym__escaped_string, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1017), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(1224), 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, + [90399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -131080,11 +131550,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1018), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(232), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 52, + ACTIONS(234), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131137,7 +131607,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90453] = 5, + [90469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -131145,11 +131615,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1019), 2, sym_comment, sym_include, - ACTIONS(230), 3, + ACTIONS(236), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(232), 52, + ACTIONS(238), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131202,7 +131672,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90523] = 5, + [90539] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -131210,11 +131680,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1020), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(240), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 52, + ACTIONS(242), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131267,53 +131737,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [90593] = 13, + [90609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1192), 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(1021), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(224), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(226), 52, 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(1190), 28, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -131323,8 +131763,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, @@ -131334,12 +131772,36 @@ 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, [90679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -131348,11 +131810,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1022), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(244), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 52, + ACTIONS(246), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131413,11 +131875,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1023), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 52, + ACTIONS(218), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131475,30 +131937,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1113), 1, + ACTIONS(1129), 1, sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, STATE(1024), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -131514,7 +131976,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(1111), 27, + ACTIONS(1127), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -131542,35 +132004,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90904] = 13, + [90904] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(1025), 2, + sym_comment, + sym_include, + ACTIONS(194), 4, + aux_sym_variable_tuning_token2, + aux_sym_image_phrase_token1, + aux_sym_image_phrase_token4, + aux_sym_size_phrase_token1, + ACTIONS(192), 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, + [90975] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1200), 1, + ACTIONS(1214), 1, sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1025), 2, + STATE(1026), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -131586,7 +132113,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(1198), 27, + ACTIONS(1212), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -131614,35 +132141,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90989] = 13, + [91060] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1192), 1, + ACTIONS(2359), 1, sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1026), 2, + STATE(1027), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -131658,7 +132185,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(1190), 27, + ACTIONS(2357), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -131686,51 +132213,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91074] = 13, + [91145] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2343), 1, - sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1027), 2, + STATE(1028), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 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(2341), 27, + ACTIONS(1210), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1208), 44, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -131750,6 +132257,23 @@ 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, @@ -131758,53 +132282,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91159] = 13, + [91224] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1125), 1, - sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1028), 2, + STATE(1029), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1206), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1204), 47, 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(1123), 27, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -131822,6 +132324,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, @@ -131830,34 +132350,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91244] = 12, + [91301] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(902), 1, + ACTIONS(1218), 1, + sym__escaped_string, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1029), 2, - sym_comment, - sym_include, - ACTIONS(230), 3, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(1086), 3, + STATE(1030), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -131873,7 +132394,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(232), 27, + ACTIONS(1216), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -131901,35 +132422,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91327] = 13, + [91386] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1208), 1, + ACTIONS(1222), 1, sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1030), 2, + STATE(1031), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -131945,7 +132466,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(1206), 27, + ACTIONS(1220), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -131973,35 +132494,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91412] = 13, + [91471] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2347), 1, + ACTIONS(1226), 1, sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1031), 2, + STATE(1032), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132017,7 +132538,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(2345), 27, + ACTIONS(1224), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -132045,35 +132566,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91497] = 13, + [91556] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, + ACTIONS(2363), 1, sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1032), 2, + STATE(1033), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132089,7 +132610,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(1115), 27, + ACTIONS(2361), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -132117,35 +132638,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91582] = 13, + [91641] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1196), 1, - sym__escaped_string, - STATE(902), 1, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1033), 2, + STATE(1034), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1202), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132161,7 +132681,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(1194), 27, + ACTIONS(1200), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -132189,52 +132709,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91667] = 10, + [91724] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(902), 1, + ACTIONS(1234), 1, + sym__escaped_string, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - STATE(1034), 2, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1035), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1121), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1119), 44, - 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132250,39 +132753,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_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, - [91746] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(902), 1, - sym__comparison_operator, - STATE(903), 1, - sym__multiplicative_operator, - STATE(904), 1, - sym__additive_operator, - STATE(905), 1, - sym__logical_operator, - STATE(1035), 2, - sym_comment, - sym_include, - ACTIONS(1216), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1214), 47, - anon_sym_SLASH, + ACTIONS(1232), 27, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -132300,24 +132773,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, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, @@ -132326,34 +132781,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91823] = 12, + [91809] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(902), 1, + ACTIONS(1230), 1, + sym__escaped_string, + STATE(888), 1, sym__comparison_operator, - STATE(903), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(890), 1, sym__additive_operator, - STATE(905), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, STATE(1036), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 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(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132369,7 +132825,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(1210), 27, + ACTIONS(1228), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -132397,35 +132853,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91906] = 13, + [91894] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1204), 1, + ACTIONS(2367), 1, + anon_sym_COMMA, + ACTIONS(2369), 1, sym__escaped_string, - STATE(902), 1, + STATE(607), 1, sym__comparison_operator, - STATE(903), 1, + STATE(636), 1, sym__multiplicative_operator, - STATE(904), 1, + STATE(640), 1, sym__additive_operator, - STATE(905), 1, + STATE(641), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, STATE(1037), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132441,7 +132899,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(1202), 27, + ACTIONS(2365), 26, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -132452,6 +132910,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, @@ -132463,43 +132922,39 @@ 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, - [91991] = 14, + [91981] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2351), 1, - anon_sym_COMMA, - ACTIONS(2353), 1, + ACTIONS(1133), 1, sym__escaped_string, - STATE(407), 1, + STATE(888), 1, sym__comparison_operator, - STATE(408), 1, + STATE(889), 1, sym__multiplicative_operator, - STATE(413), 1, + STATE(890), 1, sym__additive_operator, - STATE(414), 1, + STATE(891), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, STATE(1038), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -132515,7 +132970,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(2349), 26, + ACTIONS(1131), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -132526,7 +132981,6 @@ 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, @@ -132538,94 +132992,58 @@ 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, - [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, + [92066] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1040), 2, + STATE(888), 1, + sym__comparison_operator, + STATE(889), 1, + sym__multiplicative_operator, + STATE(890), 1, + sym__additive_operator, + STATE(891), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1039), 2, sym_comment, sym_include, - ACTIONS(115), 4, - sym__namecolon, + ACTIONS(204), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 49, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(206), 27, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, - sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -132634,8 +133052,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, @@ -132645,47 +133061,30 @@ 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, - anon_sym_NO_DASHERROR, + 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, - [92217] = 6, + [92149] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2355), 1, + ACTIONS(2371), 1, sym__namecolon, - ACTIONS(93), 3, + ACTIONS(95), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1041), 3, + STATE(1040), 3, sym_comment, sym_include, aux_sym_object_access_repeat1, - ACTIONS(95), 48, + ACTIONS(97), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132734,20 +133133,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92287] = 5, + [92219] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + ACTIONS(1499), 1, + sym__namedot, + STATE(1056), 1, + aux_sym_qualified_name_repeat1, + STATE(1041), 2, sym_comment, sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(132), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 49, + ACTIONS(134), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132791,29 +133193,28 @@ 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, - [92355] = 7, + [92291] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1441), 1, - sym__namecolon, + ACTIONS(1499), 1, + sym__namedot, STATE(1041), 1, - aux_sym_object_access_repeat1, - STATE(1043), 2, + aux_sym_qualified_name_repeat1, + STATE(1042), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 48, + ACTIONS(138), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132862,22 +133263,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92427] = 6, + [92363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2358), 1, - aux_sym_function_call_token1, - STATE(1044), 2, + ACTIONS(2374), 1, + anon_sym_NO_DASHERROR, + STATE(1043), 2, sym_comment, sym_include, - ACTIONS(156), 4, + ACTIONS(647), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(158), 48, + ACTIONS(649), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132926,20 +133327,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92497] = 5, + [92433] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1045), 2, + ACTIONS(1499), 1, + sym__namedot, + STATE(1041), 1, + aux_sym_qualified_name_repeat1, + STATE(1044), 2, sym_comment, sym_include, - ACTIONS(115), 4, - sym__namecolon, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 49, + ACTIONS(104), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132983,29 +133387,28 @@ 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, - [92565] = 7, + [92505] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1439), 1, - sym__namedot, - STATE(1047), 1, - aux_sym_qualified_name_repeat1, - STATE(1046), 2, + ACTIONS(1501), 1, + sym__namecolon, + STATE(1058), 1, + aux_sym_object_access_repeat1, + STATE(1045), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 48, + ACTIONS(73), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133054,27 +133457,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92637] = 7, + [92577] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1439), 1, - sym__namedot, - STATE(1054), 1, - aux_sym_qualified_name_repeat1, - STATE(1047), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, + ACTIONS(2378), 1, + sym__escaped_string, + STATE(607), 1, + sym__comparison_operator, + STATE(636), 1, + sym__multiplicative_operator, + STATE(640), 1, + sym__additive_operator, + STATE(641), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(106), 48, + STATE(1046), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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(2376), 26, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -133084,8 +133513,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, @@ -133095,47 +133522,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_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92709] = 7, + [92661] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1441), 1, + ACTIONS(1501), 1, sym__namecolon, - STATE(1041), 1, + STATE(1058), 1, aux_sym_object_access_repeat1, - STATE(1048), 2, + STATE(1047), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 48, + ACTIONS(89), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133184,23 +133593,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92781] = 7, + [92733] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1443), 1, + ACTIONS(1503), 1, sym__namedoublecolon, - STATE(1060), 1, + STATE(1057), 1, aux_sym_member_access_repeat1, - STATE(1049), 2, + STATE(1048), 2, sym_comment, sym_include, - ACTIONS(119), 3, + ACTIONS(144), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(121), 48, + ACTIONS(146), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133249,20 +133658,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92853] = 5, + [92805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1050), 2, + STATE(1049), 2, sym_comment, sym_include, - ACTIONS(142), 4, + ACTIONS(128), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 49, + ACTIONS(130), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133312,23 +133721,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92921] = 7, + [92873] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1441), 1, + ACTIONS(1501), 1, sym__namecolon, - STATE(1041), 1, + STATE(1040), 1, aux_sym_object_access_repeat1, - STATE(1051), 2, + STATE(1050), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 48, + ACTIONS(93), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133377,23 +133786,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92993] = 7, + [92945] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1441), 1, - sym__namecolon, - STATE(1043), 1, - aux_sym_object_access_repeat1, - STATE(1052), 2, + STATE(1051), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 48, + ACTIONS(112), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133438,27 +133844,25 @@ 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, - [93065] = 7, + [93013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1439), 1, - sym__namedot, - STATE(1047), 1, - aux_sym_qualified_name_repeat1, - STATE(1053), 2, + STATE(1052), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(128), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 48, + ACTIONS(130), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133503,26 +133907,28 @@ 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, - [93137] = 6, + [93081] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2360), 1, - sym__namedot, - ACTIONS(108), 3, + ACTIONS(1501), 1, + sym__namecolon, + STATE(1040), 1, + aux_sym_object_access_repeat1, + STATE(1053), 2, + sym_comment, + sym_include, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1054), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 48, + ACTIONS(93), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133571,23 +133977,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93207] = 5, + [93153] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + ACTIONS(2380), 1, + sym_identifier, + ACTIONS(2383), 1, + aux_sym_input_expression_token2, + STATE(1111), 1, + sym_qualified_name, + STATE(1054), 2, sym_comment, sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(1381), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 49, + ACTIONS(1377), 47, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -133629,32 +134039,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, - [93275] = 8, + [93227] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2363), 1, - sym_identifier, - ACTIONS(2366), 1, - aux_sym_input_expression_token2, - STATE(1110), 1, - sym_qualified_name, - STATE(1056), 2, + STATE(1055), 2, sym_comment, sym_include, - ACTIONS(1358), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1354), 47, + ACTIONS(112), 49, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -133695,27 +134100,28 @@ 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, - [93349] = 6, + [93295] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2368), 1, - anon_sym_NO_DASHERROR, - STATE(1057), 2, - sym_comment, - sym_include, - ACTIONS(391), 4, - sym__namecolon, + ACTIONS(2385), 1, + sym__namedot, + ACTIONS(121), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(393), 48, + STATE(1056), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133764,20 +134170,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93419] = 5, + [93365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1058), 2, - sym_comment, - sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(2388), 1, + sym__namedoublecolon, + ACTIONS(114), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 49, + STATE(1057), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133822,28 +134230,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, - [93487] = 7, + [93435] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1441), 1, + ACTIONS(1501), 1, sym__namecolon, - STATE(1043), 1, + STATE(1040), 1, aux_sym_object_access_repeat1, - STATE(1059), 2, + STATE(1058), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 48, + ACTIONS(93), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133892,22 +134299,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93559] = 6, + [93507] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2370), 1, - sym__namedoublecolon, - ACTIONS(127), 3, + STATE(1059), 2, + sym_comment, + sym_include, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1060), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 48, + ACTIONS(142), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133951,58 +134356,32 @@ 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, - [93629] = 13, + [93575] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2375), 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(1061), 2, + ACTIONS(2391), 1, + aux_sym_function_call_token1, + STATE(1060), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(166), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(168), 48, 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, @@ -134012,6 +134391,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, @@ -134021,33 +134402,49 @@ 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_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93713] = 7, + [93645] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1611), 1, - sym__namedot, - STATE(1076), 1, - aux_sym_qualified_name_repeat1, - STATE(1062), 2, + STATE(1061), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 47, + ACTIONS(142), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, anon_sym_STAR, + sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -134056,6 +134453,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, @@ -134085,26 +134484,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, + 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, - [93784] = 5, + [93713] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, + STATE(1062), 2, sym_comment, sym_include, - ACTIONS(115), 4, + ACTIONS(128), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 48, + ACTIONS(130), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134153,23 +134551,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93851] = 7, + [93780] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1613), 1, - sym__namecolon, - STATE(1070), 1, - aux_sym_object_access_repeat1, - STATE(1064), 2, + ACTIONS(1607), 1, + sym__namedot, + STATE(1088), 1, + aux_sym_qualified_name_repeat1, + STATE(1063), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(132), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 47, + ACTIONS(134), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134217,30 +134615,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93922] = 8, + [93851] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(65), 3, + ACTIONS(2393), 1, + sym__namecolon, + ACTIONS(95), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 46, + STATE(1064), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(97), 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, @@ -134248,8 +134642,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token4, sym__integer_literal, sym_date_literal, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -134278,26 +134672,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, - [93995] = 6, + [93920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2377), 1, - anon_sym_NO_DASHERROR, - STATE(1066), 2, + STATE(1065), 2, sym_comment, sym_include, - ACTIONS(391), 4, + ACTIONS(128), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(393), 47, + ACTIONS(130), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134340,28 +134734,26 @@ 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, - [94064] = 7, + [93987] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1613), 1, - sym__namecolon, - STATE(1070), 1, - aux_sym_object_access_repeat1, - STATE(1067), 2, + STATE(1066), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 47, + ACTIONS(142), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134402,6 +134794,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, @@ -134409,20 +134802,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94135] = 5, + [94054] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + ACTIONS(1609), 1, + sym__namecolon, + STATE(1064), 1, + aux_sym_object_access_repeat1, + STATE(1067), 2, sym_comment, sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 48, + ACTIONS(93), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134463,7 +134859,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, @@ -134471,25 +134866,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94202] = 7, + [94125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2379), 1, - sym_identifier, - STATE(1101), 1, - sym_qualified_name, - STATE(1069), 2, + ACTIONS(2396), 1, + sym__namedot, + STATE(1068), 2, sym_comment, sym_include, - ACTIONS(1581), 3, + ACTIONS(160), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1579), 47, + ACTIONS(162), 48, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -134535,26 +134929,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94273] = 6, + [94194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2382), 1, + STATE(1069), 2, + sym_comment, + sym_include, + ACTIONS(152), 4, sym__namecolon, - ACTIONS(93), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1070), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 47, + ACTIONS(154), 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, @@ -134563,6 +134956,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, @@ -134592,33 +134987,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, - [94342] = 7, + [94261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1611), 1, - sym__namedot, - STATE(1076), 1, - aux_sym_qualified_name_repeat1, - STATE(1071), 2, + STATE(1070), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 47, + ACTIONS(158), 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, @@ -134627,6 +135018,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, @@ -134656,26 +135049,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, - [94413] = 5, + [94328] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, + ACTIONS(1609), 1, + sym__namecolon, + STATE(1064), 1, + aux_sym_object_access_repeat1, + STATE(1071), 2, sym_comment, sym_include, - ACTIONS(115), 4, - sym__namecolon, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(117), 48, + ACTIONS(93), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134718,28 +135112,25 @@ 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, - [94480] = 6, + [94399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2385), 1, - sym__namedoublecolon, - ACTIONS(127), 3, + STATE(1072), 2, + sym_comment, + sym_include, + ACTIONS(140), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1073), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 47, + ACTIONS(142), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134782,33 +135173,30 @@ 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, - [94549] = 7, + [94466] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1437), 1, - anon_sym_LPAREN, - STATE(1044), 1, - sym_function_arguments, - STATE(1074), 2, + STATE(1073), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 47, + ACTIONS(112), 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, @@ -134817,8 +135205,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, @@ -134847,24 +135234,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, + 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, - [94620] = 5, + [94533] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(1609), 1, + sym__namecolon, + STATE(1071), 1, + aux_sym_object_access_repeat1, + STATE(1074), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 48, + ACTIONS(73), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134907,29 +135300,28 @@ 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, - [94687] = 7, + [94604] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1611), 1, - sym__namedot, - STATE(1085), 1, - aux_sym_qualified_name_repeat1, - STATE(1076), 2, + ACTIONS(1609), 1, + sym__namecolon, + STATE(1064), 1, + aux_sym_object_access_repeat1, + STATE(1075), 2, sym_comment, sym_include, - ACTIONS(104), 3, + ACTIONS(91), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(106), 47, + ACTIONS(93), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134977,23 +135369,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94758] = 7, + [94675] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1613), 1, - sym__namecolon, - STATE(1070), 1, - aux_sym_object_access_repeat1, - STATE(1077), 2, + STATE(1076), 2, sym_comment, sym_include, - ACTIONS(89), 3, + ACTIONS(110), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(91), 47, + ACTIONS(112), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135034,6 +135423,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, @@ -135041,23 +135431,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94829] = 7, + [94742] = 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(1078), 2, + ACTIONS(1607), 1, + sym__namedot, + STATE(1063), 1, + aux_sym_qualified_name_repeat1, + STATE(1077), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 47, + ACTIONS(104), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135105,20 +135495,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94900] = 5, + [94813] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + ACTIONS(1497), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_function_arguments, + STATE(1078), 2, sym_comment, sym_include, - ACTIONS(146), 4, - sym__namecolon, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 48, + ACTIONS(89), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135134,7 +135527,6 @@ 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, @@ -135167,20 +135559,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94967] = 5, + [94884] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, - sym_comment, - sym_include, - ACTIONS(138), 4, - sym__namecolon, + ACTIONS(2398), 1, + sym__namedoublecolon, + ACTIONS(114), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 48, + STATE(1079), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135223,94 +135617,28 @@ 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, - [95034] = 8, + [94953] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(1358), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - 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, + ACTIONS(1607), 1, + sym__namedot, + STATE(1063), 1, + aux_sym_qualified_name_repeat1, + STATE(1080), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 47, + ACTIONS(138), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135358,23 +135686,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95178] = 5, + [95024] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + ACTIONS(2401), 1, + sym_identifier, + STATE(1121), 1, + sym_qualified_name, + STATE(1081), 2, sym_comment, sym_include, - ACTIONS(166), 4, - sym__namecolon, + ACTIONS(1597), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(168), 48, + ACTIONS(1595), 47, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -135420,23 +135750,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95245] = 7, + [95095] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1615), 1, - sym__namedoublecolon, - STATE(1073), 1, - aux_sym_member_access_repeat1, - STATE(1084), 2, + ACTIONS(2404), 1, + anon_sym_NO_DASHERROR, + STATE(1082), 2, sym_comment, sym_include, - ACTIONS(119), 3, + ACTIONS(647), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(121), 47, + ACTIONS(649), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135484,26 +135813,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95316] = 6, + [95164] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2393), 1, - sym__namedot, - ACTIONS(108), 3, + ACTIONS(1497), 1, + anon_sym_LPAREN, + ACTIONS(1588), 1, + anon_sym_LBRACK, + STATE(1060), 1, + sym_function_arguments, + STATE(1083), 2, + sym_comment, + sym_include, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1085), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 47, + ACTIONS(73), 46, 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, @@ -135511,8 +135844,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_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -135541,30 +135874,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, - [95385] = 5, + [95237] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1086), 2, + STATE(1084), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namecolon, + ACTIONS(148), 4, + sym__namedoublecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 48, + ACTIONS(150), 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, @@ -135573,6 +135905,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, @@ -135601,33 +135935,32 @@ 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, - [95452] = 5, + [95304] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + ACTIONS(1609), 1, + sym__namecolon, + STATE(1071), 1, + aux_sym_object_access_repeat1, + STATE(1085), 2, sym_comment, sym_include, - ACTIONS(162), 4, - sym__namedoublecolon, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(164), 48, + ACTIONS(89), 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, @@ -135636,8 +135969,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, @@ -135667,30 +135998,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, - [95519] = 6, + [95375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2396), 1, - aux_sym_function_call_token1, - STATE(1088), 2, + STATE(1086), 2, sym_comment, sym_include, - ACTIONS(156), 4, + ACTIONS(106), 4, sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(158), 47, + ACTIONS(108), 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, @@ -135699,6 +136031,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, @@ -135728,26 +136062,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, - [95588] = 5, + [95442] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1087), 2, sym_comment, sym_include, - ACTIONS(100), 4, - sym__namecolon, + ACTIONS(121), 4, + sym__namedot, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(102), 48, + ACTIONS(123), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135796,25 +136128,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95655] = 5, + [95509] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, - sym_comment, - sym_include, - ACTIONS(108), 4, + ACTIONS(2406), 1, sym__namedot, + ACTIONS(121), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(110), 48, + STATE(1088), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 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, @@ -135823,8 +136156,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, @@ -135854,30 +136185,32 @@ 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, - [95722] = 6, + [95578] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2398), 1, - sym__namedot, - STATE(1091), 2, + ACTIONS(2409), 1, + aux_sym_function_call_token1, + STATE(1089), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(166), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 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, @@ -135886,8 +136219,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, @@ -135917,28 +136248,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, - [95791] = 5, + [95647] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + ACTIONS(1611), 1, + sym__namedoublecolon, + STATE(1079), 1, + aux_sym_member_access_repeat1, + STATE(1090), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(144), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 48, + ACTIONS(146), 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, @@ -135947,8 +136283,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, @@ -135978,28 +136312,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_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, - [95857] = 5, + [95718] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + ACTIONS(2411), 1, + sym_identifier, + ACTIONS(2414), 1, + aux_sym_input_expression_token2, + STATE(1139), 1, + sym_qualified_name, + STATE(1091), 2, sym_comment, sym_include, - ACTIONS(170), 3, + ACTIONS(1381), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(172), 48, + ACTIONS(1377), 46, 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, @@ -136008,8 +136348,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, @@ -136039,29 +136377,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, - [95923] = 6, + [95791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2400), 1, - sym__namedot, - STATE(1094), 2, + STATE(1092), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(232), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 47, + ACTIONS(234), 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, @@ -136070,6 +136409,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, @@ -136099,25 +136440,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, - [95991] = 5, + [95857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1093), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(192), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 48, + ACTIONS(194), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136166,19 +136505,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96057] = 5, + [95923] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1094), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(248), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 48, + ACTIONS(250), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136227,24 +136566,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96123] = 5, + [95989] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + ACTIONS(2416), 1, + sym__namedot, + STATE(1095), 2, sym_comment, sym_include, - ACTIONS(182), 3, + ACTIONS(160), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(184), 48, + ACTIONS(162), 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, @@ -136253,8 +136593,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, @@ -136284,28 +136622,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, - [96189] = 5, + [96057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1096), 2, sym_comment, sym_include, - ACTIONS(162), 4, - sym__namedoublecolon, + ACTIONS(184), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(164), 47, + ACTIONS(186), 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, @@ -136314,6 +136654,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, @@ -136343,25 +136685,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, - [96255] = 5, + [96123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1097), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(180), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 48, + ACTIONS(182), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136410,19 +136750,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96321] = 5, + [96189] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1098), 2, sym_comment, sym_include, - ACTIONS(246), 3, + ACTIONS(176), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(248), 48, + ACTIONS(178), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136471,19 +136811,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96387] = 5, + [96255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1099), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(240), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(125), 48, + ACTIONS(242), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136532,24 +136872,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96453] = 5, + [96321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1100), 2, sym_comment, sym_include, - ACTIONS(146), 4, - sym__namecolon, + ACTIONS(236), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 47, + ACTIONS(238), 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, @@ -136558,6 +136898,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, @@ -136587,25 +136929,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, - [96519] = 5, + [96387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1101), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(228), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 48, + ACTIONS(230), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136654,81 +136994,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96585] = 5, + [96453] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1102), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(148), 4, + sym__namedoublecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(196), 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, - [96651] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1105), 2, - sym_comment, - sym_include, - ACTIONS(100), 4, - sym__namecolon, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(102), 47, + ACTIONS(150), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136776,24 +137055,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96717] = 5, + [96519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1103), 2, sym_comment, sym_include, - ACTIONS(166), 4, - sym__namecolon, + ACTIONS(212), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(168), 47, + ACTIONS(214), 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, @@ -136802,6 +137081,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, @@ -136831,25 +137112,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, - [96783] = 5, + [96585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1104), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(71), 48, + ACTIONS(73), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136898,24 +137177,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96849] = 5, + [96651] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1105), 2, sym_comment, sym_include, - ACTIONS(206), 3, + ACTIONS(152), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(208), 48, + ACTIONS(154), 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, @@ -136924,8 +137203,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, @@ -136955,28 +137232,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_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, - [96915] = 5, + [96717] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + ACTIONS(1603), 1, + anon_sym_LBRACK, + ACTIONS(1605), 1, + anon_sym_LPAREN, + STATE(1089), 1, + sym_function_arguments, + STATE(1106), 2, sym_comment, sym_include, - ACTIONS(210), 3, + ACTIONS(67), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(212), 48, + ACTIONS(73), 45, 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, @@ -136984,10 +137268,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_RBRACK, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -137016,23 +137296,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, - [96981] = 5, + [96789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1107), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(160), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 48, + ACTIONS(162), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137081,19 +137363,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97047] = 5, + [96855] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1108), 2, sym_comment, sym_include, - ACTIONS(234), 3, + ACTIONS(204), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(236), 48, + ACTIONS(206), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137142,86 +137424,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97113] = 7, + [96921] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1609), 1, - anon_sym_LPAREN, - STATE(1088), 1, - sym_function_arguments, - STATE(1112), 2, - sym_comment, - sym_include, - ACTIONS(85), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(87), 46, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(2418), 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, - 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, - [97183] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2402), 1, - sym_identifier, - STATE(1154), 1, + STATE(1150), 1, sym_qualified_name, - STATE(1113), 2, + STATE(1109), 2, sym_comment, sym_include, - ACTIONS(1581), 3, + ACTIONS(1597), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1579), 46, + ACTIONS(1595), 46, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_STAR, @@ -137268,19 +137487,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97253] = 5, + [96991] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1110), 2, sym_comment, sym_include, - ACTIONS(242), 3, + ACTIONS(224), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(244), 48, + ACTIONS(226), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137329,83 +137548,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(65), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(71), 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, - 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, - [97391] = 5, + [97057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1111), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 48, + ACTIONS(138), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137454,24 +137609,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97457] = 5, + [97123] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + ACTIONS(1605), 1, + anon_sym_LPAREN, + STATE(1089), 1, + sym_function_arguments, + STATE(1112), 2, sym_comment, sym_include, - ACTIONS(186), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 48, + ACTIONS(89), 46, 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, @@ -137480,9 +137638,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, aux_sym_ambiguous_expression_token1, @@ -137511,23 +137666,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, - [97523] = 5, + [97193] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1113), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(208), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 48, + ACTIONS(210), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137576,19 +137733,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97589] = 5, + [97259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1114), 2, sym_comment, sym_include, - ACTIONS(178), 3, + ACTIONS(244), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(180), 48, + ACTIONS(246), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137637,19 +137794,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97655] = 5, + [97325] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1115), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(200), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 48, + ACTIONS(202), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137698,24 +137855,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97721] = 5, + [97391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1116), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(106), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 48, + ACTIONS(108), 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, @@ -137724,8 +137881,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, @@ -137755,23 +137910,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, - [97787] = 5, + [97457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1117), 2, sym_comment, sym_include, - ACTIONS(238), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(240), 48, + ACTIONS(89), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137820,24 +137977,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97853] = 5, + [97523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1118), 2, sym_comment, sym_include, - ACTIONS(108), 4, - sym__namedot, + ACTIONS(188), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(110), 47, + ACTIONS(190), 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, @@ -137846,6 +138003,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, @@ -137875,25 +138034,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, - [97919] = 5, + [97589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1119), 2, sym_comment, sym_include, - ACTIONS(230), 3, + ACTIONS(216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(232), 48, + ACTIONS(218), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137942,19 +138099,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97985] = 5, + [97655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1120), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(220), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 48, + ACTIONS(222), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138003,23 +138160,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [98051] = 5, + [97721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1121), 2, sym_comment, sym_include, - ACTIONS(178), 3, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(180), 47, + ACTIONS(104), 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, @@ -138028,6 +138186,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, @@ -138057,25 +138217,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, - [98116] = 5, + [97787] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1122), 2, sym_comment, sym_include, - ACTIONS(85), 3, + ACTIONS(121), 4, + sym__namedot, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(87), 47, + ACTIONS(123), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138123,94 +138282,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [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, + [97853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1123), 2, sym_comment, sym_include, - ACTIONS(242), 3, + ACTIONS(196), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(244), 47, + ACTIONS(198), 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, @@ -138219,6 +138308,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, @@ -138248,25 +138339,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, - [98333] = 5, + [97919] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1124), 2, sym_comment, sym_include, - ACTIONS(234), 3, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(236), 47, + ACTIONS(158), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138314,93 +138404,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [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, + [97985] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1125), 2, sym_comment, sym_include, - ACTIONS(246), 3, + ACTIONS(172), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(248), 47, + ACTIONS(174), 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, @@ -138409,6 +138430,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, @@ -138438,112 +138461,46 @@ 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, - [98548] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [98051] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(933), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(921), 1, sym__comparison_operator, - STATE(934), 1, + STATE(922), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(923), 1, sym__additive_operator, - STATE(936), 1, + STATE(924), 1, sym__logical_operator, - STATE(1133), 2, - sym_comment, - sym_include, - ACTIONS(1214), 5, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(1216), 40, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(1224), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 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_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, + STATE(1126), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138557,6 +138514,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(1226), 21, + sym__terminator, + aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, aux_sym_image_phrase_token2, aux_sym_size_phrase_token2, @@ -138576,19 +138536,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [98702] = 5, + [98138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1127), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(248), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 47, + ACTIONS(250), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138636,90 +138596,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [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, + [98203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1128), 2, sym_comment, sym_include, - ACTIONS(170), 3, + ACTIONS(192), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(172), 47, + ACTIONS(194), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138767,90 +138656,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [98919] = 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(1115), 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(1138), 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(1117), 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, - [99006] = 5, + [98268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1129), 2, sym_comment, sym_include, - ACTIONS(182), 3, + ACTIONS(180), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(184), 47, + ACTIONS(182), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138898,19 +138716,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99071] = 5, + [98333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1130), 2, sym_comment, sym_include, - ACTIONS(206), 3, + ACTIONS(188), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(208), 47, + ACTIONS(190), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -138958,48 +138776,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99136] = 5, - ACTIONS(3), 1, + [98398] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 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(206), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1131), 2, sym_comment, sym_include, - ACTIONS(65), 3, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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(204), 23, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(71), 47, - anon_sym_SLASH, + 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] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(1105), 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(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1232), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2421), 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(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1132), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -139010,27 +138895,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, - [99201] = 5, + ACTIONS(1234), 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, + [98570] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1133), 2, sym_comment, sym_include, - ACTIONS(210), 3, + ACTIONS(208), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(212), 47, + ACTIONS(210), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139078,19 +138977,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99266] = 5, + [98635] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 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(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1228), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1134), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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(1230), 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, + [98722] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1135), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(160), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 47, + ACTIONS(162), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139138,19 +139108,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99331] = 5, + [98787] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1136), 2, sym_comment, sym_include, - ACTIONS(134), 3, + ACTIONS(240), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(136), 47, + ACTIONS(242), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139198,42 +139168,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99396] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [98852] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(933), 1, + STATE(921), 1, sym__comparison_operator, - STATE(934), 1, + STATE(922), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(923), 1, sym__additive_operator, - STATE(936), 1, + STATE(924), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1198), 2, + ACTIONS(1220), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1145), 2, + STATE(1137), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139247,7 +139217,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(1200), 21, + ACTIONS(1222), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -139269,42 +139239,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [99483] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [98939] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(933), 1, + STATE(921), 1, sym__comparison_operator, - STATE(934), 1, + STATE(922), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(923), 1, sym__additive_operator, - STATE(936), 1, + STATE(924), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1202), 2, + ACTIONS(1216), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1146), 2, + STATE(1138), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139318,7 +139288,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(1204), 21, + ACTIONS(1218), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -139340,19 +139310,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [99570] = 5, + [99026] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1139), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(136), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 47, + ACTIONS(138), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139400,45 +139370,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99635] = 16, - ACTIONS(67), 1, + [99091] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 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, + STATE(1140), 2, + sym_comment, + sym_include, + ACTIONS(224), 3, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + sym__escaped_string, + ACTIONS(226), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 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, - ACTIONS(2413), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(1148), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -139449,41 +139422,27 @@ 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, - 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, - [99722] = 5, + 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, + [99156] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1141), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(176), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 47, + ACTIONS(178), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139531,19 +139490,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99787] = 5, + [99221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1142), 2, sym_comment, sym_include, - ACTIONS(238), 3, + ACTIONS(244), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(240), 47, + ACTIONS(246), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139591,45 +139550,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [99852] = 16, - ACTIONS(67), 1, + [99286] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 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, + STATE(1143), 2, + sym_comment, + sym_include, + ACTIONS(200), 3, sym__or_operator, sym__and_operator, - ACTIONS(1111), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2405), 2, + sym__escaped_string, + ACTIONS(202), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 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(1151), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -139640,41 +139602,27 @@ 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, - 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, - [99939] = 5, + 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, + [99351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1144), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(232), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 47, + ACTIONS(234), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139722,39 +139670,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [100004] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [99416] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(933), 1, + STATE(921), 1, sym__comparison_operator, - STATE(934), 1, + STATE(922), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(923), 1, sym__additive_operator, - STATE(936), 1, + STATE(924), 1, sym__logical_operator, - ACTIONS(232), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1153), 2, + ACTIONS(2429), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(1145), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139768,9 +139719,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(230), 23, - sym__or_operator, - sym__and_operator, + ACTIONS(2427), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -139792,79 +139741,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [100089] = 5, + [99503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, - sym_comment, - sym_include, - ACTIONS(123), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(125), 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, - [100154] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1146), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(236), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 47, + ACTIONS(238), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -139912,42 +139801,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [100219] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [99568] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(933), 1, + STATE(921), 1, sym__comparison_operator, - STATE(934), 1, + STATE(922), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(923), 1, sym__additive_operator, - STATE(936), 1, + STATE(924), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, + ACTIONS(1131), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1156), 2, + STATE(1147), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139961,7 +139850,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1125), 21, + ACTIONS(1133), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -139983,19 +139872,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [100306] = 5, + [99655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1148), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(172), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(196), 47, + ACTIONS(174), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -140043,19 +139932,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [100371] = 5, + [99720] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1149), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(196), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 47, + ACTIONS(198), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -140103,19 +139992,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [100436] = 5, + [99785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1150), 2, sym_comment, sym_include, - ACTIONS(186), 3, + ACTIONS(102), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 47, + ACTIONS(104), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -140163,42 +140052,613 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [100501] = 16, - ACTIONS(67), 1, + [99850] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1151), 2, + sym_comment, + sym_include, + ACTIONS(220), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(222), 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, + [99915] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1152), 2, + sym_comment, + sym_include, + ACTIONS(67), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(73), 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, + [99980] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1153), 2, + sym_comment, + sym_include, + ACTIONS(212), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(214), 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, + [100045] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1154), 2, + sym_comment, + sym_include, + ACTIONS(228), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(230), 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, + [100110] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1155), 2, + sym_comment, + sym_include, + ACTIONS(184), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(186), 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, + [100175] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(933), 1, + STATE(921), 1, sym__comparison_operator, - STATE(934), 1, + STATE(922), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(923), 1, sym__additive_operator, - STATE(936), 1, + STATE(924), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1190), 2, + ACTIONS(1127), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1156), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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(1129), 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, + [100262] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 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(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1212), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1157), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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(1214), 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, + [100349] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 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(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + STATE(1158), 2, + sym_comment, + sym_include, + ACTIONS(1208), 4, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(1210), 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, + [100428] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym__comparison_operator, + STATE(922), 1, + sym__multiplicative_operator, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + STATE(1159), 2, + sym_comment, + sym_include, + ACTIONS(1204), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(1206), 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, + [100503] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 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(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1200), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1160), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140212,7 +140672,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), 21, + ACTIONS(1202), 23, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -140242,11 +140704,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1161), 2, sym_comment, sym_include, - ACTIONS(230), 3, + ACTIONS(204), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(232), 47, + ACTIONS(206), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -140302,11 +140764,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1162), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 47, + ACTIONS(218), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -140362,11 +140824,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1163), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 47, + ACTIONS(89), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -140421,19 +140883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(2431), 1, sym_identifier, - ACTIONS(2417), 1, + ACTIONS(2433), 1, aux_sym_input_expression_token2, - STATE(320), 1, + STATE(280), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, STATE(1164), 2, sym_comment, sym_include, - ACTIONS(1354), 43, + ACTIONS(1377), 43, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -140477,36 +140939,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [100855] = 8, - ACTIONS(3), 1, + [100855] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(112), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(110), 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, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -140518,9 +140979,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token1, + anon_sym_NO_DASHERROR, 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, @@ -140538,35 +140998,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [100924] = 6, - ACTIONS(67), 1, + [100920] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(2435), 1, + sym_identifier, + STATE(292), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, STATE(1166), 2, sym_comment, sym_include, - ACTIONS(117), 5, + ACTIONS(1595), 43, 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, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -140578,8 +141039,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_variable_tuning_token4, - anon_sym_NO_DASHERROR, + 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, @@ -140598,22 +141060,22 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1167), 2, sym_comment, sym_include, - ACTIONS(144), 5, + ACTIONS(142), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(142), 42, + ACTIONS(140), 42, sym__namecolon, sym__or_operator, sym__and_operator, @@ -140656,23 +141118,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [101054] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [101054] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, + ACTIONS(2437), 1, + anon_sym_NO_DASHERROR, STATE(1168), 2, sym_comment, sym_include, - ACTIONS(140), 5, + ACTIONS(649), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(138), 42, + ACTIONS(647), 41, sym__namecolon, sym__or_operator, sym__and_operator, @@ -140696,7 +141160,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140715,25 +141178,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [101119] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [101121] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2421), 1, - anon_sym_NO_DASHERROR, STATE(1169), 2, sym_comment, sym_include, - ACTIONS(393), 5, + ACTIONS(130), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(391), 41, + ACTIONS(128), 42, sym__namecolon, sym__or_operator, sym__and_operator, @@ -140757,6 +141218,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140776,51 +141238,51 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2423), 1, + ACTIONS(2439), 1, sym__terminator, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3167), 1, + STATE(3192), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1170), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -140833,7 +141295,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140848,51 +141310,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [101278] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2431), 1, + ACTIONS(2447), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3166), 1, + STATE(3180), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1171), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -140905,7 +141367,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140920,51 +141382,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [101370] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2433), 1, + ACTIONS(2449), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3179), 1, + STATE(3181), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1172), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -140977,7 +141439,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140992,51 +141454,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [101462] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2435), 1, + ACTIONS(2451), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3187), 1, + STATE(3196), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1173), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141049,7 +141511,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141064,51 +141526,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [101554] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2437), 1, + ACTIONS(2453), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3183), 1, + STATE(3188), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1174), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141121,7 +141583,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141136,51 +141598,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [101646] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2439), 1, + ACTIONS(2455), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3192), 1, + STATE(3206), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1175), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141193,7 +141655,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141208,51 +141670,51 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2441), 1, + ACTIONS(2457), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3177), 1, + STATE(3207), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1176), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141265,7 +141727,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141280,51 +141742,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [101830] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2443), 1, + ACTIONS(2459), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3178), 1, + STATE(3184), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1177), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141337,7 +141799,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141352,51 +141814,51 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2461), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3173), 1, + STATE(3193), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1178), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141409,7 +141871,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141424,51 +141886,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [102014] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2429), 1, + ACTIONS(2445), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2447), 1, + ACTIONS(2463), 1, sym__terminator, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - STATE(3170), 1, + STATE(3190), 1, aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, + STATE(3246), 1, sym_output_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1179), 2, sym_comment, sym_include, - ACTIONS(2427), 4, + ACTIONS(2443), 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, + ACTIONS(2441), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -141481,7 +141943,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141496,38 +141958,38 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1180), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141541,7 +142003,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(1196), 19, + ACTIONS(1214), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -141561,39 +142023,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, - [102187] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102187] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(1181), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 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, @@ -141607,8 +142068,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(1200), 19, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -141627,36 +142086,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, - [102268] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102262] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1182), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141670,9 +142132,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(1212), 21, - sym__or_operator, - sym__and_operator, + ACTIONS(1129), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -141692,36 +142152,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, - [102347] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102343] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + ACTIONS(2467), 1, + aux_sym_input_stream_tuning_token11, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1183), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141735,9 +142200,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(230), 21, - sym__or_operator, - sym__and_operator, + ACTIONS(2465), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -141749,7 +142212,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, @@ -141758,38 +142220,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [102426] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1184), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141803,7 +142265,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(1204), 19, + ACTIONS(1218), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -141823,41 +142285,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, - [102507] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102507] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2451), 1, - aux_sym_input_stream_tuning_token11, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1185), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141871,7 +142331,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(2449), 18, + ACTIONS(1133), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -141883,6 +142343,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, @@ -141890,36 +142351,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, - [102590] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102588] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(836), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - STATE(1186), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 38, - sym__or_operator, - sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1186), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141933,6 +142394,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(1202), 21, + 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, @@ -141951,38 +142416,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, - [102661] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102667] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1187), 2, sym_comment, sym_include, - ACTIONS(1121), 36, - sym__or_operator, - sym__and_operator, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141996,6 +142462,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(1222), 19, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -142014,39 +142482,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, - [102736] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102748] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1188), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142060,7 +142528,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1125), 19, + ACTIONS(1226), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142080,39 +142548,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, - [102817] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102829] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1189), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142126,7 +142594,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(1113), 19, + ACTIONS(1230), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142146,39 +142614,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, - [102898] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102910] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1190), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142192,7 +142660,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(1192), 19, + ACTIONS(1234), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142212,39 +142680,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, - [102979] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [102991] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1191), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142258,7 +142723,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(1208), 19, + ACTIONS(204), 21, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142278,39 +142745,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, - [103060] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [103070] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(836), 1, + STATE(825), 1, sym__comparison_operator, - STATE(837), 1, + STATE(826), 1, sym__multiplicative_operator, - STATE(838), 1, + STATE(827), 1, sym__additive_operator, - STATE(839), 1, + STATE(828), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(1192), 2, + sym_comment, + sym_include, + ACTIONS(1204), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1206), 38, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1192), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142324,8 +142788,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(1117), 19, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -142344,37 +142806,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, - [103141] = 9, - ACTIONS(3), 1, + [103141] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(597), 1, + sym__logical_operator, + STATE(598), 1, + sym__additive_operator, + STATE(599), 1, + sym__multiplicative_operator, + STATE(600), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1193), 2, - sym_comment, - sym_include, - ACTIONS(1354), 39, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1193), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -142385,6 +142852,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(1230), 18, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -142395,7 +142864,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, @@ -142403,39 +142871,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, - [103209] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [103221] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1194), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142449,7 +142917,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(2457), 18, + ACTIONS(1234), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142468,42 +142936,37 @@ 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, - [103289] = 15, - ACTIONS(67), 1, + [103301] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2471), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 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(1195), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1377), 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, @@ -142514,8 +142977,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(2449), 18, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -142526,6 +142987,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, @@ -142534,38 +142996,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [103369] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1196), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142579,7 +143041,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(1196), 18, + ACTIONS(1226), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142599,38 +143061,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [103449] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1197), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142644,7 +143106,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(1117), 18, + ACTIONS(1222), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142664,38 +143126,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [103529] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1198), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142709,7 +143171,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(1200), 18, + ACTIONS(2465), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142729,38 +143191,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [103609] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1199), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142774,7 +143236,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(1113), 18, + ACTIONS(2473), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142793,39 +143255,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, - [103689] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [103689] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1200), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142839,7 +143298,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(1204), 18, + ACTIONS(204), 20, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142858,38 +143319,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, - [103769] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [103767] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1201), 2, sym_comment, sym_include, - ACTIONS(1121), 35, - sym__or_operator, - sym__and_operator, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142903,6 +143365,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(1218), 18, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -142920,39 +143384,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, - [103843] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [103847] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1202), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142966,7 +143430,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(2459), 18, + ACTIONS(1129), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -142985,36 +143449,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, - [103923] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [103927] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1203), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143028,9 +143495,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(1212), 20, - sym__or_operator, - sym__and_operator, + ACTIONS(1214), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -143049,29 +143514,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, - [104001] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [104007] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(2475), 1, + anon_sym_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2479), 1, + sym__namedot, + ACTIONS(2481), 1, + sym__namecolon, + ACTIONS(2483), 1, + sym__namedoublecolon, + STATE(1284), 1, + aux_sym_object_access_repeat1, + STATE(1320), 1, + aux_sym_member_access_repeat1, + STATE(1340), 1, + aux_sym_qualified_name_repeat1, + STATE(1349), 1, + sym_function_arguments, STATE(1204), 2, sym_comment, sym_include, - ACTIONS(1214), 3, + ACTIONS(73), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 37, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(67), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -143088,60 +143565,50 @@ 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_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, - [104071] = 15, - ACTIONS(67), 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, + [104087] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(1205), 2, + sym_comment, + sym_include, + ACTIONS(1204), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1206), 37, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143155,8 +143622,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(1208), 18, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -143174,39 +143639,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, - [104151] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [104157] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(1206), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 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, @@ -143220,8 +143684,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(1192), 18, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -143240,38 +143702,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [104231] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1207), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143285,7 +143747,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1125), 18, + ACTIONS(2485), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -143305,35 +143767,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [104311] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(638), 1, + STATE(597), 1, sym__logical_operator, - STATE(640), 1, + STATE(598), 1, sym__additive_operator, - STATE(642), 1, + STATE(599), 1, sym__multiplicative_operator, - STATE(643), 1, + STATE(600), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1208), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143347,7 +143809,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(230), 20, + ACTIONS(1202), 20, sym__or_operator, sym__and_operator, sym__terminator, @@ -143369,47 +143831,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, [104389] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(597), 1, + sym__logical_operator, + STATE(598), 1, + sym__additive_operator, + STATE(599), 1, + sym__multiplicative_operator, + STATE(600), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(65), 30, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1209), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143419,55 +143872,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_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(1133), 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, [104469] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1198), 1, + ACTIONS(1228), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1210), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143481,7 +143943,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(1200), 16, + ACTIONS(1230), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -143499,40 +143961,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_definition_token1, aux_sym_index_definition_token1, [104550] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1115), 1, + ACTIONS(1127), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1211), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143546,7 +144008,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(1117), 16, + ACTIONS(1129), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -143563,44 +144025,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [104631] = 16, - ACTIONS(67), 1, + [104631] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(1202), 1, - aux_sym_variable_tuning_token2, - STATE(804), 1, - sym__comparison_operator, - STATE(806), 1, - sym__multiplicative_operator, - STATE(807), 1, - sym__additive_operator, - STATE(811), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 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(1212), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1595), 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, @@ -143611,55 +144064,56 @@ 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), 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, - [104712] = 15, - ACTIONS(67), 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, + [104696] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(232), 1, + ACTIONS(206), 1, aux_sym_variable_tuning_token2, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1213), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143673,7 +144127,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(230), 18, + ACTIONS(204), 18, sym__or_operator, sym__and_operator, sym__terminator, @@ -143692,38 +144146,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [104791] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [104775] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1210), 1, + ACTIONS(1200), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1214), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143737,7 +144191,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(1212), 18, + ACTIONS(1202), 18, sym__or_operator, sym__and_operator, sym__terminator, @@ -143756,41 +144210,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [104870] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [104854] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(1206), 1, - aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(1215), 2, + sym_comment, + sym_include, + ACTIONS(1204), 4, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + aux_sym_variable_tuning_token2, + ACTIONS(1206), 35, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + aux_sym_unary_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(1215), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143804,9 +144255,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(1208), 16, - sym__terminator, - aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -143821,41 +144269,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [104951] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [104923] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1123), 1, + ACTIONS(1232), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1216), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143869,7 +144317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1125), 16, + ACTIONS(1234), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -143886,41 +144334,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [105032] = 16, - ACTIONS(67), 1, + [105004] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2489), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(1217), 2, + sym_comment, + sym_include, + ACTIONS(1377), 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, + [105071] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1111), 1, + ACTIONS(1224), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1217), 2, + STATE(1218), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143934,7 +144440,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(1113), 16, + ACTIONS(1226), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -143951,101 +144457,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [105113] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [105152] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(87), 5, + ACTIONS(1105), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, + ACTIONS(1220), 1, 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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, - [105190] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - STATE(1219), 2, - sym_comment, - sym_include, - ACTIONS(1214), 4, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1216), 35, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1219), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144059,6 +144505,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(1222), 16, + sym__terminator, + aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -144073,34 +144522,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [105259] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [105233] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, STATE(1220), 2, sym_comment, sym_include, - ACTIONS(1119), 3, + ACTIONS(1208), 3, anon_sym_LT, anon_sym_GT, aux_sym_variable_tuning_token2, - ACTIONS(1121), 33, + ACTIONS(1210), 33, sym__or_operator, sym__and_operator, sym__terminator, @@ -144134,41 +144583,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [105332] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [105306] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1194), 1, + ACTIONS(1216), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1221), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144182,7 +144631,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(1196), 16, + ACTIONS(1218), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144199,94 +144648,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [105413] = 8, - ACTIONS(3), 1, + [105387] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2493), 1, + aux_sym_variable_tuning_token2, + STATE(791), 1, + sym__comparison_operator, + STATE(792), 1, + sym__multiplicative_operator, + STATE(793), 1, + sym__additive_operator, + STATE(794), 1, + sym__logical_operator, + ACTIONS(1109), 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__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, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1223), 2, - sym_comment, - sym_include, - ACTIONS(1354), 38, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1222), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -144297,58 +144696,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__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(2491), 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, + [105468] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2477), 1, + ACTIONS(1212), 1, aux_sym_variable_tuning_token2, - STATE(804), 1, + STATE(791), 1, sym__comparison_operator, - STATE(806), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(807), 1, + STATE(793), 1, sym__additive_operator, - STATE(811), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1224), 2, + STATE(1223), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144362,7 +144761,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(2475), 16, + ACTIONS(1214), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144379,41 +144778,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [105626] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [105549] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2479), 1, + sym__namedot, + ACTIONS(2481), 1, + sym__namecolon, + ACTIONS(2483), 1, + sym__namedoublecolon, + STATE(1284), 1, + aux_sym_object_access_repeat1, + STATE(1320), 1, + aux_sym_member_access_repeat1, + STATE(1340), 1, + aux_sym_qualified_name_repeat1, + STATE(1349), 1, + sym_function_arguments, + STATE(1224), 2, + sym_comment, + sym_include, + ACTIONS(89), 5, anon_sym_SLASH, - ACTIONS(1190), 1, - aux_sym_variable_tuning_token2, - STATE(804), 1, - sym__comparison_operator, - STATE(806), 1, - sym__multiplicative_operator, - STATE(807), 1, - sym__additive_operator, - STATE(811), 1, - sym__logical_operator, - ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(87), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1225), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144423,62 +144827,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(1192), 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, - [105707] = 16, - ACTIONS(67), 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, + [105626] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1123), 1, + ACTIONS(1131), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(791), 1, sym__comparison_operator, - STATE(797), 1, + STATE(792), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(793), 1, sym__additive_operator, - STATE(799), 1, + STATE(794), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1225), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144492,7 +144889,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1125), 15, + ACTIONS(1133), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144508,41 +144905,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [105787] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_index_definition_token1, + [105707] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1198), 1, + ACTIONS(1127), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1227), 2, + STATE(1226), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144556,7 +144954,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(1200), 15, + ACTIONS(1129), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144572,30 +144970,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [105867] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [105787] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - STATE(1228), 2, + STATE(1227), 2, sym_comment, sym_include, - ACTIONS(1214), 4, + ACTIONS(1204), 4, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_variable_tuning_token2, - ACTIONS(1216), 34, + ACTIONS(1206), 34, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -144630,26 +145028,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [105935] = 9, + [105855] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2469), 1, sym_identifier, - ACTIONS(2479), 1, + ACTIONS(2495), 1, aux_sym_input_expression_token2, - STATE(28), 1, + STATE(35), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(1229), 2, + STATE(1228), 2, sym_comment, sym_include, - ACTIONS(1354), 37, + ACTIONS(1377), 37, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -144687,41 +145085,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [106001] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [105921] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1194), 1, + ACTIONS(1232), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1230), 2, + STATE(1229), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144735,7 +145133,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(1196), 15, + ACTIONS(1234), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144751,38 +145149,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106081] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [106001] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1210), 1, + ACTIONS(1131), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1231), 2, + STATE(1230), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144796,9 +145197,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(1212), 17, - sym__or_operator, - sym__and_operator, + ACTIONS(1133), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144814,40 +145213,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106159] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [106081] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(796), 1, + ACTIONS(1212), 1, + aux_sym_variable_tuning_token2, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1232), 2, - sym_comment, - sym_include, - ACTIONS(1119), 3, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1121), 32, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - sym__terminator, - aux_sym_unary_expression_token2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1231), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144861,6 +145261,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(1214), 15, + sym__terminator, + aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -144874,41 +145277,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106231] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [106161] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1202), 1, + ACTIONS(1228), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1233), 2, + STATE(1232), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144922,7 +145325,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(1204), 15, + ACTIONS(1230), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -144938,38 +145341,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106311] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [106241] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(232), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(796), 1, + ACTIONS(2493), 1, + aux_sym_variable_tuning_token2, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1234), 2, + STATE(1233), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144983,9 +145389,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(230), 17, - sym__or_operator, - sym__and_operator, + ACTIONS(2491), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -145001,41 +145405,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106389] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [106321] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1190), 1, + ACTIONS(1224), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1235), 2, + STATE(1234), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145049,7 +145453,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(1192), 15, + ACTIONS(1226), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -145065,35 +145469,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106469] = 8, - ACTIONS(3), 1, + [106401] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1236), 2, - sym_comment, - sym_include, - ACTIONS(1579), 38, + ACTIONS(1105), 1, anon_sym_SLASH, + ACTIONS(1200), 1, + aux_sym_variable_tuning_token2, + STATE(783), 1, + sym__comparison_operator, + STATE(784), 1, + sym__multiplicative_operator, + STATE(785), 1, + sym__additive_operator, + STATE(786), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1235), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -145104,58 +145514,59 @@ static 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_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, - [106533] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1202), 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, + 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, + [106479] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2477), 1, + ACTIONS(1220), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1237), 2, + STATE(1236), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145169,7 +145580,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(2475), 15, + ACTIONS(1222), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -145185,41 +145596,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106613] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [106559] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(1206), 1, + ACTIONS(206), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1238), 2, + STATE(1237), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145233,7 +145641,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(1208), 15, + ACTIONS(204), 17, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -145249,41 +145659,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [106693] = 16, - ACTIONS(67), 1, + [106637] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(1238), 2, + sym_comment, + sym_include, + ACTIONS(1595), 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, + [106701] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1111), 1, - aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1239), 2, + sym_comment, + sym_include, + ACTIONS(1208), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + aux_sym_variable_tuning_token2, + ACTIONS(1210), 32, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + aux_sym_unary_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(1239), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145297,9 +145762,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(1113), 15, - sym__terminator, - aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -145314,40 +145776,40 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1115), 1, + ACTIONS(1216), 1, aux_sym_variable_tuning_token2, - STATE(796), 1, + STATE(783), 1, sym__comparison_operator, - STATE(797), 1, + STATE(784), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(785), 1, sym__additive_operator, - STATE(799), 1, + STATE(786), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1240), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145361,7 +145823,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(1117), 15, + ACTIONS(1218), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -145378,62 +145840,62 @@ static const uint16_t ts_small_parse_table[] = { 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_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2481), 1, + ACTIONS(2497), 1, anon_sym_RPAREN, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3302), 1, + STATE(3319), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1241), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145448,62 +145910,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [106946] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2493), 1, + ACTIONS(2509), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3299), 1, + STATE(3344), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1242), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145518,62 +145980,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [107039] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2495), 1, + ACTIONS(2511), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3312), 1, + STATE(3369), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1243), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145588,62 +146050,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [107132] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2497), 1, + ACTIONS(2513), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3340), 1, + STATE(3314), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1244), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145658,62 +146120,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [107225] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3296), 1, + STATE(3367), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1245), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145728,62 +146190,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [107318] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2501), 1, + ACTIONS(2517), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3297), 1, + STATE(3328), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1246), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145798,62 +146260,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [107411] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2503), 1, + ACTIONS(2519), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3332), 1, + STATE(3348), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1247), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145868,62 +146330,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [107504] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2505), 1, + ACTIONS(2521), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3328), 1, + STATE(3323), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1248), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145937,66 +146399,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107597] = 23, - ACTIONS(67), 1, + [107597] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(2507), 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(3309), 1, - aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 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(1249), 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, + ACTIONS(1595), 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, @@ -146007,63 +146439,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107690] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_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, + [107660] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2509), 1, + ACTIONS(2523), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3324), 1, + STATE(3360), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1250), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146077,66 +146524,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107783] = 23, - ACTIONS(67), 1, + [107753] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(2511), 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(3331), 1, - aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2525), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 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(1251), 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, + ACTIONS(1377), 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, @@ -146147,63 +146566,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107876] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_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, + [107818] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2513), 1, + ACTIONS(2527), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3358), 1, + STATE(3342), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1252), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146217,63 +146650,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107969] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [107911] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2515), 1, + ACTIONS(2529), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3351), 1, + STATE(3347), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1253), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146287,63 +146720,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108062] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108004] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2517), 1, + ACTIONS(2531), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3352), 1, + STATE(3334), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1254), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146357,36 +146790,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108155] = 8, - ACTIONS(3), 1, + [108097] = 23, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(2533), 1, + anon_sym_RPAREN, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + STATE(3277), 1, + sym_using, + STATE(3321), 1, + aux_sym_can_find_expression_repeat1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1255), 2, - sym_comment, - sym_include, - ACTIONS(1579), 37, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1255), 2, + sym_comment, + sym_include, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_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(2425), 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, @@ -146397,78 +146860,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, - aux_sym_index_definition_token1, - [108218] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108190] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2519), 1, + ACTIONS(2535), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3335), 1, + STATE(3358), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1256), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146482,63 +146930,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108311] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108283] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2521), 1, + ACTIONS(2537), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3357), 1, + STATE(3330), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1257), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146552,63 +147000,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108404] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108376] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2523), 1, + ACTIONS(2539), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3355), 1, + STATE(3349), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1258), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146622,63 +147070,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108497] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108469] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2525), 1, + ACTIONS(2541), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3316), 1, + STATE(3312), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1259), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146692,63 +147140,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108590] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108562] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2527), 1, + ACTIONS(2543), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3304), 1, + STATE(3326), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1260), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146762,63 +147210,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108683] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108655] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2529), 1, + ACTIONS(2545), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3344), 1, + STATE(3317), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1261), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146832,63 +147280,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108776] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108748] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2531), 1, + ACTIONS(2547), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3346), 1, + STATE(3351), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1262), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146902,63 +147350,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108869] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108841] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2533), 1, + ACTIONS(2549), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3336), 1, + STATE(3355), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1263), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146972,63 +147420,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108962] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [108934] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2535), 1, + ACTIONS(2551), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3305), 1, + STATE(3353), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1264), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147042,63 +147490,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109055] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [109027] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2537), 1, + ACTIONS(2553), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3318), 1, + STATE(3335), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1265), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147112,63 +147560,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109148] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [109120] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2539), 1, + ACTIONS(2555), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3310), 1, + STATE(3327), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1266), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147182,63 +147630,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109241] = 23, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [109213] = 23, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, + ACTIONS(2503), 1, aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(2541), 1, + ACTIONS(2557), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3349), 1, + STATE(3308), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1267), 2, sym_comment, sym_include, - STATE(3861), 3, + STATE(3872), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147252,38 +147700,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109334] = 9, - ACTIONS(3), 1, + [109306] = 23, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2543), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(2559), 1, + anon_sym_RPAREN, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + STATE(3277), 1, + sym_using, + STATE(3333), 1, + aux_sym_can_find_expression_repeat1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1268), 2, - sym_comment, - sym_include, - ACTIONS(1354), 36, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1268), 2, + sym_comment, + sym_include, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_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(2425), 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, @@ -147294,20 +147770,6 @@ static 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, [109399] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -147315,41 +147777,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2545), 1, + ACTIONS(2561), 1, sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2565), 1, aux_sym_class_type_token1, - STATE(1270), 1, - aux_sym_method_definition_repeat1, - STATE(6160), 1, - sym__type, + ACTIONS(2573), 1, + sym__escaped_string, + ACTIONS(2571), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, STATE(1269), 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, + STATE(3547), 2, + sym_string_literal, + sym__type, + STATE(2983), 3, sym_scope_tuning, sym_access_tuning, - sym_method_tuning, - STATE(6711), 3, + sym_serialization_tuning, + STATE(5144), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2551), 4, + ACTIONS(2567), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2553), 5, + ACTIONS(2569), 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, + ACTIONS(2563), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147375,41 +147837,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2545), 1, + ACTIONS(2561), 1, sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2565), 1, aux_sym_class_type_token1, - STATE(1385), 1, - aux_sym_method_definition_repeat1, - STATE(6341), 1, - sym__type, + ACTIONS(2573), 1, + sym__escaped_string, + ACTIONS(2571), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, 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, + STATE(3576), 2, + sym_string_literal, + sym__type, + STATE(2951), 3, sym_scope_tuning, sym_access_tuning, - sym_method_tuning, - STATE(6711), 3, + sym_serialization_tuning, + STATE(5144), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2551), 4, + ACTIONS(2567), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2553), 5, + ACTIONS(2569), 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, + ACTIONS(2563), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147435,41 +147897,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, + ACTIONS(2575), 1, sym_identifier, - ACTIONS(2561), 1, + ACTIONS(2579), 1, aux_sym_class_type_token1, - ACTIONS(2569), 1, - sym__escaped_string, - ACTIONS(2567), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, + STATE(1275), 1, + aux_sym_method_definition_repeat1, + STATE(6237), 1, + sym__type, STATE(1271), 2, sym_comment, sym_include, - STATE(3549), 2, - sym_string_literal, - sym__type, - STATE(3002), 3, + ACTIONS(2585), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + STATE(1699), 3, sym_scope_tuning, sym_access_tuning, - sym_serialization_tuning, - STATE(5020), 3, + sym_method_tuning, + STATE(6894), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2563), 4, + ACTIONS(2581), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2565), 5, + ACTIONS(2583), 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(2559), 18, + ACTIONS(2577), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147495,17 +147957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2487), 1, sym_identifier, - STATE(32), 1, + STATE(30), 1, sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, STATE(1272), 2, sym_comment, sym_include, - ACTIONS(1579), 36, + ACTIONS(1595), 36, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -147549,41 +148011,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, - sym_identifier, ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, aux_sym_class_type_token1, - ACTIONS(2569), 1, + ACTIONS(2573), 1, sym__escaped_string, - ACTIONS(2567), 2, + ACTIONS(2571), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, STATE(1273), 2, sym_comment, sym_include, - STATE(3529), 2, + STATE(3538), 2, sym_string_literal, sym__type, - STATE(2933), 3, + STATE(2998), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5020), 3, + STATE(5144), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2563), 4, + ACTIONS(2567), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2565), 5, + ACTIONS(2569), 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(2559), 18, + ACTIONS(2563), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147609,41 +148071,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, - sym_identifier, ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, aux_sym_class_type_token1, - ACTIONS(2569), 1, + ACTIONS(2573), 1, sym__escaped_string, - ACTIONS(2567), 2, + ACTIONS(2571), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, STATE(1274), 2, sym_comment, sym_include, - STATE(3487), 2, + STATE(3580), 2, sym_string_literal, sym__type, - STATE(2936), 3, + STATE(3012), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5020), 3, + STATE(5144), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2563), 4, + ACTIONS(2567), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2565), 5, + ACTIONS(2569), 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(2559), 18, + ACTIONS(2563), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147669,41 +148131,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, + ACTIONS(2575), 1, sym_identifier, - ACTIONS(2561), 1, + ACTIONS(2579), 1, aux_sym_class_type_token1, - ACTIONS(2569), 1, - sym__escaped_string, - ACTIONS(2567), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, + STATE(1383), 1, + aux_sym_method_definition_repeat1, + STATE(6738), 1, + sym__type, STATE(1275), 2, sym_comment, sym_include, - STATE(3556), 2, - sym_string_literal, - sym__type, - STATE(2993), 3, + ACTIONS(2585), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + STATE(1699), 3, sym_scope_tuning, sym_access_tuning, - sym_serialization_tuning, - STATE(5020), 3, + sym_method_tuning, + STATE(6894), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2563), 4, + ACTIONS(2581), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2565), 5, + ACTIONS(2583), 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(2559), 18, + ACTIONS(2577), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147729,41 +148191,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, - sym_identifier, ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, aux_sym_class_type_token1, - ACTIONS(2569), 1, + ACTIONS(2573), 1, sym__escaped_string, - ACTIONS(2567), 2, + ACTIONS(2571), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, STATE(1276), 2, sym_comment, sym_include, - STATE(3496), 2, + STATE(3566), 2, sym_string_literal, sym__type, - STATE(3001), 3, + STATE(2980), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5020), 3, + STATE(5144), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2563), 4, + ACTIONS(2567), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2565), 5, + ACTIONS(2569), 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(2559), 18, + ACTIONS(2563), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -147783,41 +148245,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, [109979] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1194), 1, + ACTIONS(1212), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1277), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1196), 12, + ACTIONS(1214), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -147830,7 +148292,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2409), 12, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147843,85 +148305,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110056] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [110056] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2571), 1, - sym__namecolon, - STATE(1278), 3, - sym_comment, - sym_include, - 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(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, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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, - [110115] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2467), 1, - sym__namecolon, - STATE(1278), 1, - aux_sym_object_access_repeat1, - STATE(1279), 2, + STATE(775), 1, + sym__comparison_operator, + STATE(776), 1, + sym__multiplicative_operator, + STATE(777), 1, + sym__additive_operator, + STATE(778), 1, + sym__logical_operator, + STATE(1278), 2, sym_comment, sym_include, - ACTIONS(91), 5, + ACTIONS(1204), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(89), 32, + ACTIONS(1206), 30, 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, @@ -147948,55 +148360,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110176] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [110121] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1115), 1, + ACTIONS(1200), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1280), 2, + STATE(1279), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1117), 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, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148009,38 +148405,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110253] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1202), 14, + sym__or_operator, + sym__and_operator, + 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, + [110196] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(786), 1, + ACTIONS(206), 1, + aux_sym_variable_tuning_token2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - STATE(1281), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1280), 2, sym_comment, sym_include, - ACTIONS(1214), 5, - anon_sym_SLASH, + ACTIONS(1109), 3, 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, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148053,6 +148465,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(204), 14, + sym__or_operator, + sym__and_operator, + sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, @@ -148064,42 +148480,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110318] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [110271] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2587), 1, + sym__namecolon, + STATE(1281), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(97), 5, anon_sym_SLASH, - ACTIONS(2576), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - 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, + ACTIONS(95), 32, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - STATE(1282), 2, - sym_comment, - sym_include, - ACTIONS(1090), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - ACTIONS(2409), 12, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148112,8 +148521,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(2574), 12, - sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, @@ -148125,55 +148532,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110395] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [110330] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1202), 1, + ACTIONS(2592), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1283), 2, + STATE(1282), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1204), 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, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148186,35 +148580,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110472] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2590), 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, + [110407] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1284), 2, + STATE(1283), 2, sym_comment, sym_include, - ACTIONS(1119), 4, + ACTIONS(1208), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(1121), 28, + ACTIONS(1210), 28, sym__or_operator, sym__and_operator, sym__terminator, @@ -148243,27 +148650,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110541] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [110476] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2467), 1, + ACTIONS(2481), 1, sym__namecolon, - STATE(1278), 1, + STATE(1281), 1, aux_sym_object_access_repeat1, - STATE(1285), 2, + STATE(1284), 2, sym_comment, sym_include, - ACTIONS(91), 5, + ACTIONS(93), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(89), 32, + ACTIONS(91), 32, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -148296,39 +148703,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110602] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [110537] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(232), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(786), 1, + ACTIONS(1127), 1, + aux_sym_variable_tuning_token2, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1286), 2, + STATE(1285), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(2409), 12, + ACTIONS(1129), 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(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148341,9 +148764,42 @@ 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), 14, + [110614] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1131), 1, + aux_sym_variable_tuning_token2, + STATE(775), 1, + sym__comparison_operator, + STATE(776), 1, + sym__multiplicative_operator, + STATE(777), 1, + sym__additive_operator, + STATE(778), 1, + sym__logical_operator, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1286), 2, + sym_comment, + sym_include, + ACTIONS(1109), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + ACTIONS(1133), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -148356,39 +148812,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110677] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2425), 12, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + 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, + [110691] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(1210), 1, - aux_sym_variable_tuning_token2, - 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(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2481), 1, + sym__namecolon, + STATE(1281), 1, + aux_sym_object_access_repeat1, STATE(1287), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(93), 5, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(2409), 12, + aux_sym_variable_tuning_token2, + ACTIONS(91), 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, @@ -148401,10 +148867,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(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, @@ -148417,41 +148879,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_getter_token1, aux_sym_setter_token1, [110752] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1123), 1, + ACTIONS(1216), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1288), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1125), 12, + ACTIONS(1218), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -148464,7 +148926,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2409), 12, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148478,41 +148940,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [110829] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1190), 1, + ACTIONS(1220), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1289), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1192), 12, + ACTIONS(1222), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -148525,7 +148987,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2409), 12, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148539,41 +149001,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [110906] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1206), 1, + ACTIONS(1228), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1290), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1208), 12, + ACTIONS(1230), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -148586,7 +149048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2409), 12, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148600,41 +149062,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [110983] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1111), 1, + ACTIONS(1232), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1291), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1113), 12, + ACTIONS(1234), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -148647,7 +149109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2409), 12, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148661,41 +149123,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [111060] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1198), 1, + ACTIONS(1224), 1, aux_sym_variable_tuning_token2, - STATE(786), 1, + STATE(775), 1, sym__comparison_operator, - STATE(787), 1, + STATE(776), 1, sym__multiplicative_operator, - STATE(788), 1, + STATE(777), 1, sym__additive_operator, - STATE(789), 1, + STATE(778), 1, sym__logical_operator, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1292), 2, sym_comment, sym_include, - ACTIONS(1090), 3, + ACTIONS(1109), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1200), 12, + ACTIONS(1226), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -148708,7 +149170,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2409), 12, + ACTIONS(2425), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148722,56 +149184,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, [111137] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2578), 1, + ACTIONS(2594), 1, sym__terminator, - ACTIONS(2584), 1, + ACTIONS(2600), 1, aux_sym_input_stream_tuning_token9, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - STATE(3542), 1, + STATE(3515), 1, aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, + STATE(3858), 1, sym_input_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, + ACTIONS(2596), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, STATE(1293), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(2598), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148785,39 +149247,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111221] = 15, - ACTIONS(67), 1, + [111221] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2481), 1, + sym__namecolon, + STATE(1281), 1, + aux_sym_object_access_repeat1, + STATE(1294), 2, + sym_comment, + sym_include, + ACTIONS(93), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(91), 31, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + 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, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + 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, + [111281] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1294), 2, + STATE(1295), 2, sym_comment, sym_include, - ACTIONS(1113), 12, + ACTIONS(1214), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -148830,7 +149344,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148844,37 +149358,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111295] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [111355] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(921), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - STATE(1295), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1296), 2, sym_comment, sym_include, - ACTIONS(1214), 3, + ACTIONS(1133), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [111429] = 20, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2602), 1, + sym__terminator, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + STATE(3551), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 31, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - anon_sym_COLON, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1297), 2, + sym_comment, + sym_include, + ACTIONS(2598), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148888,46 +149481,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_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, + [111513] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_LBRACK, + ACTIONS(2477), 1, + anon_sym_LPAREN, + STATE(1349), 1, + sym_function_arguments, + STATE(1298), 2, + sym_comment, + sym_include, + ACTIONS(73), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(67), 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, + [111575] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1296), 2, + STATE(1299), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 29, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148941,11 +149580,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(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, @@ -148956,52 +149590,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [111431] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [111643] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(1300), 2, + sym_comment, + sym_include, + ACTIONS(1204), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1206), 31, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + anon_sym_COLON, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149015,52 +149634,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111505] = 15, - ACTIONS(67), 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, + [111707] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2604), 1, + sym__terminator, + STATE(574), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + STATE(3507), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1298), 2, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1301), 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, + ACTIONS(2598), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149074,57 +149708,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111579] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [111791] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, + ACTIONS(2600), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2586), 1, + ACTIONS(2606), 1, sym__terminator, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - STATE(3534), 1, + STATE(3527), 1, aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, + STATE(3858), 1, sym_input_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, + ACTIONS(2596), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1299), 2, + STATE(1302), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(2598), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149138,39 +149772,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111663] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [111875] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1300), 2, + STATE(1303), 2, sym_comment, sym_include, - ACTIONS(1117), 12, + ACTIONS(2608), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -149183,7 +149817,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149197,57 +149831,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111737] = 20, - ACTIONS(67), 1, + [111949] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(1304), 2, + sym_comment, + sym_include, + ACTIONS(108), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(106), 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, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + 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, + [112005] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, + ACTIONS(2600), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2588), 1, + ACTIONS(2610), 1, sym__terminator, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - STATE(3539), 1, + STATE(3550), 1, aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, + STATE(3858), 1, sym_input_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, + ACTIONS(2596), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1301), 2, + STATE(1305), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(2598), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149261,39 +149945,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111821] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112089] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1302), 2, + STATE(1306), 2, sym_comment, sym_include, - ACTIONS(1192), 12, + ACTIONS(1129), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -149306,7 +149990,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149320,57 +150004,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111895] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112163] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, + ACTIONS(2600), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2590), 1, + ACTIONS(2612), 1, sym__terminator, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - STATE(3548), 1, + STATE(3558), 1, aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, + STATE(3858), 1, sym_input_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, + ACTIONS(2596), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1303), 2, + STATE(1307), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(2598), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149384,55 +150068,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111979] = 15, - ACTIONS(67), 1, + [112247] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2614), 1, + sym_identifier, + ACTIONS(2616), 1, + aux_sym_input_expression_token2, + STATE(1423), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(1308), 2, + sym_comment, + sym_include, + ACTIONS(1377), 33, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1304), 2, - sym_comment, - sym_include, - ACTIONS(1196), 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -149443,39 +150109,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112053] = 12, - ACTIONS(67), 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, + [112309] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1305), 2, - sym_comment, - sym_include, - ACTIONS(1121), 29, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1309), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149489,6 +150164,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(1202), 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, @@ -149499,39 +150179,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [112121] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112381] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1306), 2, + STATE(1310), 2, sym_comment, sym_include, - ACTIONS(1200), 12, + ACTIONS(1218), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -149544,7 +150224,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149558,36 +150238,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112195] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112455] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2618), 1, + sym__terminator, + STATE(574), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + STATE(3567), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1307), 2, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1311), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2598), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149601,48 +150302,57 @@ 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), 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, - [112267] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112539] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1308), 2, - sym_comment, - sym_include, - ACTIONS(102), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2620), 1, + sym__terminator, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + STATE(3517), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(100), 33, - sym__namecolon, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1312), 2, + sym_comment, + sym_include, + ACTIONS(2598), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149652,49 +150362,56 @@ 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, - [112323] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112623] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2467), 1, - sym__namecolon, - STATE(1278), 1, - aux_sym_object_access_repeat1, - STATE(1309), 2, - sym_comment, - sym_include, - ACTIONS(91), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(907), 1, + sym__comparison_operator, + STATE(908), 1, + sym__multiplicative_operator, + STATE(909), 1, + sym__additive_operator, + STATE(910), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(89), 31, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1313), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149704,71 +150421,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - 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, + [112697] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2592), 1, - sym__terminator, - STATE(618), 1, - sym__logical_operator, - STATE(619), 1, - sym__additive_operator, - STATE(620), 1, - sym__multiplicative_operator, - STATE(621), 1, + STATE(907), 1, sym__comparison_operator, - STATE(3502), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, - sym_input_stream_tuning, - ACTIONS(1090), 2, + STATE(908), 1, + sym__multiplicative_operator, + STATE(909), 1, + sym__additive_operator, + STATE(910), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1310), 2, + STATE(1314), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149782,57 +150468,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112467] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(204), 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, + [112769] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, + ACTIONS(2600), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2594), 1, + ACTIONS(2622), 1, sym__terminator, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - STATE(3565), 1, + STATE(3512), 1, aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, + STATE(3858), 1, sym_input_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, + ACTIONS(2596), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1311), 2, + STATE(1315), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(2598), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149846,57 +150547,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112551] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112853] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2596), 1, - sym__terminator, - STATE(618), 1, - sym__logical_operator, - STATE(619), 1, - sym__additive_operator, - STATE(620), 1, - sym__multiplicative_operator, - STATE(621), 1, + STATE(907), 1, sym__comparison_operator, - STATE(3561), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, - sym_input_stream_tuning, - ACTIONS(1090), 2, + STATE(908), 1, + sym__multiplicative_operator, + STATE(909), 1, + sym__additive_operator, + STATE(910), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1312), 2, + STATE(1316), 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, + ACTIONS(1234), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149910,57 +150606,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112635] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [112927] = 20, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(2584), 1, + ACTIONS(2600), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2598), 1, + ACTIONS(2624), 1, sym__terminator, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - STATE(3509), 1, + STATE(3503), 1, aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, + STATE(3858), 1, sym_input_stream_tuning, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, + ACTIONS(2596), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1313), 2, + STATE(1317), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(2598), 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, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149974,39 +150670,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112719] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113011] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1314), 2, + STATE(1318), 2, sym_comment, sym_include, - ACTIONS(1125), 12, + ACTIONS(1226), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -150019,7 +150715,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150033,39 +150729,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112793] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113085] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(921), 1, + STATE(907), 1, sym__comparison_operator, - STATE(922), 1, + STATE(908), 1, sym__multiplicative_operator, - STATE(923), 1, + STATE(909), 1, sym__additive_operator, - STATE(924), 1, + STATE(910), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1315), 2, + STATE(1319), 2, sym_comment, sym_include, - ACTIONS(2600), 12, + ACTIONS(1230), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -150078,7 +150774,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150092,57 +150788,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112867] = 20, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113159] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2483), 1, + sym__namedoublecolon, + STATE(1334), 1, + aux_sym_member_access_repeat1, + STATE(1320), 2, + sym_comment, + sym_include, + ACTIONS(146), 5, anon_sym_SLASH, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2602), 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(3510), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, - sym_input_stream_tuning, - ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(144), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1316), 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150152,61 +150825,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, - [112951] = 20, - ACTIONS(67), 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] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(858), 1, sym__comparison_operator, - STATE(3537), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3914), 1, - sym_input_stream_tuning, - ACTIONS(1090), 2, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2580), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1317), 2, + STATE(1321), 2, sym_comment, sym_include, - ACTIONS(2582), 6, + ACTIONS(1202), 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, - ACTIONS(2409), 13, + aux_sym_input_stream_tuning_token9, + aux_sym_input_stream_tuning_token11, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150220,37 +150896,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113035] = 9, - ACTIONS(3), 1, + [113289] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(1354), 33, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(858), 1, + sym__comparison_operator, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1322), 2, + sym_comment, + sym_include, + ACTIONS(204), 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, + ACTIONS(2425), 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, @@ -150261,41 +150953,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_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, - [113097] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113360] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_function_arguments, - STATE(1319), 2, + ACTIONS(2479), 1, + sym__namedot, + STATE(1340), 1, + aux_sym_qualified_name_repeat1, + STATE(1323), 2, sym_comment, sym_include, - ACTIONS(71), 5, + ACTIONS(104), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(65), 30, + ACTIONS(102), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -150326,34 +151004,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [113159] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113419] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2467), 1, - sym__namecolon, - STATE(1279), 1, - aux_sym_object_access_repeat1, - STATE(1320), 2, - sym_comment, - sym_include, - ACTIONS(87), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(858), 1, + sym__comparison_operator, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(85), 30, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1324), 2, + sym_comment, + sym_include, + ACTIONS(1234), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150363,48 +151058,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, - 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, + [113492] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2467), 1, - sym__namecolon, - STATE(1279), 1, - aux_sym_object_access_repeat1, - STATE(1321), 2, - sym_comment, - sym_include, - ACTIONS(71), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(858), 1, + sym__comparison_operator, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(65), 30, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1325), 2, + sym_comment, + sym_include, + ACTIONS(1230), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150414,167 +151116,94 @@ 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, - [113277] = 8, - ACTIONS(67), 1, + [113565] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_function_arguments, - STATE(1322), 2, + ACTIONS(132), 1, + sym__escaped_string, + ACTIONS(741), 1, + sym__namedot, + STATE(1339), 1, + aux_sym_qualified_name_repeat1, + STATE(1326), 2, sym_comment, sym_include, - ACTIONS(87), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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, - [113336] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(134), 35, anon_sym_LBRACE, - ACTIONS(2610), 1, sym_identifier, - STATE(1428), 1, - sym_qualified_name, - ACTIONS(1581), 2, - sym__or_operator, - sym__and_operator, - STATE(1323), 2, - sym_comment, - sym_include, - ACTIONS(1579), 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, - 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, + 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, + [113622] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(876), 1, + STATE(858), 1, sym__comparison_operator, - STATE(877), 1, + STATE(859), 1, sym__multiplicative_operator, - STATE(878), 1, + STATE(860), 1, sym__additive_operator, - STATE(879), 1, + STATE(861), 1, sym__logical_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1324), 2, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1327), 2, sym_comment, sym_include, - ACTIONS(1121), 28, - sym__or_operator, - sym__and_operator, + ACTIONS(1226), 11, 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_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, @@ -150585,31 +151214,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, - [113462] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(1325), 2, - sym_comment, - sym_include, - ACTIONS(117), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(115), 32, - sym__namecolon, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150619,54 +151224,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_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, - [113517] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113695] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(876), 1, + STATE(858), 1, sym__comparison_operator, - STATE(877), 1, + STATE(859), 1, sym__multiplicative_operator, - STATE(878), 1, + STATE(860), 1, sym__additive_operator, - STATE(879), 1, + STATE(861), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1326), 2, + STATE(1328), 2, sym_comment, sym_include, - ACTIONS(1196), 11, + ACTIONS(1222), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -150678,7 +151272,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150692,31 +151286,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113590] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113768] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1327), 2, - sym_comment, - sym_include, - ACTIONS(144), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(858), 1, + sym__comparison_operator, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(142), 32, - sym__namecolon, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1329), 2, + sym_comment, + sym_include, + ACTIONS(1218), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150726,38 +151340,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_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, + [113841] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1328), 2, + STATE(1330), 2, sym_comment, sym_include, - ACTIONS(140), 5, + ACTIONS(112), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(138), 32, + ACTIONS(110), 32, sym__namecolon, sym__or_operator, sym__and_operator, @@ -150787,27 +151390,29 @@ 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, - [113700] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [113896] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1329), 2, + ACTIONS(2626), 1, + sym__namedot, + STATE(1331), 3, sym_comment, sym_include, - ACTIONS(117), 5, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(115), 32, - sym__namecolon, + ACTIONS(121), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -150838,92 +151443,39 @@ 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, - [113755] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [113953] = 15, 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(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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [113818] = 14, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(876), 1, + STATE(858), 1, sym__comparison_operator, - STATE(877), 1, + STATE(859), 1, sym__multiplicative_operator, - STATE(878), 1, + STATE(860), 1, sym__additive_operator, - STATE(879), 1, + STATE(861), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1331), 2, + STATE(1332), 2, sym_comment, sym_include, - ACTIONS(1212), 13, - sym__or_operator, - sym__and_operator, + ACTIONS(1129), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -150935,7 +151487,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150949,39 +151501,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113889] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114026] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(876), 1, + STATE(858), 1, sym__comparison_operator, - STATE(877), 1, + STATE(859), 1, sym__multiplicative_operator, - STATE(878), 1, + STATE(860), 1, sym__additive_operator, - STATE(879), 1, + STATE(861), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1332), 2, + STATE(1333), 2, sym_comment, sym_include, - ACTIONS(1204), 11, + ACTIONS(1214), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -150993,7 +151545,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151007,26 +151559,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113962] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114099] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, + ACTIONS(2629), 1, sym__namedoublecolon, - STATE(1333), 3, + STATE(1334), 3, sym_comment, sym_include, aux_sym_member_access_repeat1, - ACTIONS(129), 5, + ACTIONS(116), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(127), 30, + ACTIONS(114), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -151057,38 +151609,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [114019] = 9, - ACTIONS(3), 1, + [114156] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(1354), 32, - anon_sym_COLON, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(858), 1, + sym__comparison_operator, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + STATE(1335), 2, + sym_comment, + sym_include, + ACTIONS(1210), 28, + sym__or_operator, + sym__and_operator, + 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, @@ -151099,37 +151654,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, - [114080] = 8, - ACTIONS(67), 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, + [114223] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, - sym__namedot, - STATE(1339), 1, - aux_sym_qualified_name_repeat1, - STATE(1335), 2, + STATE(858), 1, + sym__comparison_operator, + STATE(859), 1, + sym__multiplicative_operator, + STATE(860), 1, + sym__additive_operator, + STATE(861), 1, + sym__logical_operator, + STATE(1336), 2, sym_comment, sym_include, - ACTIONS(106), 5, + ACTIONS(1204), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(104), 30, + ACTIONS(1206), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -151146,52 +151703,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, - 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, - [114139] = 14, - ACTIONS(67), 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, + [114286] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(876), 1, + ACTIONS(2634), 1, + aux_sym_input_stream_tuning_token11, + STATE(858), 1, sym__comparison_operator, - STATE(877), 1, + STATE(859), 1, sym__multiplicative_operator, - STATE(878), 1, + STATE(860), 1, sym__additive_operator, - STATE(879), 1, + STATE(861), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1336), 2, + STATE(1337), 2, sym_comment, sym_include, - ACTIONS(230), 13, - sym__or_operator, - sym__and_operator, + ACTIONS(2632), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -151202,8 +151762,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, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151217,20 +151776,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114210] = 6, + [114361] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2479), 1, + sym__namedot, + STATE(1340), 1, + aux_sym_qualified_name_repeat1, + STATE(1338), 2, + sym_comment, + sym_include, + ACTIONS(138), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(136), 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, + [114420] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(108), 1, + ACTIONS(121), 1, sym__escaped_string, - ACTIONS(2617), 1, + ACTIONS(2636), 1, sym__namedot, - STATE(1337), 3, + STATE(1339), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(110), 35, + ACTIONS(123), 35, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -151266,39 +151876,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [114265] = 15, - ACTIONS(67), 1, + [114475] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2479), 1, + sym__namedot, + STATE(1331), 1, + aux_sym_qualified_name_repeat1, + STATE(1340), 2, + sym_comment, + sym_include, + ACTIONS(134), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(132), 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, + [114534] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(876), 1, + STATE(858), 1, sym__comparison_operator, - STATE(877), 1, + STATE(859), 1, sym__multiplicative_operator, - STATE(878), 1, + STATE(860), 1, sym__additive_operator, - STATE(879), 1, + STATE(861), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1338), 2, + STATE(1341), 2, sym_comment, sym_include, - ACTIONS(1125), 11, + ACTIONS(1133), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -151310,7 +151971,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151324,26 +151985,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114338] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114607] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, - sym__namedot, - STATE(1339), 3, + STATE(1342), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 5, + ACTIONS(130), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(108), 30, + ACTIONS(128), 32, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -151372,25 +152031,26 @@ 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, - [114395] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114662] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1340), 2, + STATE(1343), 2, sym_comment, sym_include, - ACTIONS(144), 5, + ACTIONS(142), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(142), 32, + ACTIONS(140), 32, sym__namecolon, sym__or_operator, sym__and_operator, @@ -151420,47 +152080,50 @@ 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, - anon_sym_NO_DASHERROR, - [114450] = 6, - ACTIONS(67), 1, + [114717] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1341), 2, + ACTIONS(2639), 1, + sym_identifier, + STATE(1428), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(1344), 2, sym_comment, sym_include, - ACTIONS(140), 5, + ACTIONS(1595), 33, 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, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_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, @@ -151471,26 +152134,23 @@ 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, - [114505] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114776] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2623), 1, - anon_sym_NO_DASHERROR, - STATE(1342), 2, + STATE(1345), 2, sym_comment, sym_include, - ACTIONS(393), 5, + ACTIONS(112), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(391), 31, + ACTIONS(110), 32, sym__namecolon, sym__or_operator, sym__and_operator, @@ -151520,169 +152180,37 @@ 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, - [114562] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114831] = 8, 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(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, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [114635] = 15, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, - 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(1344), 2, + ACTIONS(2477), 1, + anon_sym_LPAREN, + STATE(1349), 1, + sym_function_arguments, + STATE(1346), 2, sym_comment, sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [114708] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(89), 5, 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, - ACTIONS(1094), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(87), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1345), 2, - sym_comment, - sym_include, - ACTIONS(1113), 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151692,31 +152220,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, - [114781] = 8, - ACTIONS(67), 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, + [114890] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2469), 1, - sym__namedoublecolon, - STATE(1333), 1, - aux_sym_member_access_repeat1, - STATE(1346), 2, + ACTIONS(2481), 1, + sym__namecolon, + STATE(1287), 1, + aux_sym_object_access_repeat1, + STATE(1347), 2, sym_comment, sym_include, - ACTIONS(121), 5, + ACTIONS(89), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(119), 30, + ACTIONS(87), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -151747,25 +152285,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [114840] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [114949] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2625), 1, - aux_sym_function_call_token1, - STATE(1347), 2, + STATE(1348), 2, sym_comment, sym_include, - ACTIONS(158), 5, + ACTIONS(130), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(156), 31, + ACTIONS(128), 32, sym__namecolon, sym__or_operator, sym__and_operator, @@ -151797,27 +152333,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [114897] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [115004] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, - sym__namedot, - STATE(1335), 1, - aux_sym_qualified_name_repeat1, - STATE(1348), 2, + ACTIONS(2641), 1, + aux_sym_function_call_token1, + STATE(1349), 2, sym_comment, sym_include, - ACTIONS(136), 5, + ACTIONS(168), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(134), 30, + ACTIONS(166), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -151848,54 +152384,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [114956] = 15, - ACTIONS(67), 1, + [115061] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, - ACTIONS(1094), 2, + ACTIONS(2431), 1, + sym_identifier, + ACTIONS(2643), 1, + aux_sym_input_expression_token2, + STATE(280), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(1350), 2, + sym_comment, + sym_include, + ACTIONS(1377), 32, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -151906,51 +152426,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115029] = 15, - ACTIONS(67), 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, + [115122] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2481), 1, + sym__namecolon, + STATE(1287), 1, + aux_sym_object_access_repeat1, + STATE(1351), 2, + sym_comment, + sym_include, + ACTIONS(73), 5, 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, - ACTIONS(1094), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(67), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1350), 2, - sym_comment, - sym_include, - 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151960,81 +152473,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, - [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, - 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, - [115159] = 8, - ACTIONS(67), 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, + [115181] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, - sym__namedot, - STATE(1335), 1, - aux_sym_qualified_name_repeat1, STATE(1352), 2, sym_comment, sym_include, - ACTIONS(125), 5, + ACTIONS(142), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(123), 30, + ACTIONS(140), 32, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -152065,52 +152535,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [115218] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [115236] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2645), 1, + anon_sym_NO_DASHERROR, + STATE(1353), 2, + sym_comment, + sym_include, + ACTIONS(649), 5, anon_sym_SLASH, - ACTIONS(2629), 1, - aux_sym_input_stream_tuning_token11, - 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(1094), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(647), 31, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1353), 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152120,57 +152572,74 @@ 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, - [115293] = 15, - ACTIONS(67), 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, + [115293] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(618), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2653), 1, + aux_sym_widget_field_token1, + STATE(876), 1, sym__logical_operator, - STATE(619), 1, + STATE(878), 1, sym__additive_operator, - STATE(620), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(897), 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, + STATE(1993), 1, + sym_do_block, + STATE(3922), 1, + aux_sym_on_statement_repeat1, + STATE(4229), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, STATE(1354), 2, sym_comment, sym_include, - 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, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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, @@ -152181,107 +152650,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115365] = 10, - ACTIONS(67), 1, + [115379] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1355), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 29, - 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_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, - [115427] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, + ACTIONS(370), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2637), 1, + ACTIONS(2655), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(1550), 1, + STATE(2104), 1, sym_do_block, - STATE(3880), 1, + STATE(3857), 1, aux_sym_on_statement_repeat1, - STATE(4174), 1, + STATE(4095), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6172), 1, + STATE(6550), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1356), 2, + STATE(1355), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -152297,124 +152714,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115513] = 22, - ACTIONS(3), 1, + [115465] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2657), 1, + anon_sym_NO_DASHERROR, + STATE(1356), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(649), 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, - [115599] = 22, - 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(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(864), 1, - sym__additive_operator, - STATE(866), 1, - sym__multiplicative_operator, - STATE(867), 1, - sym__comparison_operator, - 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, - ACTIONS(1094), 2, + ACTIONS(647), 32, + sym__namecolon, sym__or_operator, sym__and_operator, - STATE(1358), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + anon_sym_COLON, 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, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -152425,171 +152753,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115685] = 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(1359), 2, - sym_comment, - sym_include, - ACTIONS(2600), 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(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, - [115757] = 22, - ACTIONS(3), 1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [115521] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(2643), 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(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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1360), 2, + STATE(1357), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(150), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(148), 31, + sym__namedoublecolon, + 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, - [115843] = 15, - ACTIONS(67), 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, + [115575] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2659), 1, + sym__namedot, + STATE(1358), 2, + sym_comment, + sym_include, + ACTIONS(162), 5, 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, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(160), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1361), 2, - sym_comment, - sym_include, - ACTIONS(2645), 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152599,43 +152846,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, - [115915] = 15, - ACTIONS(67), 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, + [115631] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1362), 2, + STATE(1359), 2, sym_comment, sym_include, - ACTIONS(1208), 10, + ACTIONS(1214), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -152646,7 +152903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152660,53 +152917,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115987] = 15, - ACTIONS(67), 1, + [115703] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(2661), 1, + anon_sym_LBRACK, + ACTIONS(2663), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, + sym__namedot, + ACTIONS(2667), 1, + sym__namecolon, + ACTIONS(2669), 1, + sym__namedoublecolon, + STATE(2223), 1, + aux_sym_object_access_repeat1, + STATE(2451), 1, + aux_sym_qualified_name_repeat1, + STATE(2515), 1, + sym_function_arguments, + STATE(2520), 1, + aux_sym_member_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(1360), 2, + sym_comment, + sym_include, + ACTIONS(73), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1363), 2, - sym_comment, - sym_include, - 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -152717,55 +152971,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116059] = 22, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [115775] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(615), 1, + ACTIONS(623), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2647), 1, + ACTIONS(2671), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(1601), 1, + STATE(1522), 1, sym_do_block, - STATE(3901), 1, + STATE(3861), 1, aux_sym_on_statement_repeat1, - STATE(4230), 1, + STATE(4116), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6172), 1, + STATE(6216), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1364), 2, + STATE(1361), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -152781,110 +153038,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116145] = 15, - ACTIONS(67), 1, + [115861] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2673), 1, + aux_sym_widget_field_token1, + STATE(876), 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, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + STATE(1554), 1, + sym_do_block, + STATE(3881), 1, + aux_sym_on_statement_repeat1, + STATE(4140), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1365), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1362), 2, sym_comment, sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [116217] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 3, 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(1366), 2, - sym_comment, - sym_include, - ACTIONS(1125), 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, + ACTIONS(1109), 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, @@ -152895,55 +153102,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116289] = 22, + [115947] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(511), 1, + ACTIONS(623), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2649), 1, + ACTIONS(2675), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(3867), 1, + STATE(1632), 1, + sym_do_block, + STATE(3864), 1, aux_sym_on_statement_repeat1, - STATE(4071), 1, + STATE(4100), 1, aux_sym_on_statement_repeat2, - STATE(5037), 1, - sym_do_block, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6298), 1, + STATE(6216), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1367), 2, + STATE(1363), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -152959,55 +153166,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116375] = 22, + [116033] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(370), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, - aux_sym_input_expression_token2, ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2677), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(2209), 1, + STATE(2053), 1, sym_do_block, - STATE(3857), 1, + STATE(3853), 1, aux_sym_on_statement_repeat1, - STATE(4060), 1, + STATE(4129), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6550), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1368), 2, + STATE(1364), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -153023,101 +153230,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116461] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [116119] = 15, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(1369), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 29, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - anon_sym_RPAREN, - 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_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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(574), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1370), 2, + STATE(1365), 2, sym_comment, sym_include, - ACTIONS(1212), 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(2409), 13, + ACTIONS(2679), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153131,55 +153287,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116593] = 22, + [116191] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(511), 1, + ACTIONS(515), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2653), 1, + ACTIONS(2681), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(3872), 1, + STATE(3878), 1, aux_sym_on_statement_repeat1, - STATE(4105), 1, + STATE(4137), 1, aux_sym_on_statement_repeat2, - STATE(4972), 1, + STATE(4881), 1, sym_do_block, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6298), 1, + STATE(6371), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1371), 2, + STATE(1366), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -153195,103 +153351,55 @@ 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_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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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, + [116277] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2683), 1, + aux_sym_widget_field_token1, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + STATE(3902), 1, + aux_sym_on_statement_repeat1, + STATE(4171), 1, + aux_sym_on_statement_repeat2, + STATE(4920), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1373), 2, + STATE(1367), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(1105), 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(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -153307,114 +153415,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_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(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(1374), 2, - sym_comment, - sym_include, - ACTIONS(1113), 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [116895] = 22, + [116363] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(370), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2665), 1, + ACTIONS(2685), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(2143), 1, + STATE(1989), 1, sym_do_block, - STATE(3881), 1, + STATE(3905), 1, aux_sym_on_statement_repeat1, - STATE(4118), 1, + STATE(4065), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6550), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1375), 2, + STATE(1368), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -153430,55 +153479,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116981] = 22, + [116449] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(515), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2667), 1, + ACTIONS(2687), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(2089), 1, - sym_do_block, - STATE(3853), 1, + STATE(3930), 1, aux_sym_on_statement_repeat1, - STATE(4137), 1, + STATE(4183), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(4956), 1, + sym_do_block, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6371), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1376), 2, + STATE(1369), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -153494,39 +153543,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117067] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [116535] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1377), 2, + STATE(1370), 2, sym_comment, sym_include, - ACTIONS(1204), 10, + ACTIONS(204), 12, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -153537,7 +153585,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153551,50 +153599,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117139] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [116605] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(574), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1378), 2, + STATE(1371), 2, sym_comment, sym_include, - ACTIONS(1200), 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, + ACTIONS(1234), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153608,7 +153656,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117211] = 22, + [116677] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -153617,46 +153665,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2669), 1, + ACTIONS(2689), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(2264), 1, + STATE(2316), 1, sym_do_block, - STATE(3915), 1, + STATE(3927), 1, aux_sym_on_statement_repeat1, - STATE(4244), 1, + STATE(4195), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6198), 1, + STATE(6870), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1379), 2, + STATE(1372), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -153672,38 +153720,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117297] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [116763] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1380), 2, + STATE(1373), 2, sym_comment, sym_include, - ACTIONS(1212), 12, - sym__or_operator, - sym__and_operator, + ACTIONS(2691), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -153714,7 +153763,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153728,36 +153777,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117367] = 8, - ACTIONS(3), 1, + [116835] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2419), 1, - sym_identifier, - STATE(326), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1381), 2, - sym_comment, - sym_include, - ACTIONS(1579), 32, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1374), 2, + sym_comment, + sym_include, + ACTIONS(1230), 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(2425), 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, @@ -153768,48 +153834,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_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, - [117425] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [116907] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1382), 2, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1375), 2, sym_comment, sym_include, - ACTIONS(1121), 27, - sym__or_operator, - sym__and_operator, + ACTIONS(1226), 10, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, + 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153823,40 +153891,97 @@ static 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, - [117491] = 6, - ACTIONS(67), 1, + [116979] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(1383), 2, + ACTIONS(121), 2, + sym__namedot, + sym__escaped_string, + STATE(1376), 2, sym_comment, sym_include, - ACTIONS(168), 5, + ACTIONS(123), 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, + [117031] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(166), 31, - sym__namecolon, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1377), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153866,52 +153991,111 @@ 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, - [117545] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [117103] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(945), 1, - sym__comparison_operator, - STATE(946), 1, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, sym__multiplicative_operator, - STATE(947), 1, - sym__additive_operator, - STATE(948), 1, - sym__logical_operator, - ACTIONS(1119), 2, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1384), 2, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1378), 2, sym_comment, sym_include, - ACTIONS(1121), 27, + ACTIONS(1218), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [117175] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - anon_sym_RPAREN, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1379), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153925,89 +154109,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_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, + [117247] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2679), 3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - STATE(1385), 3, + ACTIONS(2693), 1, + anon_sym_LBRACK, + ACTIONS(2695), 1, + anon_sym_LPAREN, + ACTIONS(2697), 1, + sym__namedot, + ACTIONS(2699), 1, + sym__namecolon, + ACTIONS(2701), 1, + sym__namedoublecolon, + STATE(2011), 1, + aux_sym_object_access_repeat1, + STATE(2446), 1, + sym_function_arguments, + STATE(2488), 1, + aux_sym_member_access_repeat1, + STATE(2521), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1380), 2, sym_comment, sym_include, - 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, + ACTIONS(73), 25, + anon_sym_SLASH, sym_identifier, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - aux_sym_class_type_token1, - [117671] = 9, + 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, + [117319] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2435), 1, sym_identifier, - ACTIONS(2682), 1, - aux_sym_input_expression_token2, - STATE(28), 1, + STATE(292), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(1386), 2, + STATE(1381), 2, sym_comment, sym_include, - ACTIONS(1354), 31, + ACTIONS(1595), 32, + anon_sym_COLON, anon_sym_SLASH, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -154026,48 +154206,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_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, - [117731] = 15, + 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, + [117377] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2684), 1, + ACTIONS(2703), 1, anon_sym_LBRACK, - ACTIONS(2686), 1, + ACTIONS(2705), 1, anon_sym_LPAREN, - ACTIONS(2688), 1, + ACTIONS(2707), 1, sym__namedot, - ACTIONS(2690), 1, + ACTIONS(2709), 1, sym__namecolon, - ACTIONS(2692), 1, + ACTIONS(2711), 1, sym__namedoublecolon, - STATE(1736), 1, + STATE(2093), 1, aux_sym_object_access_repeat1, - STATE(2457), 1, + STATE(2484), 1, + aux_sym_qualified_name_repeat1, + STATE(2523), 1, sym_function_arguments, - STATE(2471), 1, + STATE(2525), 1, aux_sym_member_access_repeat1, - STATE(2517), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(65), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1387), 2, + STATE(1382), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(73), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -154093,39 +154273,146 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [117803] = 15, - ACTIONS(67), 1, + [117449] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2721), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + STATE(1383), 3, + sym_comment, + sym_include, + aux_sym_method_definition_repeat1, + STATE(1699), 3, + sym_scope_tuning, + sym_access_tuning, + sym_method_tuning, + ACTIONS(2715), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(2718), 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(2713), 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, + [117509] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1384), 2, + sym_comment, + sym_include, + ACTIONS(2632), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [117581] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(945), 1, + STATE(934), 1, sym__comparison_operator, - STATE(946), 1, + STATE(935), 1, sym__multiplicative_operator, - STATE(947), 1, + STATE(936), 1, sym__additive_operator, - STATE(948), 1, + STATE(937), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1388), 2, + STATE(1385), 2, sym_comment, sym_include, - ACTIONS(1117), 10, + ACTIONS(204), 12, + sym__or_operator, + sym__and_operator, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -154136,7 +154423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154150,50 +154437,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117875] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [117651] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(934), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1389), 2, + STATE(1386), 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, + ACTIONS(1234), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154207,50 +154494,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117947] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [117723] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + STATE(1387), 2, + sym_comment, + sym_include, + ACTIONS(123), 5, 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, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(121), 31, + sym__namedot, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154260,59 +154528,69 @@ 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, - [118019] = 22, + 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, + [117777] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(569), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2694), 1, + ACTIONS(2724), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(2057), 1, + STATE(1733), 1, sym_do_block, - STATE(3873), 1, + STATE(3898), 1, aux_sym_on_statement_repeat1, - STATE(4121), 1, + STATE(4245), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6198), 1, + STATE(6394), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1391), 2, + STATE(1388), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -154328,23 +154606,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118105] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [117863] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1392), 2, + STATE(1389), 2, sym_comment, sym_include, - ACTIONS(148), 5, + ACTIONS(154), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(146), 31, + ACTIONS(152), 31, sym__namecolon, sym__or_operator, sym__and_operator, @@ -154376,109 +154654,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118159] = 15, - ACTIONS(67), 1, + [117917] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2726), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 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(1393), 2, + STATE(1390), 2, sym_comment, sym_include, - ACTIONS(1117), 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [118231] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1377), 31, 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(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1394), 2, - sym_comment, - sym_include, - ACTIONS(230), 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(2409), 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, @@ -154489,55 +154695,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118301] = 22, + 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, + [117977] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(569), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2633), 1, + ACTIONS(2649), 1, anon_sym_COMMA, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - ACTIONS(2696), 1, + ACTIONS(2728), 1, aux_sym_widget_field_token1, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - STATE(2130), 1, + STATE(1765), 1, sym_do_block, - STATE(3884), 1, + STATE(3852), 1, aux_sym_on_statement_repeat1, - STATE(4175), 1, + STATE(4214), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6198), 1, + STATE(6394), 1, sym_label, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1395), 2, + STATE(1391), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -154553,50 +154769,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118387] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118063] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(934), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1396), 2, + STATE(1392), 2, sym_comment, sym_include, - ACTIONS(1200), 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, + ACTIONS(1230), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154610,50 +154826,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118459] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118135] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(934), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1397), 2, + STATE(1393), 2, sym_comment, sym_include, - ACTIONS(1113), 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, + ACTIONS(1226), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154667,39 +154883,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118531] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118207] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1398), 2, + STATE(1394), 2, sym_comment, sym_include, - ACTIONS(1208), 10, + ACTIONS(1214), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -154710,74 +154926,10 @@ 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(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, - [118603] = 22, - 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(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(1399), 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, + ACTIONS(2425), 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, @@ -154788,25 +154940,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118689] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118279] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2700), 1, - sym__namedot, - STATE(1400), 2, + STATE(1395), 2, sym_comment, sym_include, - ACTIONS(152), 5, + ACTIONS(158), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(150), 30, + ACTIONS(156), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154837,98 +154988,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118745] = 6, - ACTIONS(67), 1, + [118333] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1401), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2730), 1, + aux_sym_widget_field_token1, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + STATE(2280), 1, + sym_do_block, + STATE(3887), 1, + aux_sym_on_statement_repeat1, + STATE(4133), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1396), 2, sym_comment, sym_include, - ACTIONS(110), 5, + ACTIONS(1105), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(108), 31, - sym__namedot, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 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, - [118799] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118419] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(934), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1402), 2, + STATE(1397), 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, + ACTIONS(1133), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154942,49 +155109,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118871] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118491] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(934), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1403), 2, + STATE(1398), 2, sym_comment, sym_include, - ACTIONS(230), 12, + ACTIONS(1202), 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_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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154998,60 +155165,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118941] = 22, - ACTIONS(3), 1, + [118561] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(934), 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, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1404), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1090), 15, - anon_sym_LT, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1399), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(2425), 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, @@ -155062,28 +155222,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119027] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118633] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1405), 2, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + STATE(1400), 2, sym_comment, sym_include, - ACTIONS(164), 5, + ACTIONS(1204), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(162), 31, - sym__namedoublecolon, + ACTIONS(1206), 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, @@ -155096,55 +155261,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_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, - [119081] = 5, - ACTIONS(3), 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, + [118695] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(108), 2, - sym__namedot, - sym__escaped_string, - STATE(1406), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1401), 2, sym_comment, sym_include, - 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, + ACTIONS(1218), 10, 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, @@ -155152,55 +155316,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_can_find_expression_token1, aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [119133] = 15, - ACTIONS(3), 1, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [118767] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LBRACK, - 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(65), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1407), 2, - sym_comment, - sym_include, - ACTIONS(71), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1402), 2, + sym_comment, + sym_include, + ACTIONS(1133), 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(2425), 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, @@ -155211,35 +155388,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [119205] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118839] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - anon_sym_NO_DASHERROR, - STATE(1408), 2, - sym_comment, - sym_include, - ACTIONS(393), 3, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(391), 32, - sym__namecolon, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1403), 2, + sym_comment, + sym_include, + ACTIONS(1210), 27, sym__or_operator, sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155255,47 +155435,45 @@ 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_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, - [119261] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_of_token1, + [118905] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(618), 1, + STATE(574), 1, sym__logical_operator, - STATE(619), 1, + STATE(578), 1, sym__additive_operator, - STATE(620), 1, + STATE(579), 1, sym__multiplicative_operator, - STATE(621), 1, + STATE(580), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1409), 2, + STATE(1404), 2, sym_comment, sym_include, - ACTIONS(2716), 10, + ACTIONS(1202), 12, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -155306,7 +155484,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155320,50 +155498,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119333] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [118975] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(1190), 1, - aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, + sym__multiplicative_operator, + STATE(580), 1, sym__comparison_operator, - STATE(848), 1, + STATE(1405), 2, + sym_comment, + sym_include, + ACTIONS(1204), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 29, + 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_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, + [119037] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(574), 1, + sym__logical_operator, + STATE(578), 1, + sym__additive_operator, + STATE(579), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(580), 1, + sym__comparison_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1406), 2, + sym_comment, + sym_include, + ACTIONS(1210), 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_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [119103] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, sym__additive_operator, - STATE(850), 1, + STATE(937), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1410), 2, + STATE(1407), 2, sym_comment, sym_include, - ACTIONS(1192), 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(2409), 13, + ACTIONS(2608), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155377,30 +155661,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119406] = 6, - ACTIONS(67), 1, + [119175] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1411), 2, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2732), 1, + aux_sym_widget_field_token1, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + STATE(1796), 1, + sym_do_block, + STATE(3877), 1, + aux_sym_on_statement_repeat1, + STATE(4164), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1408), 2, sym_comment, sym_include, - ACTIONS(236), 5, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1109), 15, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(234), 30, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [119261] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(934), 1, + sym__comparison_operator, + STATE(935), 1, + sym__multiplicative_operator, + STATE(936), 1, + sym__additive_operator, + STATE(937), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1409), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155410,37 +155778,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_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, - [119459] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [119333] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1412), 2, + STATE(1410), 2, sym_comment, sym_include, - ACTIONS(152), 5, + ACTIONS(89), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(150), 30, + ACTIONS(87), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -155471,37 +155829,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119512] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [119386] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(847), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1220), 1, + aux_sym_variable_tuning_token2, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - STATE(1413), 2, - sym_comment, - sym_include, - ACTIONS(1214), 4, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1216), 27, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1411), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155515,77 +155886,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_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, - [119573] = 6, - ACTIONS(67), 1, + [119459] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1414), 2, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2734), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(1412), 2, sym_comment, sym_include, - ACTIONS(196), 5, + ACTIONS(1377), 30, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(194), 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, - [119626] = 6, - ACTIONS(67), 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, + [119518] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1415), 2, + STATE(1413), 2, sym_comment, sym_include, - ACTIONS(228), 5, + ACTIONS(250), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(226), 30, + ACTIONS(248), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -155616,76 +155983,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119679] = 6, - ACTIONS(67), 1, + [119571] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(1416), 2, + ACTIONS(2736), 1, + anon_sym_LBRACK, + ACTIONS(2738), 1, + anon_sym_LPAREN, + ACTIONS(2740), 1, + sym__namedot, + ACTIONS(2742), 1, + sym__namecolon, + ACTIONS(2744), 1, + sym__namedoublecolon, + STATE(2392), 1, + aux_sym_object_access_repeat1, + STATE(2579), 1, + aux_sym_qualified_name_repeat1, + STATE(2617), 1, + sym_function_arguments, + STATE(2623), 1, + aux_sym_member_access_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1414), 2, sym_comment, sym_include, - ACTIONS(224), 5, + ACTIONS(73), 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_variable_tuning_token2, - ACTIONS(222), 30, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_include_argument_token1, + [119640] = 15, + 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_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2750), 1, + sym__namedot, + ACTIONS(2752), 1, + sym__namecolon, + ACTIONS(2754), 1, + sym__namedoublecolon, + STATE(2391), 1, + aux_sym_object_access_repeat1, + STATE(2597), 1, + aux_sym_member_access_repeat1, + STATE(2601), 1, + sym_function_arguments, + STATE(2603), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, + STATE(1415), 2, + sym_comment, + sym_include, + ACTIONS(73), 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_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, - [119732] = 9, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [119711] = 15, 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(2718), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_LPAREN, + ACTIONS(2760), 1, + sym__namedot, + ACTIONS(2762), 1, + sym__namecolon, + ACTIONS(2764), 1, + sym__namedoublecolon, + STATE(2383), 1, + aux_sym_object_access_repeat1, + STATE(2561), 1, + aux_sym_member_access_repeat1, + STATE(2563), 1, + sym_function_arguments, + STATE(2618), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1417), 2, + STATE(1416), 2, sym_comment, sym_include, - ACTIONS(1354), 30, + ACTIONS(73), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - anon_sym_RPAREN, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -155704,32 +156149,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, - [119791] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [119782] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1418), 2, + STATE(1417), 2, sym_comment, sym_include, - ACTIONS(220), 5, + ACTIONS(73), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(218), 30, + ACTIONS(67), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -155760,39 +156197,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119844] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [119835] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(1418), 2, sym_comment, sym_include, - ACTIONS(1119), 3, + ACTIONS(214), 5, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(1121), 25, + ACTIONS(212), 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, @@ -155802,34 +156230,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, 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, - [119909] = 6, - ACTIONS(67), 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, + [119888] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1420), 2, + STATE(1419), 2, sym_comment, sym_include, - ACTIONS(192), 5, + ACTIONS(198), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(190), 30, + ACTIONS(196), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -155860,23 +156291,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119962] = 6, - ACTIONS(67), 1, + [119941] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, + sym__namedot, + ACTIONS(2667), 1, + sym__namecolon, + ACTIONS(2669), 1, + sym__namedoublecolon, + STATE(2223), 1, + aux_sym_object_access_repeat1, + STATE(2451), 1, + aux_sym_qualified_name_repeat1, + STATE(2515), 1, + sym_function_arguments, + STATE(2520), 1, + aux_sym_member_access_repeat1, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(1420), 2, + sym_comment, + sym_include, + ACTIONS(89), 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, + [120010] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1421), 2, sym_comment, sym_include, - ACTIONS(188), 5, + ACTIONS(218), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(186), 30, + ACTIONS(216), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -155907,23 +156393,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120015] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120063] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1422), 2, sym_comment, sym_include, - ACTIONS(136), 5, + ACTIONS(206), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(134), 30, + ACTIONS(204), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -155954,23 +156440,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120068] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120116] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1423), 2, sym_comment, sym_include, - ACTIONS(180), 5, + ACTIONS(138), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(178), 30, + ACTIONS(136), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156001,23 +156487,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120121] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120169] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1424), 2, sym_comment, sym_include, - ACTIONS(204), 5, + ACTIONS(190), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(202), 30, + ACTIONS(188), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156048,72 +156534,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120174] = 8, - ACTIONS(3), 1, + [120222] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1425), 2, sym_comment, sym_include, - ACTIONS(1579), 31, + ACTIONS(182), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(180), 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_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, + 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, + [120275] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1426), 2, sym_comment, sym_include, - ACTIONS(216), 5, + ACTIONS(178), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(214), 30, + ACTIONS(176), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156144,23 +156628,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120284] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120328] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1427), 2, sym_comment, sym_include, - ACTIONS(176), 5, + ACTIONS(174), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(174), 30, + ACTIONS(172), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156191,23 +156675,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120337] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120381] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1428), 2, sym_comment, sym_include, - ACTIONS(125), 5, + ACTIONS(104), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(123), 30, + ACTIONS(102), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156238,23 +156722,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120390] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120434] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1429), 2, sym_comment, sym_include, - ACTIONS(244), 5, + ACTIONS(222), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(242), 30, + ACTIONS(220), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156285,23 +156769,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120443] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120487] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, STATE(1430), 2, sym_comment, sym_include, - ACTIONS(248), 5, + ACTIONS(246), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(246), 30, + ACTIONS(244), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -156332,41 +156816,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [120496] = 14, + [120540] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(2705), 1, anon_sym_LPAREN, - ACTIONS(2659), 1, + ACTIONS(2707), 1, sym__namedot, - ACTIONS(2661), 1, + ACTIONS(2709), 1, sym__namecolon, - ACTIONS(2663), 1, + ACTIONS(2711), 1, sym__namedoublecolon, - STATE(1927), 1, + STATE(2093), 1, aux_sym_object_access_repeat1, - STATE(2499), 1, + STATE(2484), 1, aux_sym_qualified_name_repeat1, - STATE(2510), 1, + STATE(2523), 1, sym_function_arguments, - STATE(2514), 1, + STATE(2525), 1, aux_sym_member_access_repeat1, - ACTIONS(85), 2, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, STATE(1431), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(89), 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, @@ -156385,98 +156869,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_scope_tuning_token1, - [120565] = 14, - 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, - 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(65), 2, - sym__or_operator, - sym__and_operator, - STATE(1432), 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, - [120634] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [120609] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1202), 1, + ACTIONS(1232), 1, aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1433), 2, + STATE(1432), 2, sym_comment, sym_include, - ACTIONS(1204), 8, + ACTIONS(1234), 8, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -156485,7 +156914,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156499,49 +156928,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [120707] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [120682] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + STATE(1433), 2, + sym_comment, + sym_include, + ACTIONS(202), 5, anon_sym_SLASH, - ACTIONS(1210), 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(2405), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(200), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + 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, + [120735] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, STATE(1434), 2, sym_comment, sym_include, - ACTIONS(1212), 10, + ACTIONS(210), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(208), 30, sym__or_operator, sym__and_operator, + anon_sym_STAR, 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_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156551,54 +157008,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, - [120778] = 16, - ACTIONS(67), 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, + [120788] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + STATE(1435), 2, + sym_comment, + sym_include, + ACTIONS(234), 5, anon_sym_SLASH, - ACTIONS(1194), 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, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(232), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1435), 2, - sym_comment, - sym_include, - ACTIONS(1196), 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(2409), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156608,101 +157055,102 @@ 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, - [120851] = 15, - 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, + [120841] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, STATE(1436), 2, sym_comment, sym_include, - ACTIONS(71), 24, + ACTIONS(238), 5, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(236), 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_scope_tuning_token1, - [120922] = 14, + 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, + [120894] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2686), 1, + ACTIONS(2695), 1, anon_sym_LPAREN, - ACTIONS(2688), 1, + ACTIONS(2697), 1, sym__namedot, - ACTIONS(2690), 1, + ACTIONS(2699), 1, sym__namecolon, - ACTIONS(2692), 1, + ACTIONS(2701), 1, sym__namedoublecolon, - STATE(1736), 1, + STATE(2011), 1, aux_sym_object_access_repeat1, - STATE(2457), 1, + STATE(2446), 1, sym_function_arguments, - STATE(2471), 1, + STATE(2488), 1, aux_sym_member_access_repeat1, - STATE(2517), 1, + STATE(2521), 1, aux_sym_qualified_name_repeat1, - ACTIONS(85), 2, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, STATE(1437), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(89), 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, @@ -156721,32 +157169,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_do_block_token1, - aux_sym_widget_field_token1, - [120991] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [120963] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1438), 2, - sym_comment, - sym_include, - ACTIONS(200), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + ACTIONS(1228), 1, + aux_sym_variable_tuning_token2, + STATE(836), 1, + sym__comparison_operator, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(198), 30, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1438), 2, + sym_comment, + sym_include, + ACTIONS(1230), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156756,55 +157224,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_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_SLASH, + [121036] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1115), 1, + ACTIONS(1224), 1, aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1439), 2, sym_comment, sym_include, - ACTIONS(1117), 8, + ACTIONS(1226), 8, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -156813,7 +157271,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156827,41 +157285,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121117] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121109] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(2742), 1, + ACTIONS(206), 1, aux_sym_variable_tuning_token2, - STATE(847), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1440), 2, sym_comment, sym_include, - ACTIONS(2740), 8, + ACTIONS(204), 10, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -156870,7 +157327,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156884,93 +157341,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121190] = 15, - ACTIONS(3), 1, + [121180] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, STATE(1441), 2, sym_comment, sym_include, - ACTIONS(71), 24, + ACTIONS(242), 5, anon_sym_SLASH, - sym_identifier, + 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, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_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, - [121261] = 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, + [121233] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2754), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1216), 1, + aux_sym_variable_tuning_token2, + STATE(836), 1, + sym__comparison_operator, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1442), 2, sym_comment, sym_include, - ACTIONS(1354), 30, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(1218), 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(2425), 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, @@ -156981,50 +157445,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_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, - [121320] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121306] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1123), 1, + ACTIONS(1127), 1, aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1443), 2, sym_comment, sym_include, - ACTIONS(1125), 8, + ACTIONS(1129), 8, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -157033,7 +157488,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -157047,89 +157502,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121393] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121379] = 16, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2756), 1, - anon_sym_NO_DASHERROR, - STATE(1444), 2, - sym_comment, - sym_include, - ACTIONS(393), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [121448] = 16, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1198), 1, + ACTIONS(1212), 1, aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1445), 2, + STATE(1444), 2, sym_comment, sym_include, - ACTIONS(1200), 8, + ACTIONS(1214), 8, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -157138,62 +157545,10 @@ static const uint16_t ts_small_parse_table[] = { 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [121521] = 14, - 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, - 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(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, + ACTIONS(2425), 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, @@ -157204,90 +157559,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_when_expression_token1, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [121590] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121452] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1111), 1, - aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 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, + ACTIONS(2421), 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(1113), 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(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, - [121663] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(1448), 2, + STATE(1445), 2, sym_comment, sym_include, - ACTIONS(71), 5, - anon_sym_SLASH, + ACTIONS(1208), 3, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(65), 30, + ACTIONS(1210), 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, @@ -157297,37 +157601,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_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, - [121716] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121517] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1449), 2, + STATE(836), 1, + sym__comparison_operator, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + STATE(1446), 2, sym_comment, sym_include, - ACTIONS(208), 5, + ACTIONS(1204), 4, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(206), 30, + ACTIONS(1206), 27, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -157344,55 +157652,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, 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, - [121769] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121578] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1206), 1, + ACTIONS(1200), 1, aux_sym_variable_tuning_token2, - STATE(847), 1, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1450), 2, + STATE(1447), 2, sym_comment, sym_include, - ACTIONS(1208), 8, + ACTIONS(1202), 10, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -157401,7 +157705,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -157415,23 +157719,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121842] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121649] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1451), 2, + STATE(1448), 2, sym_comment, sym_include, - ACTIONS(172), 5, + ACTIONS(226), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(170), 30, + ACTIONS(224), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -157462,23 +157766,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [121895] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121702] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1452), 2, + STATE(1449), 2, sym_comment, sym_include, - ACTIONS(184), 5, + ACTIONS(162), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(182), 30, + ACTIONS(160), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -157509,124 +157813,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [121948] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121755] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1453), 2, - sym_comment, - sym_include, - ACTIONS(240), 5, + ACTIONS(1105), 1, anon_sym_SLASH, + ACTIONS(2768), 1, + aux_sym_variable_tuning_token2, + STATE(836), 1, + sym__comparison_operator, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(238), 30, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 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, - [122001] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(1454), 2, + STATE(1450), 2, sym_comment, sym_include, - ACTIONS(87), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(85), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, + ACTIONS(2766), 8, 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_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, - [122054] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(1455), 2, - sym_comment, - sym_include, - ACTIONS(232), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(230), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -157636,37 +157866,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_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, + [121828] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1456), 2, + STATE(1451), 2, sym_comment, sym_include, - ACTIONS(212), 5, + ACTIONS(186), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(210), 30, + ACTIONS(184), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -157697,40 +157917,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [122160] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [121881] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(232), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(847), 1, + ACTIONS(1131), 1, + aux_sym_variable_tuning_token2, + STATE(836), 1, sym__comparison_operator, - STATE(848), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(849), 1, + STATE(838), 1, sym__additive_operator, - STATE(850), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1457), 2, + STATE(1452), 2, sym_comment, sym_include, - ACTIONS(230), 10, - sym__or_operator, - sym__and_operator, + ACTIONS(1133), 8, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -157739,7 +157960,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(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -157753,157 +157974,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122231] = 14, - ACTIONS(3), 1, + [121954] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(1453), 2, sym_comment, sym_include, - ACTIONS(87), 24, + ACTIONS(230), 5, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(228), 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_scope_tuning_token1, - [122299] = 15, - ACTIONS(67), 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, + [122007] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2770), 1, + anon_sym_NO_DASHERROR, + STATE(1454), 2, + sym_comment, + sym_include, + ACTIONS(649), 3, anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - 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(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(1459), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [122369] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_LPAREN, - ACTIONS(2724), 1, - sym__namedot, - ACTIONS(2726), 1, + ACTIONS(647), 31, 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(1460), 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, + 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, @@ -157914,103 +158060,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_include_argument_token1, - [122435] = 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(979), 1, - sym__logical_operator, - 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(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1461), 2, - sym_comment, - sym_include, - ACTIONS(230), 10, - sym__or_operator, - sym__and_operator, - sym__terminator, 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, - 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, - [122503] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_of_token1, + [122062] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + STATE(1455), 2, + sym_comment, + sym_include, + ACTIONS(194), 5, anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - 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(1094), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(192), 30, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, - sym_comment, - sym_include, - 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158020,33 +158102,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122573] = 9, + 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, + [122115] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2469), 1, sym_identifier, - ACTIONS(2758), 1, + ACTIONS(2772), 1, aux_sym_input_expression_token2, - STATE(28), 1, + STATE(35), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(1463), 2, + STATE(1456), 2, sym_comment, sym_include, - ACTIONS(1354), 29, + ACTIONS(1377), 30, anon_sym_SLASH, anon_sym_STAR, - sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -158065,87 +158157,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_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(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - 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(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(1464), 2, - sym_comment, - sym_include, - ACTIONS(1196), 8, - sym__terminator, 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, - 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, - [122701] = 8, + aux_sym_of_token1, + [122174] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2487), 1, sym_identifier, - STATE(32), 1, + STATE(30), 1, sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(1465), 2, + STATE(1457), 2, sym_comment, sym_include, - ACTIONS(1579), 30, + ACTIONS(1595), 31, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -158176,313 +158214,40 @@ 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, - [122757] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_input_stream_tuning_token11, + [122231] = 15, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - 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(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(1466), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [122827] = 15, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - STATE(981), 1, - sym__additive_operator, - STATE(983), 1, - sym__multiplicative_operator, - STATE(984), 1, + STATE(972), 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(1467), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [122897] = 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(979), 1, - sym__logical_operator, - STATE(981), 1, - sym__additive_operator, - STATE(983), 1, + STATE(973), 1, sym__multiplicative_operator, - STATE(984), 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(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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [122967] = 14, - 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, - 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(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, - [123035] = 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(979), 1, - sym__logical_operator, - STATE(981), 1, + STATE(974), 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(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(1470), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [123105] = 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(979), 1, + STATE(975), 1, sym__logical_operator, - STATE(981), 1, - sym__additive_operator, - STATE(983), 1, - sym__multiplicative_operator, - STATE(984), 1, - sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1471), 2, + STATE(1458), 2, sym_comment, sym_include, - ACTIONS(1208), 8, + ACTIONS(1234), 8, sym__terminator, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -158491,7 +158256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158505,193 +158270,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [123175] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [122301] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - STATE(981), 1, - sym__additive_operator, - STATE(983), 1, - sym__multiplicative_operator, - STATE(984), 1, + STATE(972), 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(1472), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [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, + STATE(973), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - STATE(979), 1, - sym__logical_operator, - STATE(981), 1, + STATE(974), 1, sym__additive_operator, - STATE(983), 1, - sym__multiplicative_operator, - STATE(984), 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(1474), 2, - sym_comment, - sym_include, - ACTIONS(1121), 25, - 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_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, - [123369] = 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(979), 1, + STATE(975), 1, sym__logical_operator, - STATE(981), 1, - sym__additive_operator, - STATE(983), 1, - sym__multiplicative_operator, - STATE(984), 1, - sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1475), 2, + STATE(1459), 2, sym_comment, sym_include, - ACTIONS(1212), 10, + ACTIONS(204), 10, sym__or_operator, sym__and_operator, sym__terminator, @@ -158702,7 +158310,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158716,27 +158324,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [123437] = 8, + [122369] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2487), 1, sym_identifier, - STATE(32), 1, + STATE(30), 1, sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(1476), 2, + STATE(1460), 2, sym_comment, sym_include, - ACTIONS(1579), 30, + ACTIONS(1595), 30, anon_sym_SLASH, anon_sym_STAR, - anon_sym_RPAREN, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -158755,32 +158363,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_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, + 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, + [122425] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1488), 1, + ACTIONS(2774), 1, + ts_builtin_sym_end, + ACTIONS(2778), 1, + aux_sym_else_statement_token1, + STATE(1462), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1678), 1, sym_else_statement, - STATE(1477), 2, + STATE(1461), 2, sym_comment, sym_include, - ACTIONS(2760), 31, + ACTIONS(2776), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -158790,7 +158401,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158810,25 +158420,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123546] = 8, + aux_sym_enum_definition_token1, + [122483] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2764), 1, + ACTIONS(2780), 1, + ts_builtin_sym_end, + ACTIONS(2784), 1, aux_sym_else_statement_token1, - STATE(1492), 1, - aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1678), 1, sym_else_statement, - STATE(1478), 2, + STATE(1462), 3, sym_comment, sym_include, - ACTIONS(2762), 30, + aux_sym_if_statement_repeat1, + ACTIONS(2782), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -158857,25 +158468,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123601] = 8, + aux_sym_enum_definition_token1, + [122539] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2769), 1, - aux_sym_else_statement_token1, - STATE(1492), 1, + ACTIONS(2787), 1, + ts_builtin_sym_end, + STATE(1471), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1678), 1, sym_else_statement, - STATE(1479), 2, + STATE(1463), 2, sym_comment, sym_include, - ACTIONS(2766), 30, + ACTIONS(2789), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -158885,6 +158496,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158904,23 +158516,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123656] = 8, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [122595] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2772), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(972), 1, + sym__comparison_operator, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1464), 2, + sym_comment, + sym_include, + ACTIONS(2608), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [122665] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2794), 1, aux_sym_else_statement_token1, - STATE(1488), 1, + STATE(1469), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1763), 1, sym_else_statement, - STATE(1480), 2, + STATE(1465), 2, sym_comment, sym_include, - ACTIONS(2766), 30, + ACTIONS(2791), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -158951,23 +158619,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123711] = 8, + aux_sym_enum_definition_token1, + [122721] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2776), 1, + ACTIONS(2799), 1, aux_sym_else_statement_token1, - STATE(1488), 1, + STATE(1469), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1763), 1, sym_else_statement, - STATE(1481), 2, + STATE(1466), 2, sym_comment, sym_include, - ACTIONS(2762), 30, + ACTIONS(2797), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -158998,25 +158667,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123766] = 9, + aux_sym_enum_definition_token1, + [122777] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, - ts_builtin_sym_end, - ACTIONS(2783), 1, + ACTIONS(2778), 1, aux_sym_else_statement_token1, - STATE(1494), 1, + ACTIONS(2801), 1, + ts_builtin_sym_end, + STATE(1461), 1, aux_sym_if_statement_repeat1, - STATE(1710), 1, + STATE(1678), 1, sym_else_statement, - STATE(1482), 2, + STATE(1467), 2, sym_comment, sym_include, - ACTIONS(2781), 29, + ACTIONS(2797), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -159046,23 +158716,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, - [123823] = 7, + aux_sym_enum_definition_token1, + [122835] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1488), 1, + ACTIONS(2803), 1, + ts_builtin_sym_end, + ACTIONS(2806), 1, + aux_sym_else_statement_token1, + STATE(1461), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1678), 1, sym_else_statement, - STATE(1483), 2, + STATE(1468), 2, sym_comment, sym_include, - ACTIONS(2760), 31, + ACTIONS(2791), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -159072,7 +158746,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159092,22 +158765,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123876] = 7, + aux_sym_enum_definition_token1, + [122893] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2787), 1, + ACTIONS(2799), 1, aux_sym_else_statement_token1, - STATE(1731), 1, + STATE(1472), 1, + aux_sym_if_statement_repeat1, + STATE(1763), 1, sym_else_statement, - STATE(1484), 3, + STATE(1469), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(2785), 30, + ACTIONS(2776), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -159138,25 +158813,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, - [123929] = 9, + aux_sym_enum_definition_token1, + [122949] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(972), 1, + sym__comparison_operator, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1470), 2, + sym_comment, + sym_include, + ACTIONS(1133), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [123019] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2779), 1, + ACTIONS(2774), 1, ts_builtin_sym_end, - ACTIONS(2790), 1, + ACTIONS(2809), 1, aux_sym_else_statement_token1, - STATE(1494), 1, + STATE(1462), 1, aux_sym_if_statement_repeat1, - STATE(1710), 1, + STATE(1678), 1, sym_else_statement, - STATE(1485), 2, + STATE(1471), 2, sym_comment, sym_include, - ACTIONS(2781), 29, + ACTIONS(2776), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -159186,24 +158917,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123986] = 8, + aux_sym_enum_definition_token1, + [123077] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2793), 1, - ts_builtin_sym_end, - STATE(1485), 1, - aux_sym_if_statement_repeat1, - STATE(1710), 1, + ACTIONS(2812), 1, + aux_sym_else_statement_token1, + STATE(1763), 1, sym_else_statement, - STATE(1486), 2, + STATE(1472), 3, sym_comment, sym_include, - ACTIONS(2760), 30, + aux_sym_if_statement_repeat1, + ACTIONS(2782), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -159213,7 +158945,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159233,25 +158964,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [124041] = 9, + aux_sym_enum_definition_token1, + [123131] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2795), 1, + ACTIONS(2801), 1, ts_builtin_sym_end, - ACTIONS(2797), 1, + ACTIONS(2815), 1, aux_sym_else_statement_token1, - STATE(1485), 1, + STATE(1471), 1, aux_sym_if_statement_repeat1, - STATE(1710), 1, + STATE(1678), 1, sym_else_statement, - STATE(1487), 2, + STATE(1473), 2, sym_comment, sym_include, - ACTIONS(2762), 29, + ACTIONS(2797), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -159281,25 +159013,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, - [124098] = 8, + aux_sym_enum_definition_token1, + [123189] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2800), 1, + ACTIONS(2803), 1, + ts_builtin_sym_end, + ACTIONS(2818), 1, aux_sym_else_statement_token1, - STATE(1484), 1, + STATE(1471), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1678), 1, sym_else_statement, - STATE(1488), 2, + STATE(1474), 2, sym_comment, sym_include, - ACTIONS(2781), 30, + ACTIONS(2791), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -159328,76 +159062,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [124153] = 8, + aux_sym_enum_definition_token1, + [123247] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(972), 1, + sym__comparison_operator, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1475), 2, + sym_comment, + sym_include, + ACTIONS(1230), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [123317] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2793), 1, - ts_builtin_sym_end, - STATE(1485), 1, - aux_sym_if_statement_repeat1, - STATE(1710), 1, - sym_else_statement, - STATE(1489), 2, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2750), 1, + sym__namedot, + ACTIONS(2752), 1, + sym__namecolon, + ACTIONS(2754), 1, + sym__namedoublecolon, + STATE(2391), 1, + aux_sym_object_access_repeat1, + STATE(2597), 1, + aux_sym_member_access_repeat1, + STATE(2601), 1, + sym_function_arguments, + STATE(2603), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(1476), 2, sym_comment, sym_include, - ACTIONS(2760), 30, + ACTIONS(89), 24, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + 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, - 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, - [124208] = 9, + anon_sym_NO_DASHERROR, + [123385] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2487), 1, sym_identifier, - ACTIONS(2803), 1, - aux_sym_input_expression_token2, - STATE(28), 1, + STATE(30), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(1490), 2, + STATE(1477), 2, sym_comment, sym_include, - ACTIONS(1354), 28, + ACTIONS(1595), 30, anon_sym_SLASH, anon_sym_STAR, - sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -159418,76 +159213,30 @@ 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, - [124265] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(2762), 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, - [124322] = 8, + aux_sym_of_token1, + [123441] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2764), 1, + ACTIONS(2822), 1, aux_sym_else_statement_token1, - STATE(1484), 1, + STATE(1492), 1, aux_sym_if_statement_repeat1, - STATE(1731), 1, + STATE(1763), 1, sym_else_statement, - STATE(1492), 2, + STATE(1478), 2, sym_comment, sym_include, - ACTIONS(2781), 30, + ACTIONS(2791), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -159518,73 +159267,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [124377] = 9, + aux_sym_enum_definition_token1, + [123497] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2805), 1, - ts_builtin_sym_end, - ACTIONS(2808), 1, - aux_sym_else_statement_token1, - STATE(1482), 1, + STATE(1492), 1, aux_sym_if_statement_repeat1, - STATE(1710), 1, - sym_else_statement, - STATE(1493), 2, - sym_comment, - sym_include, - 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_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, - [124434] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2811), 1, - ts_builtin_sym_end, - ACTIONS(2813), 1, - aux_sym_else_statement_token1, - STATE(1710), 1, + STATE(1763), 1, sym_else_statement, - STATE(1494), 3, + STATE(1479), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(2785), 29, + ACTIONS(2789), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -159594,54 +159294,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [124489] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(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_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -159661,35 +159314,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [124546] = 8, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [123551] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(972), 1, + sym__comparison_operator, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1496), 2, - sym_comment, - sym_include, - ACTIONS(1579), 29, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1480), 2, + sym_comment, + sym_include, + ACTIONS(1226), 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(2425), 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, @@ -159700,54 +159370,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_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, + [123621] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(386), 1, - sym__logical_operator, - STATE(801), 1, - sym__additive_operator, - STATE(803), 1, - sym__multiplicative_operator, - STATE(808), 1, + STATE(972), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1497), 2, + STATE(1481), 2, sym_comment, sym_include, - 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, + ACTIONS(1222), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159761,46 +159425,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124669] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [123691] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(386), 1, - sym__logical_operator, - STATE(801), 1, - sym__additive_operator, - STATE(803), 1, - sym__multiplicative_operator, - STATE(808), 1, + STATE(972), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1498), 2, + STATE(1482), 2, sym_comment, sym_include, - 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, + ACTIONS(1218), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159814,36 +159480,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124737] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [123761] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(953), 1, - sym__logical_operator, - STATE(954), 1, - sym__additive_operator, - STATE(955), 1, - sym__multiplicative_operator, - STATE(958), 1, - sym__comparison_operator, - STATE(1499), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(972), 1, + sym__comparison_operator, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 25, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - anon_sym_COLON, + ACTIONS(2421), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1483), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159857,51 +159535,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, - [124795] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [123831] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(386), 1, - sym__logical_operator, - STATE(801), 1, - sym__additive_operator, - STATE(803), 1, - sym__multiplicative_operator, - STATE(808), 1, + STATE(972), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1500), 2, + STATE(1484), 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, + ACTIONS(1214), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159915,36 +159590,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124863] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [123901] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(972), 1, sym__comparison_operator, - ACTIONS(1119), 2, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1501), 2, + STATE(1485), 2, sym_comment, sym_include, - ACTIONS(1121), 23, + ACTIONS(1210), 25, sym__or_operator, sym__and_operator, - anon_sym_COLON, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -159960,94 +159635,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_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, + 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, + [123965] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1502), 2, + STATE(972), 1, + sym__comparison_operator, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + STATE(1486), 2, sym_comment, sym_include, - 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, - 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, - [124973] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1204), 3, anon_sym_SLASH, - 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(1094), 2, + ACTIONS(1206), 27, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -160061,45 +159685,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125041] = 14, - ACTIONS(67), 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, + [124025] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(972), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(973), 1, + sym__multiplicative_operator, + STATE(974), 1, + sym__additive_operator, + STATE(975), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1504), 2, + STATE(1487), 2, sym_comment, sym_include, - ACTIONS(1212), 8, + ACTIONS(1202), 10, 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, + 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -160113,49 +159746,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125107] = 15, - ACTIONS(67), 1, + [124093] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(1094), 2, + STATE(1492), 1, + aux_sym_if_statement_repeat1, + STATE(1763), 1, + sym_else_statement, + STATE(1488), 2, + sym_comment, + sym_include, + ACTIONS(2789), 32, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [124147] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2758), 1, + anon_sym_LPAREN, + ACTIONS(2760), 1, + sym__namedot, + ACTIONS(2762), 1, + sym__namecolon, + ACTIONS(2764), 1, + sym__namedoublecolon, + STATE(2383), 1, + aux_sym_object_access_repeat1, + STATE(2561), 1, + aux_sym_member_access_repeat1, + STATE(2563), 1, + sym_function_arguments, + STATE(2618), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(1489), 2, + sym_comment, + sym_include, + ACTIONS(89), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(1505), 2, - sym_comment, - sym_include, - 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -160166,49 +159846,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125175] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [124215] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(1094), 2, + ACTIONS(2826), 1, + aux_sym_else_statement_token1, + STATE(1492), 1, + aux_sym_if_statement_repeat1, + STATE(1763), 1, + sym_else_statement, + STATE(1490), 2, + sym_comment, + sym_include, + ACTIONS(2797), 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_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, + aux_sym_enum_definition_token1, + [124271] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(2829), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(1491), 2, + sym_comment, + sym_include, + ACTIONS(1377), 29, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1506), 2, - sym_comment, - sym_include, - 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -160219,44 +159936,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125243] = 15, + aux_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, + [124329] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2824), 1, - aux_sym_when_expression_token1, - STATE(974), 1, - sym__comparison_operator, - 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(2831), 1, + aux_sym_else_statement_token1, + STATE(1472), 1, + aux_sym_if_statement_repeat1, + STATE(1763), 1, + sym_else_statement, + STATE(1492), 2, + sym_comment, + sym_include, + ACTIONS(2776), 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_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, + aux_sym_enum_definition_token1, + [124385] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2738), 1, + anon_sym_LPAREN, + ACTIONS(2740), 1, + sym__namedot, + ACTIONS(2742), 1, + sym__namecolon, + ACTIONS(2744), 1, + sym__namedoublecolon, + STATE(2392), 1, + aux_sym_object_access_repeat1, + STATE(2579), 1, + aux_sym_qualified_name_repeat1, + STATE(2617), 1, + sym_function_arguments, + STATE(2623), 1, + aux_sym_member_access_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - STATE(1507), 2, + STATE(1493), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(89), 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, - ACTIONS(2822), 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, @@ -160272,970 +160044,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125311] = 7, + aux_sym_include_argument_token1, + [124451] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2787), 1, + ts_builtin_sym_end, + STATE(1471), 1, + aux_sym_if_statement_repeat1, + STATE(1678), 1, + sym_else_statement, + STATE(1494), 2, sym_comment, sym_include, - aux_sym_index_definition_repeat1, - ACTIONS(2826), 28, - anon_sym_LBRACE, + ACTIONS(2789), 31, 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, - [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(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(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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [125431] = 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(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(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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [125499] = 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, - ACTIONS(2835), 1, - anon_sym_BY, - 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(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(1511), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [125569] = 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(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(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(1512), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [125637] = 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(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(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(1513), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [125705] = 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(386), 1, - sym__logical_operator, - 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(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1514), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [125767] = 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(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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1515), 2, - sym_comment, - sym_include, - ACTIONS(230), 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(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, - [125833] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym__logical_operator, - 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(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, - aux_sym__block_terminator_token1, - 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_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(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(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(1517), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [125959] = 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(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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [126027] = 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(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(1519), 2, - sym_comment, - sym_include, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [126095] = 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(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(1520), 2, - sym_comment, - sym_include, - ACTIONS(1125), 6, - anon_sym_COLON, - aux_sym_while_phrase_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_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, - [126163] = 10, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_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, + aux_sym_enum_definition_token1, + [124507] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2469), 1, sym_identifier, - ACTIONS(2839), 1, + ACTIONS(2834), 1, aux_sym_input_expression_token2, - STATE(28), 1, + STATE(35), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(1521), 2, + STATE(1495), 2, sym_comment, sym_include, - 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, - anon_sym_COMMA, - 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, - [126221] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1377), 28, 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(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1522), 2, - sym_comment, - sym_include, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [126287] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2841), 1, - aux_sym_when_expression_token1, - STATE(891), 1, - sym__comparison_operator, - STATE(892), 1, - sym__multiplicative_operator, - STATE(893), 1, - sym__additive_operator, - STATE(894), 1, - sym__logical_operator, - STATE(4650), 1, - sym_when_expression, - ACTIONS(1088), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1523), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2822), 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, - [126355] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1524), 2, - sym_comment, - sym_include, - ACTIONS(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(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1525), 2, - sym_comment, - sym_include, - ACTIONS(1212), 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(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, - [126469] = 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(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(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(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_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -161246,24 +160134,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126537] = 8, + 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, + [124564] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2487), 1, sym_identifier, - STATE(32), 1, + STATE(30), 1, sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(1527), 2, + STATE(1496), 2, sym_comment, sym_include, - ACTIONS(1579), 28, + ACTIONS(1595), 29, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -161285,193 +160180,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_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_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1528), 2, - sym_comment, - sym_include, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [126661] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1529), 2, - sym_comment, - sym_include, - ACTIONS(2845), 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, - [126709] = 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + [124619] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1530), 2, + STATE(1497), 2, sym_comment, sym_include, - ACTIONS(2847), 32, + ACTIONS(2836), 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__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, - [126757] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + aux_sym_enum_definition_token1, + [124667] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(953), 1, + ACTIONS(2840), 1, + anon_sym_BY, + STATE(761), 1, sym__logical_operator, - STATE(954), 1, + STATE(763), 1, sym__additive_operator, - STATE(955), 1, + STATE(764), 1, sym__multiplicative_operator, - STATE(958), 1, + STATE(766), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1531), 2, + STATE(1498), 2, sym_comment, sym_include, - ACTIONS(1204), 6, + ACTIONS(2838), 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, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -161485,19 +160285,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126825] = 5, + [124737] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1532), 2, + ACTIONS(2842), 1, + ts_builtin_sym_end, + STATE(1499), 2, sym_comment, sym_include, - ACTIONS(2849), 31, + ACTIONS(2844), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161527,19 +160328,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [126872] = 5, + aux_sym_enum_definition_token1, + [124787] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1533), 2, + ACTIONS(2846), 1, + ts_builtin_sym_end, + STATE(1500), 2, sym_comment, sym_include, - ACTIONS(2851), 31, + ACTIONS(2848), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161569,20 +160372,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [126919] = 6, + aux_sym_enum_definition_token1, + [124837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2853), 1, - ts_builtin_sym_end, - STATE(1534), 2, + STATE(1501), 2, sym_comment, sym_include, - ACTIONS(2855), 30, + ACTIONS(2850), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161612,19 +160415,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [126968] = 5, + aux_sym_enum_definition_token1, + [124885] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1535), 2, + ACTIONS(2852), 1, + ts_builtin_sym_end, + STATE(1502), 2, sym_comment, sym_include, - ACTIONS(2857), 31, + ACTIONS(2854), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161654,19 +160459,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127015] = 5, + aux_sym_enum_definition_token1, + [124935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1536), 2, + ACTIONS(2856), 1, + ts_builtin_sym_end, + STATE(1503), 2, sym_comment, sym_include, - ACTIONS(2859), 31, + ACTIONS(2858), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161696,67 +160503,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127062] = 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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1537), 2, - sym_comment, - sym_include, - 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, + aux_sym_enum_definition_token1, + [124985] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1538), 2, + STATE(1504), 2, sym_comment, sym_include, - ACTIONS(2861), 31, + ACTIONS(2860), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -161788,19 +160546,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127172] = 5, + aux_sym_enum_definition_token1, + [125033] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1539), 2, + ACTIONS(2862), 1, + ts_builtin_sym_end, + STATE(1505), 2, sym_comment, sym_include, - ACTIONS(2863), 31, + ACTIONS(2864), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161830,19 +160590,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127219] = 5, + aux_sym_enum_definition_token1, + [125083] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1540), 2, + ACTIONS(2866), 1, + ts_builtin_sym_end, + STATE(1506), 2, sym_comment, sym_include, - ACTIONS(2865), 31, + ACTIONS(2868), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -161872,17 +160634,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127266] = 5, + aux_sym_enum_definition_token1, + [125133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1541), 2, + STATE(1507), 2, sym_comment, sym_include, - ACTIONS(2867), 31, + ACTIONS(2870), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -161914,17 +160677,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127313] = 5, + aux_sym_enum_definition_token1, + [125181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1542), 2, + STATE(1508), 2, sym_comment, sym_include, - ACTIONS(2869), 31, + ACTIONS(2872), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -161956,17 +160720,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127360] = 5, + aux_sym_enum_definition_token1, + [125229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1543), 2, + STATE(1509), 2, sym_comment, sym_include, - ACTIONS(2871), 31, + ACTIONS(2874), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -161998,17 +160763,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127407] = 5, + aux_sym_enum_definition_token1, + [125277] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1544), 2, + STATE(1510), 2, sym_comment, sym_include, - ACTIONS(2873), 31, + ACTIONS(2876), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162040,17 +160806,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127454] = 5, + aux_sym_enum_definition_token1, + [125325] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1545), 2, + STATE(1511), 2, sym_comment, sym_include, - ACTIONS(2875), 31, + ACTIONS(2878), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162082,17 +160849,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127501] = 5, + aux_sym_enum_definition_token1, + [125373] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1546), 2, + STATE(1512), 2, sym_comment, sym_include, - ACTIONS(2877), 31, + ACTIONS(2880), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162124,17 +160892,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127548] = 5, + aux_sym_enum_definition_token1, + [125421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1547), 2, + STATE(1513), 2, sym_comment, sym_include, - ACTIONS(2879), 31, + ACTIONS(2882), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162166,17 +160935,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127595] = 5, + aux_sym_enum_definition_token1, + [125469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1548), 2, + STATE(1514), 2, sym_comment, sym_include, - ACTIONS(2881), 31, + ACTIONS(2884), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162208,17 +160978,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127642] = 5, + aux_sym_enum_definition_token1, + [125517] = 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(1515), 2, sym_comment, sym_include, - ACTIONS(2883), 31, + ACTIONS(2886), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162250,17 +161021,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127689] = 5, + aux_sym_enum_definition_token1, + [125565] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1550), 2, + STATE(1516), 2, sym_comment, sym_include, - ACTIONS(2885), 31, + ACTIONS(2888), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162292,17 +161064,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127736] = 5, + aux_sym_enum_definition_token1, + [125613] = 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(1517), 2, sym_comment, sym_include, - ACTIONS(2887), 31, + ACTIONS(2890), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162334,17 +161107,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127783] = 5, + aux_sym_enum_definition_token1, + [125661] = 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(1518), 2, sym_comment, sym_include, - ACTIONS(2889), 31, + ACTIONS(2892), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162376,17 +161150,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127830] = 5, + aux_sym_enum_definition_token1, + [125709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1553), 2, + STATE(1519), 2, sym_comment, sym_include, - ACTIONS(2891), 31, + ACTIONS(2894), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162418,17 +161193,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127877] = 5, + aux_sym_enum_definition_token1, + [125757] = 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(1520), 2, sym_comment, sym_include, - ACTIONS(2893), 31, + ACTIONS(2896), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162460,17 +161236,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127924] = 5, + aux_sym_enum_definition_token1, + [125805] = 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(1521), 2, sym_comment, sym_include, - ACTIONS(2895), 31, + ACTIONS(2898), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162502,17 +161279,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127971] = 5, + aux_sym_enum_definition_token1, + [125853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1556), 2, + STATE(1522), 2, sym_comment, sym_include, - ACTIONS(2897), 31, + ACTIONS(2900), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162544,17 +161322,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128018] = 5, + aux_sym_enum_definition_token1, + [125901] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1557), 2, + STATE(1523), 2, sym_comment, sym_include, - ACTIONS(2899), 31, + ACTIONS(2902), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162586,60 +161365,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128065] = 6, + aux_sym_enum_definition_token1, + [125949] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2901), 1, - ts_builtin_sym_end, - STATE(1558), 2, - sym_comment, - sym_include, - ACTIONS(2903), 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, - [128114] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1559), 2, + STATE(1524), 2, sym_comment, sym_include, - ACTIONS(2905), 31, + ACTIONS(2904), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162671,17 +161408,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128161] = 5, + aux_sym_enum_definition_token1, + [125997] = 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(1525), 2, sym_comment, sym_include, - ACTIONS(2907), 31, + ACTIONS(2906), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162713,63 +161451,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128208] = 6, + aux_sym_enum_definition_token1, + [126045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, - ts_builtin_sym_end, - STATE(1561), 2, - sym_comment, - sym_include, - ACTIONS(2911), 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, - [128257] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2913), 1, - ts_builtin_sym_end, - STATE(1562), 2, + STATE(1526), 2, sym_comment, sym_include, - ACTIONS(2915), 30, + ACTIONS(2908), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -162799,20 +161494,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128306] = 6, + aux_sym_enum_definition_token1, + [126093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2917), 1, - ts_builtin_sym_end, - STATE(1563), 2, + STATE(1527), 2, sym_comment, sym_include, - ACTIONS(2919), 30, + ACTIONS(2910), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -162842,17 +161537,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128355] = 5, + aux_sym_enum_definition_token1, + [126141] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1564), 2, + STATE(1528), 2, sym_comment, sym_include, - ACTIONS(2921), 31, + ACTIONS(2912), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -162884,20 +161580,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128402] = 6, + aux_sym_enum_definition_token1, + [126189] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2923), 1, - ts_builtin_sym_end, - STATE(1565), 2, + STATE(1529), 2, sym_comment, sym_include, - ACTIONS(2925), 30, + ACTIONS(2914), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -162927,19 +161623,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128451] = 6, + aux_sym_enum_definition_token1, + [126237] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2927), 1, + ACTIONS(2916), 1, ts_builtin_sym_end, - STATE(1566), 2, + STATE(1530), 2, sym_comment, sym_include, - ACTIONS(2851), 30, + ACTIONS(2918), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -162970,17 +161667,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128500] = 5, + aux_sym_enum_definition_token1, + [126287] = 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(1531), 2, sym_comment, sym_include, - ACTIONS(2929), 31, + ACTIONS(2920), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163012,17 +161710,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128547] = 5, + aux_sym_enum_definition_token1, + [126335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1568), 2, + STATE(1532), 2, sym_comment, sym_include, - ACTIONS(2931), 31, + ACTIONS(2922), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163054,19 +161753,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128594] = 6, + aux_sym_enum_definition_token1, + [126383] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2933), 1, + ACTIONS(2924), 1, ts_builtin_sym_end, - STATE(1569), 2, + STATE(1533), 2, sym_comment, sym_include, - ACTIONS(2935), 30, + ACTIONS(2926), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -163097,19 +161797,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128643] = 5, + aux_sym_enum_definition_token1, + [126433] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1570), 2, + ACTIONS(2928), 1, + ts_builtin_sym_end, + STATE(1534), 2, sym_comment, sym_include, - ACTIONS(2937), 31, + ACTIONS(2930), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163139,19 +161841,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128690] = 5, + aux_sym_enum_definition_token1, + [126483] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1571), 2, + ACTIONS(2932), 1, + ts_builtin_sym_end, + STATE(1535), 2, sym_comment, sym_include, - ACTIONS(2939), 31, + ACTIONS(2934), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163181,17 +161885,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128737] = 5, + aux_sym_enum_definition_token1, + [126533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1572), 2, + STATE(1536), 2, sym_comment, sym_include, - ACTIONS(2941), 31, + ACTIONS(2936), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163223,19 +161928,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128784] = 5, + aux_sym_enum_definition_token1, + [126581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1573), 2, + ACTIONS(2938), 1, + ts_builtin_sym_end, + STATE(1537), 2, sym_comment, sym_include, - ACTIONS(2943), 31, + ACTIONS(2940), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163265,19 +161972,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128831] = 5, + aux_sym_enum_definition_token1, + [126631] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1574), 2, + ACTIONS(2942), 1, + ts_builtin_sym_end, + STATE(1538), 2, sym_comment, sym_include, - ACTIONS(2945), 31, + ACTIONS(2944), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163307,17 +162016,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128878] = 5, + aux_sym_enum_definition_token1, + [126681] = 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(1539), 2, sym_comment, sym_include, - ACTIONS(2947), 31, + ACTIONS(2946), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163349,17 +162059,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128925] = 5, + aux_sym_enum_definition_token1, + [126729] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1576), 2, + STATE(1540), 2, sym_comment, sym_include, - ACTIONS(2949), 31, + ACTIONS(2948), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163391,60 +162102,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128972] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2951), 1, - ts_builtin_sym_end, - STATE(1577), 2, - sym_comment, - sym_include, - ACTIONS(2953), 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, - [129021] = 5, + aux_sym_enum_definition_token1, + [126777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1578), 2, + STATE(1541), 2, sym_comment, sym_include, - ACTIONS(2955), 31, + ACTIONS(2950), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163476,20 +162145,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129068] = 6, + aux_sym_enum_definition_token1, + [126825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2957), 1, - ts_builtin_sym_end, - STATE(1579), 2, + STATE(1542), 2, sym_comment, sym_include, - ACTIONS(2959), 30, + ACTIONS(2952), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163519,17 +162188,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129117] = 5, + aux_sym_enum_definition_token1, + [126873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1580), 2, + STATE(1543), 2, sym_comment, sym_include, - ACTIONS(2961), 31, + ACTIONS(2954), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163561,20 +162231,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129164] = 6, + aux_sym_enum_definition_token1, + [126921] = 5, 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(1581), 2, + STATE(1544), 2, sym_comment, sym_include, - ACTIONS(2965), 30, + ACTIONS(2956), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163604,17 +162274,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129213] = 5, + aux_sym_enum_definition_token1, + [126969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1582), 2, + STATE(1545), 2, sym_comment, sym_include, - ACTIONS(2967), 31, + ACTIONS(2958), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163646,17 +162317,18 @@ 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, + aux_sym_enum_definition_token1, + [127017] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1583), 2, + STATE(1546), 2, sym_comment, sym_include, - ACTIONS(2969), 31, + ACTIONS(2960), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163688,20 +162360,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129307] = 6, + aux_sym_enum_definition_token1, + [127065] = 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(1584), 2, + STATE(1547), 2, sym_comment, sym_include, - ACTIONS(2973), 30, + ACTIONS(2962), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163731,20 +162403,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129356] = 6, + aux_sym_enum_definition_token1, + [127113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2975), 1, - ts_builtin_sym_end, - STATE(1585), 2, + STATE(1548), 2, sym_comment, sym_include, - ACTIONS(2977), 30, + ACTIONS(2964), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -163774,17 +162446,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129405] = 5, + aux_sym_enum_definition_token1, + [127161] = 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(1549), 2, sym_comment, sym_include, - ACTIONS(2979), 31, + ACTIONS(2966), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163816,17 +162489,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129452] = 5, + aux_sym_enum_definition_token1, + [127209] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1587), 2, + STATE(1550), 2, sym_comment, sym_include, - ACTIONS(2981), 31, + ACTIONS(2968), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163858,17 +162532,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129499] = 5, + aux_sym_enum_definition_token1, + [127257] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1588), 2, + STATE(1551), 2, sym_comment, sym_include, - ACTIONS(2983), 31, + ACTIONS(2970), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163900,17 +162575,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129546] = 5, + aux_sym_enum_definition_token1, + [127305] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1589), 2, + STATE(1552), 2, sym_comment, sym_include, - ACTIONS(2985), 31, + ACTIONS(2972), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163942,17 +162618,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129593] = 5, + aux_sym_enum_definition_token1, + [127353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1590), 2, + STATE(1553), 2, sym_comment, sym_include, - ACTIONS(2987), 31, + ACTIONS(2974), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -163984,17 +162661,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129640] = 5, + aux_sym_enum_definition_token1, + [127401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1591), 2, + STATE(1554), 2, sym_comment, sym_include, - ACTIONS(2989), 31, + ACTIONS(2976), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164026,17 +162704,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129687] = 5, + aux_sym_enum_definition_token1, + [127449] = 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(1555), 2, sym_comment, sym_include, - ACTIONS(2991), 31, + ACTIONS(2978), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164068,69 +162747,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129734] = 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(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(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, + aux_sym_enum_definition_token1, + [127497] = 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(1556), 2, sym_comment, sym_include, - ACTIONS(2995), 31, + ACTIONS(2980), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164162,17 +162790,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129848] = 5, + aux_sym_enum_definition_token1, + [127545] = 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(1557), 2, sym_comment, sym_include, - ACTIONS(2997), 31, + ACTIONS(2982), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164204,17 +162833,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129895] = 5, + aux_sym_enum_definition_token1, + [127593] = 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(1558), 2, sym_comment, sym_include, - ACTIONS(2999), 31, + ACTIONS(2984), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164246,17 +162876,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129942] = 5, + aux_sym_enum_definition_token1, + [127641] = 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(1559), 2, sym_comment, sym_include, - ACTIONS(3001), 31, + ACTIONS(2986), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164288,17 +162919,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129989] = 5, + aux_sym_enum_definition_token1, + [127689] = 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(1560), 2, sym_comment, sym_include, - ACTIONS(3003), 31, + ACTIONS(2988), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164330,17 +162962,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130036] = 5, + aux_sym_enum_definition_token1, + [127737] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1599), 2, + STATE(1561), 2, sym_comment, sym_include, - ACTIONS(3005), 31, + ACTIONS(2990), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164372,17 +163005,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130083] = 5, + aux_sym_enum_definition_token1, + [127785] = 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(1562), 2, sym_comment, sym_include, - ACTIONS(3007), 31, + ACTIONS(2992), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164414,17 +163048,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130130] = 5, + aux_sym_enum_definition_token1, + [127833] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1601), 2, + STATE(1563), 2, sym_comment, sym_include, - ACTIONS(3009), 31, + ACTIONS(2994), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164456,17 +163091,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130177] = 5, + aux_sym_enum_definition_token1, + [127881] = 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(1564), 2, sym_comment, sym_include, - ACTIONS(3011), 31, + ACTIONS(2996), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164498,17 +163134,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130224] = 5, + aux_sym_enum_definition_token1, + [127929] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1603), 2, + STATE(1565), 2, sym_comment, sym_include, - ACTIONS(3013), 31, + ACTIONS(2998), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164540,17 +163177,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130271] = 5, + aux_sym_enum_definition_token1, + [127977] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1604), 2, + STATE(1566), 2, sym_comment, sym_include, - ACTIONS(3015), 31, + ACTIONS(3000), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164582,17 +163220,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130318] = 5, + aux_sym_enum_definition_token1, + [128025] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1605), 2, + STATE(1567), 2, sym_comment, sym_include, - ACTIONS(3017), 31, + ACTIONS(3002), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164624,17 +163263,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130365] = 5, + aux_sym_enum_definition_token1, + [128073] = 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(1568), 2, sym_comment, sym_include, - ACTIONS(3019), 31, + ACTIONS(3004), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164666,17 +163306,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130412] = 5, + aux_sym_enum_definition_token1, + [128121] = 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(3006), 1, + ts_builtin_sym_end, + STATE(1569), 2, + sym_comment, + sym_include, + ACTIONS(3008), 31, + sym_identifier, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [128171] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3010), 1, + ts_builtin_sym_end, + STATE(1570), 2, + sym_comment, + sym_include, + ACTIONS(3012), 31, + sym_identifier, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [128221] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1571), 2, sym_comment, sym_include, - ACTIONS(3021), 31, + ACTIONS(3014), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164708,17 +163437,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130459] = 5, + aux_sym_enum_definition_token1, + [128269] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1608), 2, + STATE(1572), 2, sym_comment, sym_include, - ACTIONS(3023), 31, + ACTIONS(3016), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164750,17 +163480,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130506] = 5, + aux_sym_enum_definition_token1, + [128317] = 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(1573), 2, sym_comment, sym_include, - ACTIONS(3025), 31, + ACTIONS(3018), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164792,17 +163523,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130553] = 5, + aux_sym_enum_definition_token1, + [128365] = 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(1574), 2, sym_comment, sym_include, - ACTIONS(3027), 31, + ACTIONS(3020), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164834,17 +163566,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130600] = 5, + aux_sym_enum_definition_token1, + [128413] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1611), 2, + STATE(1575), 2, sym_comment, sym_include, - ACTIONS(3029), 31, + ACTIONS(3022), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164876,17 +163609,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130647] = 5, + aux_sym_enum_definition_token1, + [128461] = 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(1576), 2, sym_comment, sym_include, - ACTIONS(3031), 31, + ACTIONS(3024), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164918,17 +163652,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130694] = 5, + aux_sym_enum_definition_token1, + [128509] = 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(1577), 2, sym_comment, sym_include, - ACTIONS(3033), 31, + ACTIONS(3026), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -164960,17 +163695,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130741] = 5, + aux_sym_enum_definition_token1, + [128557] = 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(1578), 2, sym_comment, sym_include, - ACTIONS(3035), 31, + ACTIONS(3028), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165002,20 +163738,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130788] = 6, + aux_sym_enum_definition_token1, + [128605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - ts_builtin_sym_end, - STATE(1615), 2, + STATE(1579), 2, sym_comment, sym_include, - ACTIONS(3039), 30, + ACTIONS(3030), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -165045,20 +163781,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130837] = 6, + aux_sym_enum_definition_token1, + [128653] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3041), 1, - ts_builtin_sym_end, - STATE(1616), 2, + STATE(1580), 2, sym_comment, sym_include, - ACTIONS(3043), 30, + ACTIONS(3032), 32, sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [128701] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1581), 2, + sym_comment, + sym_include, + ACTIONS(3034), 32, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [128749] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1582), 2, + sym_comment, + sym_include, + ACTIONS(3036), 32, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [128797] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1583), 2, + sym_comment, + sym_include, + ACTIONS(3038), 32, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [128845] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1584), 2, + sym_comment, + sym_include, + ACTIONS(3040), 32, + sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -165088,20 +163996,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130886] = 6, + aux_sym_enum_definition_token1, + [128893] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3045), 1, - ts_builtin_sym_end, - STATE(1617), 2, + STATE(1585), 2, sym_comment, sym_include, - ACTIONS(3047), 30, + ACTIONS(3042), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -165131,20 +164039,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130935] = 6, + aux_sym_enum_definition_token1, + [128941] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, - ts_builtin_sym_end, - STATE(1618), 2, + STATE(1586), 2, sym_comment, sym_include, - ACTIONS(3051), 30, + ACTIONS(3044), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -165174,72 +164082,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [128989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, - ts_builtin_sym_end, - STATE(1620), 2, + STATE(1587), 2, sym_comment, sym_include, - ACTIONS(3057), 30, + ACTIONS(3046), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -165269,17 +164125,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131100] = 5, + aux_sym_enum_definition_token1, + [129037] = 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(1588), 2, sym_comment, sym_include, - ACTIONS(3059), 31, + ACTIONS(3048), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165311,380 +164168,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [129085] = 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(1589), 2, sym_comment, sym_include, - ACTIONS(3063), 31, + ACTIONS(3050), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165716,17 +164211,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131661] = 5, + aux_sym_enum_definition_token1, + [129133] = 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(1590), 2, sym_comment, sym_include, - ACTIONS(3065), 31, + ACTIONS(3052), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165758,78 +164254,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [129181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1632), 2, + STATE(1591), 2, sym_comment, sym_include, - ACTIONS(3095), 31, + ACTIONS(3054), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165861,69 +164297,18 @@ 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] = 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, + aux_sym_enum_definition_token1, + [129229] = 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(1592), 2, sym_comment, sym_include, - ACTIONS(3099), 31, + ACTIONS(3056), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165955,17 +164340,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131954] = 5, + aux_sym_enum_definition_token1, + [129277] = 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(1593), 2, sym_comment, sym_include, - ACTIONS(3101), 31, + ACTIONS(3058), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -165997,17 +164383,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132001] = 5, + aux_sym_enum_definition_token1, + [129325] = 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(1594), 2, sym_comment, sym_include, - ACTIONS(3103), 31, + ACTIONS(3060), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166039,19 +164426,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132048] = 5, + aux_sym_enum_definition_token1, + [129373] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1637), 2, + ACTIONS(3062), 1, + ts_builtin_sym_end, + STATE(1595), 2, sym_comment, sym_include, - ACTIONS(3105), 31, + ACTIONS(3064), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -166081,17 +164470,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132095] = 5, + aux_sym_enum_definition_token1, + [129423] = 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(1596), 2, sym_comment, sym_include, - ACTIONS(3107), 31, + ACTIONS(3066), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166123,17 +164513,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132142] = 5, + aux_sym_enum_definition_token1, + [129471] = 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(1597), 2, sym_comment, sym_include, - ACTIONS(3109), 31, + ACTIONS(3068), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166165,20 +164556,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132189] = 6, + aux_sym_enum_definition_token1, + [129519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3111), 1, - ts_builtin_sym_end, - STATE(1640), 2, + STATE(1598), 2, sym_comment, sym_include, - ACTIONS(3113), 30, + ACTIONS(3070), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -166208,20 +164599,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132238] = 6, + aux_sym_enum_definition_token1, + [129567] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3115), 1, - ts_builtin_sym_end, - STATE(1641), 2, + STATE(1599), 2, sym_comment, sym_include, - ACTIONS(3117), 30, + ACTIONS(3072), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -166251,17 +164642,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132287] = 5, + aux_sym_enum_definition_token1, + [129615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1642), 2, + STATE(1600), 2, sym_comment, sym_include, - ACTIONS(3119), 31, + ACTIONS(3074), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166293,17 +164685,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132334] = 5, + aux_sym_enum_definition_token1, + [129663] = 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(1601), 2, sym_comment, sym_include, - ACTIONS(3121), 31, + ACTIONS(3076), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166335,20 +164728,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132381] = 6, + aux_sym_enum_definition_token1, + [129711] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3123), 1, - ts_builtin_sym_end, - STATE(1644), 2, + STATE(1602), 2, sym_comment, sym_include, - ACTIONS(3125), 30, + ACTIONS(3078), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -166378,17 +164771,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132430] = 5, + aux_sym_enum_definition_token1, + [129759] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1645), 2, + STATE(1603), 2, sym_comment, sym_include, - ACTIONS(3127), 31, + ACTIONS(3080), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166420,17 +164814,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132477] = 5, + aux_sym_enum_definition_token1, + [129807] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1646), 2, + STATE(1604), 2, sym_comment, sym_include, - ACTIONS(3129), 31, + ACTIONS(3082), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166462,17 +164857,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132524] = 5, + aux_sym_enum_definition_token1, + [129855] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1647), 2, + STATE(1605), 2, sym_comment, sym_include, - ACTIONS(3131), 31, + ACTIONS(3084), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166504,17 +164900,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132571] = 5, + aux_sym_enum_definition_token1, + [129903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1648), 2, + STATE(1606), 2, sym_comment, sym_include, - ACTIONS(3133), 31, + ACTIONS(3086), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166546,20 +164943,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132618] = 6, + aux_sym_enum_definition_token1, + [129951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3135), 1, - ts_builtin_sym_end, - STATE(1649), 2, + STATE(1607), 2, sym_comment, sym_include, - ACTIONS(3137), 30, + ACTIONS(3088), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -166589,20 +164986,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132667] = 6, + aux_sym_enum_definition_token1, + [129999] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3139), 1, - ts_builtin_sym_end, - STATE(1650), 2, + STATE(1608), 2, sym_comment, sym_include, - ACTIONS(3141), 30, + ACTIONS(3090), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -166632,17 +165029,18 @@ 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] = 5, + aux_sym_enum_definition_token1, + [130047] = 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(1609), 2, sym_comment, sym_include, - ACTIONS(3143), 31, + ACTIONS(3092), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166674,17 +165072,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132763] = 5, + aux_sym_enum_definition_token1, + [130095] = 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(1610), 2, sym_comment, sym_include, - ACTIONS(3145), 31, + ACTIONS(3094), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166716,17 +165115,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132810] = 5, + aux_sym_enum_definition_token1, + [130143] = 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(1611), 2, sym_comment, sym_include, - ACTIONS(3147), 31, + ACTIONS(3096), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166758,17 +165158,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132857] = 5, + aux_sym_enum_definition_token1, + [130191] = 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(1612), 2, sym_comment, sym_include, - ACTIONS(3149), 31, + ACTIONS(3098), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166800,17 +165201,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132904] = 5, + aux_sym_enum_definition_token1, + [130239] = 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(1613), 2, sym_comment, sym_include, - ACTIONS(3151), 31, + ACTIONS(3100), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166842,17 +165244,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132951] = 5, + aux_sym_enum_definition_token1, + [130287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1656), 2, + STATE(1614), 2, sym_comment, sym_include, - ACTIONS(3153), 31, + ACTIONS(3102), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166884,17 +165287,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132998] = 5, + aux_sym_enum_definition_token1, + [130335] = 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(1615), 2, sym_comment, sym_include, - ACTIONS(3155), 31, + ACTIONS(3104), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166926,17 +165330,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133045] = 5, + aux_sym_enum_definition_token1, + [130383] = 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(1616), 2, sym_comment, sym_include, - ACTIONS(3157), 31, + ACTIONS(3106), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -166968,17 +165373,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133092] = 5, + aux_sym_enum_definition_token1, + [130431] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1659), 2, + STATE(1617), 2, sym_comment, sym_include, - ACTIONS(3159), 31, + ACTIONS(3108), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167010,17 +165416,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133139] = 5, + aux_sym_enum_definition_token1, + [130479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1660), 2, + STATE(1618), 2, sym_comment, sym_include, - ACTIONS(3161), 31, + ACTIONS(3110), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167052,17 +165459,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133186] = 5, + aux_sym_enum_definition_token1, + [130527] = 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(1619), 2, sym_comment, sym_include, - ACTIONS(3163), 31, + ACTIONS(3112), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167094,17 +165502,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133233] = 5, + aux_sym_enum_definition_token1, + [130575] = 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(1620), 2, sym_comment, sym_include, - ACTIONS(3165), 31, + ACTIONS(3114), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167136,17 +165545,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133280] = 5, + aux_sym_enum_definition_token1, + [130623] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1663), 2, + STATE(1621), 2, sym_comment, sym_include, - ACTIONS(3167), 31, + ACTIONS(3116), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167178,17 +165588,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133327] = 5, + aux_sym_enum_definition_token1, + [130671] = 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(1622), 2, sym_comment, sym_include, - ACTIONS(3169), 31, + ACTIONS(3118), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167220,19 +165631,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133374] = 5, + aux_sym_enum_definition_token1, + [130719] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1665), 2, + ACTIONS(3120), 1, + ts_builtin_sym_end, + STATE(1623), 2, sym_comment, sym_include, - ACTIONS(3171), 31, + ACTIONS(3094), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -167262,19 +165675,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133421] = 5, + aux_sym_enum_definition_token1, + [130769] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1666), 2, + ACTIONS(3122), 1, + ts_builtin_sym_end, + STATE(1624), 2, sym_comment, sym_include, - ACTIONS(3173), 31, + ACTIONS(3124), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -167304,17 +165719,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133468] = 5, + aux_sym_enum_definition_token1, + [130819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1667), 2, + STATE(1625), 2, sym_comment, sym_include, - ACTIONS(3175), 31, + ACTIONS(3126), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167346,17 +165762,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133515] = 5, + aux_sym_enum_definition_token1, + [130867] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1668), 2, + STATE(1626), 2, sym_comment, sym_include, - ACTIONS(3177), 31, + ACTIONS(3128), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167388,17 +165805,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133562] = 5, + aux_sym_enum_definition_token1, + [130915] = 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(1627), 2, sym_comment, sym_include, - ACTIONS(3179), 31, + ACTIONS(3130), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167430,17 +165848,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133609] = 5, + aux_sym_enum_definition_token1, + [130963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1670), 2, + STATE(1628), 2, sym_comment, sym_include, - ACTIONS(3181), 31, + ACTIONS(3132), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167472,17 +165891,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133656] = 5, + aux_sym_enum_definition_token1, + [131011] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1671), 2, + STATE(1629), 2, sym_comment, sym_include, - ACTIONS(3183), 31, + ACTIONS(3134), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167514,268 +165934,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133703] = 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(1672), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [133770] = 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(1673), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [133837] = 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(492), 1, - sym__comparison_operator, - 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(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1674), 2, - sym_comment, - sym_include, - ACTIONS(1121), 22, - sym__or_operator, - sym__and_operator, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [133898] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(492), 1, - sym__comparison_operator, - 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(1214), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 24, - sym__or_operator, - sym__and_operator, - 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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [133955] = 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(1676), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [134020] = 5, + aux_sym_enum_definition_token1, + [131059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1677), 2, + STATE(1630), 2, sym_comment, sym_include, - ACTIONS(3185), 31, + ACTIONS(3136), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167807,20 +165977,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134067] = 6, + aux_sym_enum_definition_token1, + [131107] = 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(1678), 2, + STATE(1631), 2, sym_comment, sym_include, - ACTIONS(3189), 30, + ACTIONS(3138), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -167850,17 +166020,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134116] = 5, + aux_sym_enum_definition_token1, + [131155] = 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(1632), 2, sym_comment, sym_include, - ACTIONS(3191), 31, + ACTIONS(3140), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167892,17 +166063,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134163] = 5, + aux_sym_enum_definition_token1, + [131203] = 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(1633), 2, sym_comment, sym_include, - ACTIONS(3193), 31, + ACTIONS(3142), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167934,17 +166106,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134210] = 5, + aux_sym_enum_definition_token1, + [131251] = 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(1634), 2, sym_comment, sym_include, - ACTIONS(3195), 31, + ACTIONS(3144), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -167976,20 +166149,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134257] = 6, + aux_sym_enum_definition_token1, + [131299] = 5, 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(1682), 2, + STATE(1635), 2, sym_comment, sym_include, - ACTIONS(3199), 30, + ACTIONS(3146), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -168019,17 +166192,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134306] = 5, + aux_sym_enum_definition_token1, + [131347] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1683), 2, + STATE(1636), 2, sym_comment, sym_include, - ACTIONS(3201), 31, + ACTIONS(3148), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168061,17 +166235,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134353] = 5, + aux_sym_enum_definition_token1, + [131395] = 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(1637), 2, sym_comment, sym_include, - ACTIONS(3203), 31, + ACTIONS(3150), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168103,17 +166278,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134400] = 5, + aux_sym_enum_definition_token1, + [131443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1685), 2, + STATE(1638), 2, sym_comment, sym_include, - ACTIONS(3205), 31, + ACTIONS(3152), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168145,17 +166321,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134447] = 5, + aux_sym_enum_definition_token1, + [131491] = 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(1639), 2, sym_comment, sym_include, - ACTIONS(3207), 31, + ACTIONS(3154), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168187,20 +166364,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, - [134494] = 6, + aux_sym_enum_definition_token1, + [131539] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3161), 1, + sym__escaped_string, + STATE(2349), 1, + sym_index_tuning, + ACTIONS(3158), 2, + aux_sym_type_tuning_token1, + aux_sym_index_tuning_token1, + STATE(1640), 3, + sym_comment, + sym_include, + aux_sym_index_definition_repeat1, + ACTIONS(3156), 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, + [131591] = 5, 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(1687), 2, + STATE(1641), 2, sym_comment, sym_include, - ACTIONS(3211), 30, + ACTIONS(3163), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -168230,17 +166452,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134543] = 5, + aux_sym_enum_definition_token1, + [131639] = 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(1642), 2, sym_comment, sym_include, - ACTIONS(3213), 31, + ACTIONS(3165), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168272,17 +166495,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134590] = 5, + aux_sym_enum_definition_token1, + [131687] = 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(1643), 2, sym_comment, sym_include, - ACTIONS(3215), 31, + ACTIONS(3167), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168314,20 +166538,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134637] = 6, + aux_sym_enum_definition_token1, + [131735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3217), 1, - ts_builtin_sym_end, - STATE(1690), 2, + STATE(1644), 2, sym_comment, sym_include, - ACTIONS(3219), 30, + ACTIONS(3169), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -168357,17 +166581,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134686] = 5, + aux_sym_enum_definition_token1, + [131783] = 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(1645), 2, sym_comment, sym_include, - ACTIONS(3221), 31, + ACTIONS(3171), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168399,236 +166624,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, - [134733] = 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, - ACTIONS(1212), 2, - sym__or_operator, - sym__and_operator, - STATE(1692), 2, - sym_comment, - sym_include, - 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, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [134796] = 10, + aux_sym_enum_definition_token1, + [131831] = 6, 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(1216), 2, - sym__or_operator, - sym__and_operator, - STATE(1693), 2, + ACTIONS(3173), 1, + ts_builtin_sym_end, + STATE(1646), 2, sym_comment, sym_include, - ACTIONS(1214), 25, - anon_sym_SLASH, + ACTIONS(3022), 31, 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_input_expression_token1, + aux_sym_class_type_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [134853] = 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(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_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, - 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, - [134916] = 11, + aux_sym__case_terminator_token1, + aux_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, + aux_sym_enum_definition_token1, + [131881] = 15, 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, - STATE(1695), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1119), 22, - 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, + ACTIONS(3177), 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(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(974), 1, + STATE(956), 1, sym__comparison_operator, - STATE(975), 1, + STATE(957), 1, sym__multiplicative_operator, - STATE(976), 1, + STATE(958), 1, sym__additive_operator, - STATE(977), 1, + STATE(959), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(4683), 1, + sym_when_expression, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1696), 2, + STATE(1647), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1194), 5, + ACTIONS(3175), 4, sym_identifier, sym__terminator, - aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -168644,69 +166722,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [135038] = 13, + [131949] = 6, 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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1697), 2, + ACTIONS(3179), 1, + ts_builtin_sym_end, + STATE(1648), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1115), 5, + ACTIONS(3068), 31, sym_identifier, - sym__terminator, - aux_sym_when_expression_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [135101] = 6, + 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, + aux_sym_enum_definition_token1, + [131999] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3225), 1, + ACTIONS(3181), 1, ts_builtin_sym_end, - STATE(1698), 2, + STATE(1649), 2, sym_comment, sym_include, - ACTIONS(2983), 30, + ACTIONS(3090), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -168737,17 +166809,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135150] = 5, + aux_sym_enum_definition_token1, + [132049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1699), 2, + STATE(1650), 2, sym_comment, sym_include, - ACTIONS(3227), 31, + ACTIONS(3183), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168779,19 +166852,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135197] = 5, + aux_sym_enum_definition_token1, + [132097] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1700), 2, + ACTIONS(3185), 1, + ts_builtin_sym_end, + STATE(1651), 2, sym_comment, sym_include, - ACTIONS(3229), 31, + ACTIONS(3098), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -168821,19 +166896,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135244] = 5, + aux_sym_enum_definition_token1, + [132147] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1701), 2, + ACTIONS(3187), 1, + ts_builtin_sym_end, + STATE(1652), 2, sym_comment, sym_include, - ACTIONS(3231), 31, + ACTIONS(3100), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -168863,17 +166940,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135291] = 5, + aux_sym_enum_definition_token1, + [132197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1702), 2, + STATE(1653), 2, sym_comment, sym_include, - ACTIONS(3233), 31, + ACTIONS(3189), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168905,17 +166983,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135338] = 5, + aux_sym_enum_definition_token1, + [132245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1703), 2, + STATE(1654), 2, sym_comment, sym_include, - ACTIONS(3235), 31, + ACTIONS(3191), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168947,17 +167026,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135385] = 5, + aux_sym_enum_definition_token1, + [132293] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1704), 2, + STATE(1655), 2, sym_comment, sym_include, - ACTIONS(3237), 31, + ACTIONS(3193), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -168989,17 +167069,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135432] = 5, + aux_sym_enum_definition_token1, + [132341] = 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(1656), 2, sym_comment, sym_include, - ACTIONS(3239), 31, + ACTIONS(3195), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169031,17 +167112,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135479] = 5, + aux_sym_enum_definition_token1, + [132389] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1706), 2, + STATE(1657), 2, sym_comment, sym_include, - ACTIONS(3241), 31, + ACTIONS(3197), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169073,17 +167155,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135526] = 5, + aux_sym_enum_definition_token1, + [132437] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1707), 2, + STATE(1658), 2, sym_comment, sym_include, - ACTIONS(3243), 31, + ACTIONS(3199), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169115,20 +167198,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135573] = 6, + aux_sym_enum_definition_token1, + [132485] = 5, 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(1708), 2, + STATE(1659), 2, sym_comment, sym_include, - ACTIONS(3205), 30, + ACTIONS(3201), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -169158,17 +167241,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135622] = 5, + aux_sym_enum_definition_token1, + [132533] = 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(1660), 2, sym_comment, sym_include, - ACTIONS(3247), 31, + ACTIONS(3203), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169200,20 +167284,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135669] = 6, + aux_sym_enum_definition_token1, + [132581] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, - ts_builtin_sym_end, - STATE(1710), 2, + STATE(1661), 2, sym_comment, sym_include, - ACTIONS(3251), 30, + ACTIONS(3205), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -169243,17 +167327,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135718] = 5, + aux_sym_enum_definition_token1, + [132629] = 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(1662), 2, sym_comment, sym_include, - ACTIONS(3253), 31, + ACTIONS(3207), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169285,20 +167370,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135765] = 6, + aux_sym_enum_definition_token1, + [132677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3255), 1, - ts_builtin_sym_end, - STATE(1712), 2, + STATE(1663), 2, sym_comment, sym_include, - ACTIONS(3257), 30, + ACTIONS(3209), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -169328,17 +167413,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135814] = 5, + aux_sym_enum_definition_token1, + [132725] = 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(1664), 2, sym_comment, sym_include, - ACTIONS(3259), 31, + ACTIONS(3211), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169370,17 +167456,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135861] = 5, + aux_sym_enum_definition_token1, + [132773] = 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(1665), 2, sym_comment, sym_include, - ACTIONS(3261), 31, + ACTIONS(3213), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169412,19 +167499,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135908] = 5, + aux_sym_enum_definition_token1, + [132821] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1715), 2, + ACTIONS(3215), 1, + ts_builtin_sym_end, + STATE(1666), 2, sym_comment, sym_include, - ACTIONS(3263), 31, + ACTIONS(3102), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -169454,19 +167543,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135955] = 5, + aux_sym_enum_definition_token1, + [132871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1716), 2, + ACTIONS(3217), 1, + ts_builtin_sym_end, + STATE(1667), 2, sym_comment, sym_include, - ACTIONS(3265), 31, + 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, @@ -169496,19 +167587,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136002] = 5, + aux_sym_enum_definition_token1, + [132921] = 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(3217), 1, + ts_builtin_sym_end, + STATE(1668), 2, sym_comment, sym_include, - ACTIONS(3267), 31, + 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, @@ -169538,17 +167631,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136049] = 5, + aux_sym_enum_definition_token1, + [132971] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1718), 2, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(1669), 2, sym_comment, sym_include, - ACTIONS(3269), 31, + ACTIONS(1595), 28, + 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_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, + [133025] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3221), 1, + ts_builtin_sym_end, + STATE(1670), 2, + sym_comment, + sym_include, + ACTIONS(3106), 31, + sym_identifier, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [133075] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3223), 1, + ts_builtin_sym_end, + STATE(1671), 2, + sym_comment, + sym_include, + ACTIONS(3108), 31, + sym_identifier, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [133125] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1672), 2, + sym_comment, + sym_include, + ACTIONS(3225), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169580,59 +167808,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, - [136096] = 5, + aux_sym_enum_definition_token1, + [133173] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1719), 2, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(3229), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(1673), 2, sym_comment, sym_include, - ACTIONS(3271), 31, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + ACTIONS(3227), 5, + aux_sym_dataset_expression_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, - [136143] = 5, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + ACTIONS(1377), 22, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_COMMA, + 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, + [133231] = 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(1674), 2, sym_comment, sym_include, - ACTIONS(3273), 31, + ACTIONS(3231), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169664,17 +167899,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136190] = 5, + aux_sym_enum_definition_token1, + [133279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1721), 2, + STATE(1675), 2, sym_comment, sym_include, - ACTIONS(3275), 31, + ACTIONS(3233), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169706,17 +167942,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136237] = 5, + aux_sym_enum_definition_token1, + [133327] = 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(1676), 2, sym_comment, sym_include, - ACTIONS(3277), 31, + ACTIONS(3235), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169748,17 +167985,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136284] = 5, + aux_sym_enum_definition_token1, + [133375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1723), 2, + STATE(1677), 2, sym_comment, sym_include, - ACTIONS(3279), 31, + ACTIONS(3237), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169790,19 +168028,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136331] = 5, + aux_sym_enum_definition_token1, + [133423] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1724), 2, + ACTIONS(3239), 1, + ts_builtin_sym_end, + STATE(1678), 2, sym_comment, sym_include, - ACTIONS(3281), 31, + 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, @@ -169832,17 +168072,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136378] = 5, + aux_sym_enum_definition_token1, + [133473] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1725), 2, + STATE(1679), 2, sym_comment, sym_include, - ACTIONS(3283), 31, + ACTIONS(3243), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169874,37 +168115,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136425] = 9, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [133521] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(3285), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(2840), 1, + anon_sym_BY, + STATE(939), 1, + sym__logical_operator, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1726), 2, - sym_comment, - sym_include, - ACTIONS(1354), 26, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1680), 2, + sym_comment, + sym_include, + ACTIONS(2838), 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(2425), 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, @@ -169915,22 +168170,17 @@ static 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, - [136480] = 5, + [133591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1727), 2, + STATE(1681), 2, sym_comment, sym_include, - ACTIONS(3287), 31, + ACTIONS(3245), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -169962,167 +168212,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136527] = 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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1728), 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, - 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, - [136590] = 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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1729), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1111), 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, - [136653] = 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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1730), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1206), 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, - [136716] = 5, + aux_sym_enum_definition_token1, + [133639] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1731), 2, + ACTIONS(3249), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3251), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3253), 1, + aux_sym_do_block_token1, + STATE(1682), 2, sym_comment, sym_include, - ACTIONS(3251), 31, + ACTIONS(3247), 29, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -170130,19 +168237,16 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -170154,399 +168258,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136763] = 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(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(1354), 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, - [136818] = 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, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1733), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1190), 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, - [136881] = 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, - 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, - 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1735), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(232), 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, - [137007] = 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(1736), 2, - sym_comment, - sym_include, - ACTIONS(91), 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, - [137060] = 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(1737), 2, - sym_comment, - sym_include, - ACTIONS(91), 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, - [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, - ACTIONS(3293), 1, - sym__namecolon, - ACTIONS(93), 2, - sym__or_operator, - sym__and_operator, - STATE(1739), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 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, - [137231] = 5, + aux_sym_enum_definition_token1, + [133693] = 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(1683), 2, sym_comment, sym_include, - ACTIONS(3296), 31, + ACTIONS(3247), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -170578,19 +168301,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137278] = 5, + aux_sym_enum_definition_token1, + [133741] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1741), 2, + ACTIONS(3255), 1, + ts_builtin_sym_end, + STATE(1684), 2, sym_comment, sym_include, - ACTIONS(3298), 31, + 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, @@ -170620,19 +168345,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137325] = 5, + aux_sym_enum_definition_token1, + [133791] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1742), 2, + ACTIONS(3259), 1, + ts_builtin_sym_end, + STATE(1685), 2, sym_comment, sym_include, - ACTIONS(3300), 31, + 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, @@ -170662,19 +168389,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137372] = 5, + aux_sym_enum_definition_token1, + [133841] = 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(3263), 1, + ts_builtin_sym_end, + STATE(1686), 2, sym_comment, sym_include, - ACTIONS(3302), 31, + 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, @@ -170704,19 +168433,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137419] = 5, + aux_sym_enum_definition_token1, + [133891] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1744), 2, + ACTIONS(3267), 1, + ts_builtin_sym_end, + STATE(1687), 2, sym_comment, sym_include, - ACTIONS(3304), 31, + 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, @@ -170746,80 +168477,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [133941] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1746), 2, + ACTIONS(3271), 1, + ts_builtin_sym_end, + STATE(1688), 2, sym_comment, sym_include, - ACTIONS(2935), 31, + 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, @@ -170849,80 +168521,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137598] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3328), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(3330), 1, - aux_sym_dataset_expression_token1, - ACTIONS(3332), 1, - aux_sym_input_expression_token1, - ACTIONS(3334), 1, - aux_sym_variable_definition_token3, - ACTIONS(3336), 1, - aux_sym_variable_definition_token4, - ACTIONS(3338), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3340), 1, - aux_sym_query_definition_token1, - ACTIONS(3344), 1, - aux_sym_stream_definition_token1, - ACTIONS(3348), 1, - aux_sym_button_definition_token1, - STATE(3194), 1, - sym_access_tuning, - STATE(3204), 1, - sym_scope_tuning, - STATE(3248), 1, - aux_sym_variable_definition_repeat1, - STATE(3323), 1, - aux_sym_buffer_definition_repeat1, - 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(3346), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(1747), 2, - sym_comment, - sym_include, - 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(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, - [137683] = 5, + aux_sym_enum_definition_token1, + [133991] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1748), 2, + ACTIONS(3273), 1, + ts_builtin_sym_end, + STATE(1689), 2, sym_comment, sym_include, - ACTIONS(3219), 31, + 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, @@ -170952,19 +168565,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137730] = 5, + aux_sym_enum_definition_token1, + [134041] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1749), 2, + ACTIONS(3277), 1, + ts_builtin_sym_end, + STATE(1690), 2, sym_comment, sym_include, - ACTIONS(3141), 31, + 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, @@ -170994,19 +168609,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137777] = 5, + aux_sym_enum_definition_token1, + [134091] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1750), 2, + ACTIONS(3281), 1, + ts_builtin_sym_end, + STATE(1691), 2, sym_comment, sym_include, - ACTIONS(3137), 31, + ACTIONS(3283), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171036,19 +168653,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137824] = 6, + aux_sym_enum_definition_token1, + [134141] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, + ACTIONS(3285), 1, ts_builtin_sym_end, - STATE(1751), 2, + STATE(1692), 2, sym_comment, sym_include, - ACTIONS(3352), 30, + ACTIONS(3287), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171079,19 +168697,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137873] = 5, + aux_sym_enum_definition_token1, + [134191] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1752), 2, + ACTIONS(3289), 1, + ts_builtin_sym_end, + STATE(1693), 2, sym_comment, sym_include, - ACTIONS(3354), 31, + ACTIONS(3291), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171121,19 +168741,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137920] = 5, + aux_sym_enum_definition_token1, + [134241] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1753), 2, + ACTIONS(3293), 1, + ts_builtin_sym_end, + STATE(1694), 2, sym_comment, sym_include, - ACTIONS(2925), 31, + ACTIONS(3295), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171163,19 +168785,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137967] = 5, + aux_sym_enum_definition_token1, + [134291] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1754), 2, + ACTIONS(3297), 1, + ts_builtin_sym_end, + STATE(1695), 2, sym_comment, sym_include, - ACTIONS(3356), 31, + ACTIONS(3299), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171205,19 +168829,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138014] = 5, + aux_sym_enum_definition_token1, + [134341] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1755), 2, + ACTIONS(3301), 1, + ts_builtin_sym_end, + STATE(1696), 2, sym_comment, sym_include, - ACTIONS(2919), 31, + ACTIONS(3303), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171247,19 +168873,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, - [138061] = 5, + aux_sym_enum_definition_token1, + [134391] = 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(1697), 2, sym_comment, sym_include, - ACTIONS(2915), 31, + ACTIONS(3305), 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, + [134439] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + ts_builtin_sym_end, + STATE(1698), 2, + sym_comment, + sym_include, + ACTIONS(3309), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171289,17 +168960,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138108] = 5, + aux_sym_enum_definition_token1, + [134489] = 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(1699), 2, sym_comment, sym_include, - ACTIONS(2911), 31, + ACTIONS(3311), 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, + [134537] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1700), 2, + sym_comment, + sym_include, + ACTIONS(3309), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -171331,19 +169046,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138155] = 5, + aux_sym_enum_definition_token1, + [134585] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1758), 2, + ACTIONS(3313), 1, + ts_builtin_sym_end, + STATE(1701), 2, sym_comment, sym_include, - ACTIONS(2903), 31, + ACTIONS(3110), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -171373,40 +169090,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, - [138202] = 8, + aux_sym_enum_definition_token1, + [134635] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(3315), 1, + ts_builtin_sym_end, + STATE(1702), 2, sym_comment, sym_include, - ACTIONS(3358), 28, + ACTIONS(3317), 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, @@ -171418,19 +169134,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138255] = 5, + aux_sym_enum_definition_token1, + [134685] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1760), 2, + ACTIONS(3319), 1, + ts_builtin_sym_end, + STATE(1703), 2, sym_comment, sym_include, - ACTIONS(3358), 31, + 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, @@ -171460,19 +169178,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138302] = 6, + aux_sym_enum_definition_token1, + [134735] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3366), 1, + ACTIONS(3321), 1, ts_builtin_sym_end, - STATE(1761), 2, + STATE(1704), 2, sym_comment, sym_include, - ACTIONS(3283), 30, + ACTIONS(3235), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171503,19 +169222,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138351] = 6, + aux_sym_enum_definition_token1, + [134785] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3368), 1, + ACTIONS(3323), 1, ts_builtin_sym_end, - STATE(1762), 2, + STATE(1705), 2, sym_comment, sym_include, - ACTIONS(3281), 30, + ACTIONS(3233), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171546,19 +169266,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138400] = 6, + aux_sym_enum_definition_token1, + [134835] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3370), 1, + ACTIONS(3325), 1, ts_builtin_sym_end, - STATE(1763), 2, + STATE(1706), 2, sym_comment, sym_include, - ACTIONS(3279), 30, + ACTIONS(3231), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171589,19 +169310,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138449] = 6, + aux_sym_enum_definition_token1, + [134885] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3372), 1, + ACTIONS(3327), 1, ts_builtin_sym_end, - STATE(1764), 2, + STATE(1707), 2, sym_comment, sym_include, - ACTIONS(3277), 30, + ACTIONS(3225), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171632,19 +169354,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138498] = 6, + aux_sym_enum_definition_token1, + [134935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3374), 1, + ACTIONS(3329), 1, ts_builtin_sym_end, - STATE(1765), 2, + STATE(1708), 2, sym_comment, sym_include, - ACTIONS(3275), 30, + ACTIONS(3213), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171675,19 +169398,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138547] = 6, + aux_sym_enum_definition_token1, + [134985] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3331), 1, ts_builtin_sym_end, - STATE(1766), 2, + STATE(1709), 2, sym_comment, sym_include, - ACTIONS(3261), 30, + ACTIONS(3211), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171718,19 +169442,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138596] = 6, + aux_sym_enum_definition_token1, + [135035] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3378), 1, + ACTIONS(3333), 1, ts_builtin_sym_end, - STATE(1767), 2, + STATE(1710), 2, sym_comment, sym_include, - ACTIONS(3259), 30, + ACTIONS(3112), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171761,19 +169486,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138645] = 6, + aux_sym_enum_definition_token1, + [135085] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3335), 1, ts_builtin_sym_end, - STATE(1768), 2, + STATE(1711), 2, sym_comment, sym_include, - ACTIONS(3253), 30, + ACTIONS(3209), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171804,19 +169530,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138694] = 6, + aux_sym_enum_definition_token1, + [135135] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3382), 1, + ACTIONS(3337), 1, ts_builtin_sym_end, - STATE(1769), 2, + STATE(1712), 2, sym_comment, sym_include, - ACTIONS(2969), 30, + ACTIONS(3207), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171847,19 +169574,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138743] = 6, + aux_sym_enum_definition_token1, + [135185] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3339), 1, ts_builtin_sym_end, - STATE(1770), 2, + STATE(1713), 2, sym_comment, sym_include, - ACTIONS(3386), 30, + ACTIONS(3205), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171890,19 +169618,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138792] = 6, + aux_sym_enum_definition_token1, + [135235] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3388), 1, + ACTIONS(3341), 1, ts_builtin_sym_end, - STATE(1771), 2, + STATE(1714), 2, sym_comment, sym_include, - ACTIONS(3390), 30, + ACTIONS(3203), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171933,19 +169662,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138841] = 6, + aux_sym_enum_definition_token1, + [135285] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3392), 1, + ACTIONS(3343), 1, ts_builtin_sym_end, - STATE(1772), 2, + STATE(1715), 2, sym_comment, sym_include, - ACTIONS(3203), 30, + ACTIONS(3201), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -171976,17 +169706,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138890] = 5, + aux_sym_enum_definition_token1, + [135335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1773), 2, + STATE(1716), 2, sym_comment, sym_include, - ACTIONS(2855), 31, + ACTIONS(3303), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -172018,20 +169749,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138937] = 6, + aux_sym_enum_definition_token1, + [135383] = 5, 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(1774), 2, + STATE(1717), 2, sym_comment, sym_include, - ACTIONS(3201), 30, + ACTIONS(3299), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -172061,19 +169792,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138986] = 6, + aux_sym_enum_definition_token1, + [135431] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3396), 1, + ACTIONS(3345), 1, ts_builtin_sym_end, - STATE(1775), 2, + STATE(1718), 2, sym_comment, sym_include, - ACTIONS(3181), 30, + ACTIONS(3197), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172104,19 +169836,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139035] = 5, + aux_sym_enum_definition_token1, + [135481] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1776), 2, + ACTIONS(3347), 1, + ts_builtin_sym_end, + STATE(1719), 2, sym_comment, sym_include, - ACTIONS(3398), 31, + 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, @@ -172146,19 +169880,21 @@ 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, + aux_sym_enum_definition_token1, + [135531] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1777), 2, + ACTIONS(3349), 1, + ts_builtin_sym_end, + STATE(1720), 2, sym_comment, sym_include, - ACTIONS(3398), 31, + 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, @@ -172188,19 +169924,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139129] = 5, + aux_sym_enum_definition_token1, + [135581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1778), 2, + ACTIONS(3351), 1, + ts_builtin_sym_end, + STATE(1721), 2, sym_comment, sym_include, - ACTIONS(3352), 31, + 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, @@ -172230,19 +169968,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139176] = 6, + aux_sym_enum_definition_token1, + [135631] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3400), 1, + ACTIONS(3353), 1, ts_builtin_sym_end, - STATE(1779), 2, + STATE(1722), 2, sym_comment, sym_include, - ACTIONS(3179), 30, + ACTIONS(3169), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172273,19 +170012,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139225] = 6, + aux_sym_enum_definition_token1, + [135681] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3402), 1, + ACTIONS(3355), 1, ts_builtin_sym_end, - STATE(1780), 2, + STATE(1723), 2, sym_comment, sym_include, - ACTIONS(3177), 30, + ACTIONS(3167), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172316,19 +170056,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139274] = 6, + aux_sym_enum_definition_token1, + [135731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3357), 1, ts_builtin_sym_end, - STATE(1781), 2, + STATE(1724), 2, sym_comment, sym_include, - ACTIONS(3175), 30, + ACTIONS(3163), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172359,19 +170100,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139323] = 6, + aux_sym_enum_definition_token1, + [135781] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3406), 1, + ACTIONS(3359), 1, ts_builtin_sym_end, - STATE(1782), 2, + STATE(1725), 2, sym_comment, sym_include, - ACTIONS(3171), 30, + ACTIONS(3154), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172402,20 +170144,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139372] = 6, + aux_sym_enum_definition_token1, + [135831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3408), 1, - ts_builtin_sym_end, - STATE(1783), 2, + STATE(1726), 2, sym_comment, sym_include, - ACTIONS(3151), 30, + ACTIONS(3295), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -172445,19 +170187,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139421] = 6, + aux_sym_enum_definition_token1, + [135879] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3410), 1, + ACTIONS(3361), 1, ts_builtin_sym_end, - STATE(1784), 2, + STATE(1727), 2, sym_comment, sym_include, - ACTIONS(3109), 30, + ACTIONS(3152), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172488,19 +170231,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139470] = 6, + aux_sym_enum_definition_token1, + [135929] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3363), 1, ts_builtin_sym_end, - STATE(1785), 2, + STATE(1728), 2, sym_comment, sym_include, - ACTIONS(3107), 30, + ACTIONS(3150), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172531,19 +170275,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139519] = 6, + aux_sym_enum_definition_token1, + [135979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3414), 1, + ACTIONS(3365), 1, ts_builtin_sym_end, - STATE(1786), 2, + STATE(1729), 2, sym_comment, sym_include, - ACTIONS(3105), 30, + ACTIONS(3148), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172574,19 +170319,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139568] = 6, + aux_sym_enum_definition_token1, + [136029] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3367), 1, ts_builtin_sym_end, - STATE(1787), 2, + STATE(1730), 2, sym_comment, sym_include, - ACTIONS(3103), 30, + ACTIONS(3146), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172617,19 +170363,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139617] = 6, + aux_sym_enum_definition_token1, + [136079] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3418), 1, + ACTIONS(3369), 1, ts_builtin_sym_end, - STATE(1788), 2, + STATE(1731), 2, sym_comment, sym_include, - ACTIONS(3101), 30, + ACTIONS(3144), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172660,19 +170407,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139666] = 6, + aux_sym_enum_definition_token1, + [136129] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3371), 1, ts_builtin_sym_end, - STATE(1789), 2, + STATE(1732), 2, sym_comment, sym_include, - ACTIONS(3099), 30, + ACTIONS(3142), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172703,19 +170451,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139715] = 6, + aux_sym_enum_definition_token1, + [136179] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3422), 1, + ACTIONS(3373), 1, ts_builtin_sym_end, - STATE(1790), 2, + STATE(1733), 2, sym_comment, sym_include, - ACTIONS(3095), 30, + ACTIONS(3140), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172746,19 +170495,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139764] = 6, + aux_sym_enum_definition_token1, + [136229] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(3375), 1, ts_builtin_sym_end, - STATE(1791), 2, + STATE(1734), 2, sym_comment, sym_include, - ACTIONS(3065), 30, + ACTIONS(3138), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172789,19 +170539,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139813] = 6, + aux_sym_enum_definition_token1, + [136279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3426), 1, + ACTIONS(3377), 1, ts_builtin_sym_end, - STATE(1792), 2, + STATE(1735), 2, sym_comment, sym_include, - ACTIONS(3063), 30, + ACTIONS(3132), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172832,19 +170583,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139862] = 6, + aux_sym_enum_definition_token1, + [136329] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3379), 1, ts_builtin_sym_end, - STATE(1793), 2, + STATE(1736), 2, sym_comment, sym_include, - ACTIONS(3059), 30, + ACTIONS(3130), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172875,19 +170627,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139911] = 6, + aux_sym_enum_definition_token1, + [136379] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, + ACTIONS(3381), 1, ts_builtin_sym_end, - STATE(1794), 2, + STATE(1737), 2, sym_comment, sym_include, - ACTIONS(3035), 30, + ACTIONS(3128), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172918,19 +170671,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139960] = 6, + aux_sym_enum_definition_token1, + [136429] = 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(3383), 1, ts_builtin_sym_end, - STATE(1795), 2, + STATE(1738), 2, sym_comment, sym_include, - ACTIONS(3033), 30, + ACTIONS(3126), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -172961,19 +170715,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140009] = 6, + aux_sym_enum_definition_token1, + [136479] = 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(3385), 1, ts_builtin_sym_end, - STATE(1796), 2, + STATE(1739), 2, sym_comment, sym_include, - ACTIONS(3031), 30, + ACTIONS(2850), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173004,20 +170759,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140058] = 6, + aux_sym_enum_definition_token1, + [136529] = 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(1797), 2, + STATE(1740), 2, sym_comment, sym_include, - ACTIONS(3029), 30, + ACTIONS(3291), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -173047,19 +170802,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140107] = 6, + aux_sym_enum_definition_token1, + [136577] = 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(3387), 1, ts_builtin_sym_end, - STATE(1798), 2, + STATE(1741), 2, sym_comment, sym_include, - ACTIONS(3025), 30, + ACTIONS(2860), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173090,19 +170846,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140156] = 6, + aux_sym_enum_definition_token1, + [136627] = 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(3389), 1, ts_builtin_sym_end, - STATE(1799), 2, + STATE(1742), 2, sym_comment, sym_include, - ACTIONS(3023), 30, + ACTIONS(3114), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173133,71 +170890,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [136677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1801), 2, + ACTIONS(3391), 1, + ts_builtin_sym_end, + STATE(1743), 2, sym_comment, sym_include, - ACTIONS(2953), 31, + ACTIONS(3116), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -173227,20 +170934,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140319] = 6, + aux_sym_enum_definition_token1, + [136727] = 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(1802), 2, + STATE(1744), 2, sym_comment, sym_include, - ACTIONS(3221), 30, + ACTIONS(3287), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -173270,17 +170977,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140368] = 5, + aux_sym_enum_definition_token1, + [136775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1803), 2, + STATE(1745), 2, sym_comment, sym_include, - ACTIONS(2959), 31, + ACTIONS(3283), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -173312,19 +171020,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140415] = 6, + aux_sym_enum_definition_token1, + [136823] = 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(3393), 1, ts_builtin_sym_end, - STATE(1804), 2, + STATE(1746), 2, sym_comment, sym_include, - ACTIONS(3001), 30, + ACTIONS(3134), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173355,19 +171064,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140464] = 6, + aux_sym_enum_definition_token1, + [136873] = 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(3395), 1, ts_builtin_sym_end, - STATE(1805), 2, + STATE(1747), 2, sym_comment, sym_include, - ACTIONS(2999), 30, + ACTIONS(2870), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173398,19 +171108,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140513] = 6, + aux_sym_enum_definition_token1, + [136923] = 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(3397), 1, ts_builtin_sym_end, - STATE(1806), 2, + STATE(1748), 2, sym_comment, sym_include, - ACTIONS(2997), 30, + ACTIONS(2872), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173441,19 +171152,20 @@ 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, + aux_sym_enum_definition_token1, + [136973] = 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(3399), 1, ts_builtin_sym_end, - STATE(1807), 2, + STATE(1749), 2, sym_comment, sym_include, - ACTIONS(2995), 30, + ACTIONS(2874), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173484,19 +171196,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140611] = 6, + aux_sym_enum_definition_token1, + [137023] = 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(3401), 1, ts_builtin_sym_end, - STATE(1808), 2, + STATE(1750), 2, sym_comment, sym_include, - ACTIONS(2991), 30, + ACTIONS(2876), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173527,19 +171240,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140660] = 6, + aux_sym_enum_definition_token1, + [137073] = 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(3403), 1, ts_builtin_sym_end, - STATE(1809), 2, + STATE(1751), 2, sym_comment, sym_include, - ACTIONS(2989), 30, + ACTIONS(2878), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173570,19 +171284,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140709] = 6, + aux_sym_enum_definition_token1, + [137123] = 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(3405), 1, ts_builtin_sym_end, - STATE(1810), 2, + STATE(1752), 2, sym_comment, sym_include, - ACTIONS(2987), 30, + ACTIONS(2880), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173613,19 +171328,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140758] = 5, + aux_sym_enum_definition_token1, + [137173] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1811), 2, + ACTIONS(3407), 1, + ts_builtin_sym_end, + STATE(1753), 2, sym_comment, sym_include, - ACTIONS(3386), 31, + ACTIONS(2882), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -173655,19 +171372,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140805] = 6, + aux_sym_enum_definition_token1, + [137223] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3458), 1, + ACTIONS(3409), 1, ts_builtin_sym_end, - STATE(1812), 2, + STATE(1754), 2, sym_comment, sym_include, - ACTIONS(2981), 30, + ACTIONS(2884), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173698,19 +171416,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140854] = 6, + aux_sym_enum_definition_token1, + [137273] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3460), 1, + ACTIONS(3411), 1, ts_builtin_sym_end, - STATE(1813), 2, + STATE(1755), 2, sym_comment, sym_include, - ACTIONS(2979), 30, + ACTIONS(2886), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173741,19 +171460,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140903] = 6, + aux_sym_enum_definition_token1, + [137323] = 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(3413), 1, ts_builtin_sym_end, - STATE(1814), 2, + STATE(1756), 2, sym_comment, sym_include, - ACTIONS(2961), 30, + ACTIONS(2888), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173784,19 +171504,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140952] = 6, + aux_sym_enum_definition_token1, + [137373] = 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(3415), 1, ts_builtin_sym_end, - STATE(1815), 2, + STATE(1757), 2, sym_comment, sym_include, - ACTIONS(2947), 30, + ACTIONS(2890), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173827,20 +171548,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141001] = 6, + aux_sym_enum_definition_token1, + [137423] = 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(1816), 2, + STATE(1758), 2, sym_comment, sym_include, - ACTIONS(2857), 30, + ACTIONS(3279), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -173870,19 +171591,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141050] = 6, + aux_sym_enum_definition_token1, + [137471] = 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(3417), 1, ts_builtin_sym_end, - STATE(1817), 2, + STATE(1759), 2, sym_comment, sym_include, - ACTIONS(2859), 30, + ACTIONS(2892), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -173913,69 +171635,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, - [141099] = 13, + aux_sym_enum_definition_token1, + [137521] = 6, 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(1818), 2, + ACTIONS(3419), 1, + ts_builtin_sym_end, + STATE(1760), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1202), 5, + ACTIONS(2894), 31, 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_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, - 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, + aux_sym__case_terminator_token1, + aux_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, + aux_sym_enum_definition_token1, + [137571] = 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(3421), 1, ts_builtin_sym_end, - STATE(1819), 2, + STATE(1761), 2, sym_comment, sym_include, - ACTIONS(2861), 30, + ACTIONS(2896), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174006,19 +171723,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141211] = 6, + aux_sym_enum_definition_token1, + [137621] = 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(3423), 1, ts_builtin_sym_end, - STATE(1820), 2, + STATE(1762), 2, sym_comment, sym_include, - ACTIONS(2863), 30, + ACTIONS(2898), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174049,20 +171767,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141260] = 6, + aux_sym_enum_definition_token1, + [137671] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3474), 1, - ts_builtin_sym_end, - STATE(1821), 2, + STATE(1763), 2, sym_comment, sym_include, - ACTIONS(2865), 30, + ACTIONS(3241), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -174092,20 +171810,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141309] = 6, + aux_sym_enum_definition_token1, + [137719] = 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(1822), 2, + STATE(1764), 2, sym_comment, sym_include, - ACTIONS(2867), 30, + ACTIONS(3275), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -174135,19 +171853,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141358] = 6, + aux_sym_enum_definition_token1, + [137767] = 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(3425), 1, ts_builtin_sym_end, - STATE(1823), 2, + STATE(1765), 2, sym_comment, sym_include, - ACTIONS(2869), 30, + ACTIONS(2900), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174178,19 +171897,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141407] = 6, + aux_sym_enum_definition_token1, + [137817] = 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(3427), 1, ts_builtin_sym_end, - STATE(1824), 2, + STATE(1766), 2, sym_comment, sym_include, - ACTIONS(2871), 30, + ACTIONS(2902), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174221,19 +171941,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141456] = 6, + aux_sym_enum_definition_token1, + [137867] = 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(3429), 1, ts_builtin_sym_end, - STATE(1825), 2, + STATE(1767), 2, sym_comment, sym_include, - ACTIONS(2873), 30, + ACTIONS(2904), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174264,19 +171985,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141505] = 6, + aux_sym_enum_definition_token1, + [137917] = 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(3431), 1, ts_builtin_sym_end, - STATE(1826), 2, + STATE(1768), 2, sym_comment, sym_include, - ACTIONS(2875), 30, + ACTIONS(2906), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174307,19 +172029,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141554] = 6, + aux_sym_enum_definition_token1, + [137967] = 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(3433), 1, ts_builtin_sym_end, - STATE(1827), 2, + STATE(1769), 2, sym_comment, sym_include, - ACTIONS(2877), 30, + ACTIONS(2908), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174350,19 +172073,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141603] = 6, + aux_sym_enum_definition_token1, + [138017] = 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(3435), 1, ts_builtin_sym_end, - STATE(1828), 2, + STATE(1770), 2, sym_comment, sym_include, - ACTIONS(2879), 30, + ACTIONS(2910), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174393,19 +172117,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141652] = 6, + aux_sym_enum_definition_token1, + [138067] = 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(3437), 1, ts_builtin_sym_end, - STATE(1829), 2, + STATE(1771), 2, sym_comment, sym_include, - ACTIONS(2881), 30, + ACTIONS(2912), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174436,19 +172161,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141701] = 6, + aux_sym_enum_definition_token1, + [138117] = 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(3439), 1, ts_builtin_sym_end, - STATE(1830), 2, + STATE(1772), 2, sym_comment, sym_include, - ACTIONS(2883), 30, + ACTIONS(2914), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174479,19 +172205,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141750] = 6, + aux_sym_enum_definition_token1, + [138167] = 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(3441), 1, ts_builtin_sym_end, - STATE(1831), 2, + STATE(1773), 2, sym_comment, sym_include, - ACTIONS(2885), 30, + ACTIONS(2920), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174522,19 +172249,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141799] = 6, + aux_sym_enum_definition_token1, + [138217] = 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(3443), 1, ts_builtin_sym_end, - STATE(1832), 2, + STATE(1774), 2, sym_comment, sym_include, - ACTIONS(2887), 30, + ACTIONS(2922), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174565,19 +172293,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141848] = 6, + aux_sym_enum_definition_token1, + [138267] = 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(3445), 1, ts_builtin_sym_end, - STATE(1833), 2, + STATE(1775), 2, sym_comment, sym_include, - ACTIONS(2889), 30, + ACTIONS(2936), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174608,19 +172337,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141897] = 6, + aux_sym_enum_definition_token1, + [138317] = 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(3447), 1, ts_builtin_sym_end, - STATE(1834), 2, + STATE(1776), 2, sym_comment, sym_include, - ACTIONS(2891), 30, + ACTIONS(2946), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174651,19 +172381,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141946] = 6, + aux_sym_enum_definition_token1, + [138367] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3502), 1, + ACTIONS(3449), 1, ts_builtin_sym_end, - STATE(1835), 2, + STATE(1777), 2, sym_comment, sym_include, - ACTIONS(2893), 30, + ACTIONS(2948), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174694,17 +172425,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141995] = 5, + aux_sym_enum_definition_token1, + [138417] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1836), 2, + STATE(1778), 2, sym_comment, sym_include, - ACTIONS(2965), 31, + ACTIONS(3008), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -174736,19 +172468,20 @@ 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, + aux_sym_enum_definition_token1, + [138465] = 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(3451), 1, ts_builtin_sym_end, - STATE(1837), 2, + STATE(1779), 2, sym_comment, sym_include, - ACTIONS(2895), 30, + ACTIONS(2950), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174779,19 +172512,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142091] = 6, + aux_sym_enum_definition_token1, + [138515] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3506), 1, + ACTIONS(3453), 1, ts_builtin_sym_end, - STATE(1838), 2, + STATE(1780), 2, sym_comment, sym_include, - ACTIONS(2897), 30, + ACTIONS(2952), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174822,19 +172556,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142140] = 6, + aux_sym_enum_definition_token1, + [138565] = 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(3455), 1, ts_builtin_sym_end, - STATE(1839), 2, + STATE(1781), 2, sym_comment, sym_include, - ACTIONS(2899), 30, + ACTIONS(2954), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174865,19 +172600,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142189] = 6, + aux_sym_enum_definition_token1, + [138615] = 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(3457), 1, ts_builtin_sym_end, - STATE(1840), 2, + STATE(1782), 2, sym_comment, sym_include, - ACTIONS(2905), 30, + ACTIONS(2956), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174908,19 +172644,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142238] = 6, + aux_sym_enum_definition_token1, + [138665] = 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(3459), 1, ts_builtin_sym_end, - STATE(1841), 2, + STATE(1783), 2, sym_comment, sym_include, - ACTIONS(2907), 30, + ACTIONS(2958), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174951,19 +172688,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142287] = 6, + aux_sym_enum_definition_token1, + [138715] = 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(3461), 1, ts_builtin_sym_end, - STATE(1842), 2, + STATE(1784), 2, sym_comment, sym_include, - ACTIONS(2921), 30, + ACTIONS(2960), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -174994,19 +172732,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142336] = 6, + aux_sym_enum_definition_token1, + [138765] = 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(3463), 1, ts_builtin_sym_end, - STATE(1843), 2, + STATE(1785), 2, sym_comment, sym_include, - ACTIONS(2929), 30, + ACTIONS(2962), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175037,19 +172776,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142385] = 6, + aux_sym_enum_definition_token1, + [138815] = 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(3465), 1, ts_builtin_sym_end, - STATE(1844), 2, + STATE(1786), 2, sym_comment, sym_include, - ACTIONS(2931), 30, + ACTIONS(2964), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175080,69 +172820,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142434] = 13, + aux_sym_enum_definition_token1, + [138865] = 6, 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(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(1845), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1190), 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, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [142497] = 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(3467), 1, ts_builtin_sym_end, - STATE(1846), 2, + STATE(1787), 2, sym_comment, sym_include, - ACTIONS(2937), 30, + ACTIONS(2966), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175173,20 +172864,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142546] = 6, + aux_sym_enum_definition_token1, + [138915] = 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(1847), 2, + STATE(1788), 2, sym_comment, sym_include, - ACTIONS(2939), 30, + ACTIONS(3269), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -175216,20 +172907,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142595] = 6, + aux_sym_enum_definition_token1, + [138963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, - ts_builtin_sym_end, - STATE(1848), 2, + STATE(1789), 2, sym_comment, sym_include, - ACTIONS(2941), 30, + ACTIONS(3265), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -175259,20 +172950,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142644] = 6, + aux_sym_enum_definition_token1, + [139011] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3526), 1, - ts_builtin_sym_end, - STATE(1849), 2, + STATE(1790), 2, sym_comment, sym_include, - ACTIONS(2943), 30, + ACTIONS(3261), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -175302,62 +172993,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, - [142693] = 6, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [139059] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, - ts_builtin_sym_end, - STATE(1850), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1791), 2, sym_comment, sym_include, - 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, - 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, + ACTIONS(204), 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, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_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, - [142742] = 6, + anon_sym_BY, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [139125] = 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(3469), 1, ts_builtin_sym_end, - STATE(1851), 2, + STATE(1792), 2, sym_comment, sym_include, - ACTIONS(2949), 30, + ACTIONS(2968), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175388,19 +173089,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142791] = 6, + aux_sym_enum_definition_token1, + [139175] = 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(3471), 1, ts_builtin_sym_end, - STATE(1852), 2, + STATE(1793), 2, sym_comment, sym_include, - ACTIONS(2955), 30, + ACTIONS(2970), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175431,19 +173133,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142840] = 6, + aux_sym_enum_definition_token1, + [139225] = 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(3473), 1, ts_builtin_sym_end, - STATE(1853), 2, + STATE(1794), 2, sym_comment, sym_include, - ACTIONS(2967), 30, + ACTIONS(2972), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175474,19 +173177,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142889] = 6, + aux_sym_enum_definition_token1, + [139275] = 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(3475), 1, ts_builtin_sym_end, - STATE(1854), 2, + STATE(1795), 2, sym_comment, sym_include, - ACTIONS(2985), 30, + ACTIONS(2974), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175517,19 +173221,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142938] = 6, + aux_sym_enum_definition_token1, + [139325] = 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(3477), 1, ts_builtin_sym_end, - STATE(1855), 2, + STATE(1796), 2, sym_comment, sym_include, - ACTIONS(3003), 30, + ACTIONS(2976), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175560,19 +173265,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142987] = 6, + aux_sym_enum_definition_token1, + [139375] = 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(3479), 1, ts_builtin_sym_end, - STATE(1856), 2, + STATE(1797), 2, sym_comment, sym_include, - ACTIONS(3005), 30, + ACTIONS(2978), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175603,19 +173309,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143036] = 5, + aux_sym_enum_definition_token1, + [139425] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1857), 2, + ACTIONS(3481), 1, + ts_builtin_sym_end, + STATE(1798), 2, sym_comment, sym_include, - ACTIONS(2973), 31, + ACTIONS(2980), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -175645,19 +173353,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143083] = 5, + aux_sym_enum_definition_token1, + [139475] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1858), 2, + ACTIONS(3483), 1, + ts_builtin_sym_end, + STATE(1799), 2, sym_comment, sym_include, - ACTIONS(2977), 31, + ACTIONS(2982), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -175687,19 +173397,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143130] = 6, + aux_sym_enum_definition_token1, + [139525] = 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(3485), 1, ts_builtin_sym_end, - STATE(1859), 2, + STATE(1800), 2, sym_comment, sym_include, - ACTIONS(3007), 30, + ACTIONS(2984), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175730,19 +173441,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143179] = 6, + aux_sym_enum_definition_token1, + [139575] = 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(3487), 1, ts_builtin_sym_end, - STATE(1860), 2, + STATE(1801), 2, sym_comment, sym_include, - ACTIONS(3009), 30, + ACTIONS(2986), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175773,19 +173485,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143228] = 6, + aux_sym_enum_definition_token1, + [139625] = 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(3489), 1, ts_builtin_sym_end, - STATE(1861), 2, + STATE(1802), 2, sym_comment, sym_include, - ACTIONS(3011), 30, + ACTIONS(2988), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175816,20 +173529,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143277] = 6, + aux_sym_enum_definition_token1, + [139675] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3548), 1, - ts_builtin_sym_end, - STATE(1862), 2, + STATE(1803), 2, sym_comment, sym_include, - ACTIONS(3013), 30, + ACTIONS(3257), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -175859,19 +173572,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143326] = 6, + aux_sym_enum_definition_token1, + [139723] = 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(3491), 1, ts_builtin_sym_end, - STATE(1863), 2, + STATE(1804), 2, sym_comment, sym_include, - ACTIONS(3015), 30, + ACTIONS(2990), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175902,19 +173616,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143375] = 6, + aux_sym_enum_definition_token1, + [139773] = 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(3493), 1, ts_builtin_sym_end, - STATE(1864), 2, + STATE(1805), 2, sym_comment, sym_include, - ACTIONS(3017), 30, + ACTIONS(2992), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -175945,62 +173660,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, - [143424] = 6, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [139823] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3554), 1, - ts_builtin_sym_end, - STATE(1865), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1806), 2, sym_comment, sym_include, - 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, - 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, + ACTIONS(1234), 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, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_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, - [143473] = 6, + anon_sym_BY, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [139891] = 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(3495), 1, ts_builtin_sym_end, - STATE(1866), 2, + STATE(1807), 2, sym_comment, sym_include, - ACTIONS(3021), 30, + ACTIONS(2994), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176031,19 +173757,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143522] = 5, + aux_sym_enum_definition_token1, + [139941] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1867), 2, + ACTIONS(3497), 1, + ts_builtin_sym_end, + STATE(1808), 2, sym_comment, sym_include, - ACTIONS(3039), 31, + ACTIONS(2996), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176073,20 +173801,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143569] = 6, + aux_sym_enum_definition_token1, + [139991] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3558), 1, - ts_builtin_sym_end, - STATE(1868), 2, + STATE(1809), 2, sym_comment, sym_include, - ACTIONS(3027), 30, + ACTIONS(3219), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176116,20 +173844,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143618] = 6, + aux_sym_enum_definition_token1, + [140039] = 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(1869), 2, + STATE(1810), 2, sym_comment, sym_include, - ACTIONS(2849), 30, + ACTIONS(3219), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176159,20 +173887,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143667] = 6, + aux_sym_enum_definition_token1, + [140087] = 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(1870), 2, + STATE(1811), 2, sym_comment, sym_include, - ACTIONS(3119), 30, + ACTIONS(3499), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176202,19 +173930,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143716] = 6, + aux_sym_enum_definition_token1, + [140135] = 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(3501), 1, ts_builtin_sym_end, - STATE(1871), 2, + STATE(1812), 2, sym_comment, sym_include, - ACTIONS(3121), 30, + ACTIONS(2998), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176245,19 +173974,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143765] = 6, + aux_sym_enum_definition_token1, + [140185] = 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(3503), 1, ts_builtin_sym_end, - STATE(1872), 2, + STATE(1813), 2, sym_comment, sym_include, - ACTIONS(3127), 30, + ACTIONS(3000), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176288,19 +174018,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143814] = 6, + aux_sym_enum_definition_token1, + [140235] = 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(3505), 1, ts_builtin_sym_end, - STATE(1873), 2, + STATE(1814), 2, sym_comment, sym_include, - ACTIONS(3129), 30, + ACTIONS(3002), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176331,19 +174062,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143863] = 6, + aux_sym_enum_definition_token1, + [140285] = 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(3507), 1, ts_builtin_sym_end, - STATE(1874), 2, + STATE(1815), 2, sym_comment, sym_include, - ACTIONS(3131), 30, + ACTIONS(3004), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176374,19 +174106,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143912] = 6, + aux_sym_enum_definition_token1, + [140335] = 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(3509), 1, ts_builtin_sym_end, - STATE(1875), 2, + STATE(1816), 2, sym_comment, sym_include, - ACTIONS(3133), 30, + ACTIONS(3014), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176417,19 +174150,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143961] = 6, + aux_sym_enum_definition_token1, + [140385] = 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(3511), 1, ts_builtin_sym_end, - STATE(1876), 2, + STATE(1817), 2, sym_comment, sym_include, - ACTIONS(3143), 30, + ACTIONS(3016), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176460,19 +174194,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144010] = 6, + aux_sym_enum_definition_token1, + [140435] = 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(3513), 1, ts_builtin_sym_end, - STATE(1877), 2, + STATE(1818), 2, sym_comment, sym_include, - ACTIONS(3145), 30, + ACTIONS(3018), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176503,19 +174238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144059] = 6, + aux_sym_enum_definition_token1, + [140485] = 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(3515), 1, ts_builtin_sym_end, - STATE(1878), 2, + STATE(1819), 2, sym_comment, sym_include, - ACTIONS(3147), 30, + ACTIONS(3020), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176546,19 +174282,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, - [144108] = 6, + aux_sym_enum_definition_token1, + [140535] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1820), 2, + sym_comment, + sym_include, + ACTIONS(1230), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [140603] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3580), 1, + ACTIONS(3517), 1, ts_builtin_sym_end, - STATE(1879), 2, + STATE(1821), 2, sym_comment, sym_include, - ACTIONS(3149), 30, + ACTIONS(3024), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176589,19 +174379,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144157] = 5, + aux_sym_enum_definition_token1, + [140653] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1880), 2, + ACTIONS(3519), 1, + ts_builtin_sym_end, + STATE(1822), 2, sym_comment, sym_include, - ACTIONS(3043), 31, + ACTIONS(3026), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176631,19 +174423,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144204] = 6, + aux_sym_enum_definition_token1, + [140703] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, + ACTIONS(3521), 1, ts_builtin_sym_end, - STATE(1881), 2, + STATE(1823), 2, sym_comment, sym_include, - ACTIONS(3153), 30, + ACTIONS(3028), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176674,19 +174467,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144253] = 6, + aux_sym_enum_definition_token1, + [140753] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3584), 1, + ACTIONS(3523), 1, ts_builtin_sym_end, - STATE(1882), 2, + STATE(1824), 2, sym_comment, sym_include, - ACTIONS(3358), 30, + ACTIONS(3030), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176717,41 +174511,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, - [144302] = 9, + aux_sym_enum_definition_token1, + [140803] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3584), 1, + ACTIONS(3525), 1, ts_builtin_sym_end, - 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, + STATE(1825), 2, sym_comment, sym_include, - ACTIONS(3358), 27, + ACTIONS(3032), 31, sym_identifier, aux_sym_input_expression_token1, aux_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, @@ -176763,19 +174555,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144357] = 6, + aux_sym_enum_definition_token1, + [140853] = 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(3527), 1, ts_builtin_sym_end, - STATE(1884), 2, + STATE(1826), 2, sym_comment, sym_include, - ACTIONS(3356), 30, + ACTIONS(3034), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176806,19 +174599,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144406] = 5, + aux_sym_enum_definition_token1, + [140903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1885), 2, + ACTIONS(3529), 1, + ts_builtin_sym_end, + STATE(1827), 2, sym_comment, sym_include, - ACTIONS(3047), 31, + ACTIONS(3036), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176848,19 +174643,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144453] = 6, + aux_sym_enum_definition_token1, + [140953] = 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(3531), 1, ts_builtin_sym_end, - STATE(1886), 2, + STATE(1828), 2, sym_comment, sym_include, - ACTIONS(3287), 30, + ACTIONS(3038), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176891,19 +174687,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144502] = 5, + aux_sym_enum_definition_token1, + [141003] = 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(3533), 1, + ts_builtin_sym_end, + STATE(1829), 2, sym_comment, sym_include, - ACTIONS(3051), 31, + ACTIONS(3040), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -176933,19 +174731,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144549] = 6, + aux_sym_enum_definition_token1, + [141053] = 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(3535), 1, ts_builtin_sym_end, - STATE(1888), 2, + STATE(1830), 2, sym_comment, sym_include, - ACTIONS(3354), 30, + ACTIONS(3042), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -176976,19 +174775,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144598] = 6, + aux_sym_enum_definition_token1, + [141103] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3598), 1, + ACTIONS(3537), 1, ts_builtin_sym_end, - STATE(1889), 2, + STATE(1831), 2, sym_comment, sym_include, - ACTIONS(3155), 30, + ACTIONS(3044), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177019,19 +174819,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144647] = 6, + aux_sym_enum_definition_token1, + [141153] = 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(3539), 1, ts_builtin_sym_end, - STATE(1890), 2, + STATE(1832), 2, sym_comment, sym_include, - ACTIONS(3157), 30, + ACTIONS(3046), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177062,19 +174863,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144696] = 6, + aux_sym_enum_definition_token1, + [141203] = 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(3541), 1, ts_builtin_sym_end, - STATE(1891), 2, + STATE(1833), 2, sym_comment, sym_include, - ACTIONS(3159), 30, + ACTIONS(3048), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177105,19 +174907,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144745] = 6, + aux_sym_enum_definition_token1, + [141253] = 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(3543), 1, ts_builtin_sym_end, - STATE(1892), 2, + STATE(1834), 2, sym_comment, sym_include, - ACTIONS(3161), 30, + ACTIONS(3050), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177148,19 +174951,180 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144794] = 5, + aux_sym_enum_definition_token1, + [141303] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1835), 2, + sym_comment, + sym_include, + ACTIONS(1226), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [141371] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1836), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [141439] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1837), 2, + sym_comment, + sym_include, + ACTIONS(1218), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [141507] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1893), 2, + ACTIONS(3545), 1, + ts_builtin_sym_end, + STATE(1838), 2, sym_comment, sym_include, - ACTIONS(3606), 31, + ACTIONS(3052), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -177190,17 +175154,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144841] = 5, + aux_sym_enum_definition_token1, + [141557] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1894), 2, + STATE(1839), 2, sym_comment, sym_include, - ACTIONS(3057), 31, + ACTIONS(3317), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -177232,17 +175197,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144888] = 5, + aux_sym_enum_definition_token1, + [141605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1895), 2, + STATE(1840), 2, sym_comment, sym_include, - ACTIONS(3113), 31, + ACTIONS(2844), 32, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -177274,19 +175240,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144935] = 5, + aux_sym_enum_definition_token1, + [141653] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1896), 2, + ACTIONS(3547), 1, + ts_builtin_sym_end, + STATE(1841), 2, sym_comment, sym_include, - ACTIONS(3117), 31, + ACTIONS(3054), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -177316,19 +175284,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144982] = 5, + aux_sym_enum_definition_token1, + [141703] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1897), 2, + ACTIONS(3549), 1, + ts_builtin_sym_end, + STATE(1842), 2, sym_comment, sym_include, - ACTIONS(3125), 31, + ACTIONS(3056), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -177358,19 +175328,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145029] = 5, + aux_sym_enum_definition_token1, + [141753] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1898), 2, + ACTIONS(3551), 1, + ts_builtin_sym_end, + STATE(1843), 2, sym_comment, sym_include, - ACTIONS(3189), 31, + ACTIONS(3058), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -177400,19 +175372,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145076] = 6, + aux_sym_enum_definition_token1, + [141803] = 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(3553), 1, ts_builtin_sym_end, - STATE(1899), 2, + STATE(1844), 2, sym_comment, sym_include, - ACTIONS(3163), 30, + ACTIONS(3060), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177443,62 +175416,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, - [145125] = 6, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [141853] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - ts_builtin_sym_end, - STATE(1900), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1845), 2, sym_comment, sym_include, - 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, - 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, + ACTIONS(1129), 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, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_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, - [145174] = 6, + anon_sym_BY, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [141921] = 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(3555), 1, ts_builtin_sym_end, - STATE(1901), 2, + STATE(1846), 2, sym_comment, sym_include, - ACTIONS(3167), 30, + ACTIONS(3066), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177529,61 +175513,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, - [145223] = 5, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [141971] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(1902), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1847), 2, sym_comment, sym_include, - ACTIONS(3199), 31, - sym_identifier, + ACTIONS(1214), 6, + anon_sym_COLON, aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_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_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, - [145270] = 6, + anon_sym_BY, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [142039] = 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(3557), 1, ts_builtin_sym_end, - STATE(1903), 2, + STATE(1848), 2, sym_comment, sym_include, - ACTIONS(3169), 30, + ACTIONS(3070), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177614,19 +175610,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145319] = 6, + aux_sym_enum_definition_token1, + [142089] = 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(3559), 1, ts_builtin_sym_end, - STATE(1904), 2, + STATE(1849), 2, sym_comment, sym_include, - ACTIONS(3173), 30, + ACTIONS(3072), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177657,19 +175654,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145368] = 6, + aux_sym_enum_definition_token1, + [142139] = 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(3561), 1, ts_builtin_sym_end, - STATE(1905), 2, + STATE(1850), 2, sym_comment, sym_include, - ACTIONS(3398), 30, + ACTIONS(3074), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177700,104 +175698,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145417] = 6, + aux_sym_enum_definition_token1, + [142189] = 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(3563), 1, ts_builtin_sym_end, - STATE(1906), 2, - sym_comment, - sym_include, - 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, - 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, - [145466] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1907), 2, - sym_comment, - sym_include, - 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, - 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, - [145513] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1908), 2, + STATE(1851), 2, sym_comment, sym_include, - ACTIONS(3390), 31, + ACTIONS(3076), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -177827,19 +175742,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145560] = 5, + aux_sym_enum_definition_token1, + [142239] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1909), 2, + ACTIONS(3565), 1, + ts_builtin_sym_end, + STATE(1852), 2, sym_comment, sym_include, - ACTIONS(3257), 31, + ACTIONS(3078), 31, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -177869,19 +175786,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145607] = 6, + aux_sym_enum_definition_token1, + [142289] = 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(3567), 1, ts_builtin_sym_end, - STATE(1910), 2, + STATE(1853), 2, sym_comment, sym_include, - ACTIONS(3304), 30, + ACTIONS(3080), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177912,19 +175830,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145656] = 6, + aux_sym_enum_definition_token1, + [142339] = 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(3569), 1, ts_builtin_sym_end, - STATE(1911), 2, + STATE(1854), 2, sym_comment, sym_include, - ACTIONS(3302), 30, + ACTIONS(3082), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177955,19 +175874,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145705] = 6, + aux_sym_enum_definition_token1, + [142389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3624), 1, + ACTIONS(3571), 1, ts_builtin_sym_end, - STATE(1912), 2, + STATE(1855), 2, sym_comment, sym_include, - ACTIONS(3300), 30, + ACTIONS(3084), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -177998,62 +175918,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145754] = 6, + aux_sym_enum_definition_token1, + [142439] = 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(3573), 1, ts_builtin_sym_end, - STATE(1913), 2, - sym_comment, - sym_include, - 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, - 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, - [145803] = 6, - 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(1914), 2, + STATE(1856), 2, sym_comment, sym_include, - ACTIONS(3185), 30, + ACTIONS(3086), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178084,19 +175962,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145852] = 6, + aux_sym_enum_definition_token1, + [142489] = 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(3575), 1, ts_builtin_sym_end, - STATE(1915), 2, + STATE(1857), 2, sym_comment, sym_include, - ACTIONS(3191), 30, + ACTIONS(3088), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178127,19 +176006,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145901] = 6, + aux_sym_enum_definition_token1, + [142539] = 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(3577), 1, ts_builtin_sym_end, - STATE(1916), 2, + STATE(1858), 2, sym_comment, sym_include, - ACTIONS(3298), 30, + ACTIONS(3092), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178170,19 +176050,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145950] = 6, + aux_sym_enum_definition_token1, + [142589] = 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(3579), 1, ts_builtin_sym_end, - STATE(1917), 2, + STATE(1859), 2, sym_comment, sym_include, - ACTIONS(3296), 30, + ACTIONS(3096), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178213,19 +176094,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145999] = 6, + aux_sym_enum_definition_token1, + [142639] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3581), 1, ts_builtin_sym_end, - STATE(1918), 2, + STATE(1860), 2, sym_comment, sym_include, - ACTIONS(3606), 30, + ACTIONS(3104), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178256,189 +176138,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146048] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_definition_token1, + [142689] = 12, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(3652), 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, - [146133] = 8, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1920), 2, - sym_comment, - sym_include, - ACTIONS(91), 27, + ACTIONS(1105), 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(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1208), 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, - 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(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(91), 27, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, 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(3660), 1, - sym__namecolon, - ACTIONS(93), 2, - sym__or_operator, - sym__and_operator, - STATE(1922), 3, + STATE(1861), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 27, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1210), 23, + 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, @@ -178449,64 +176185,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [146290] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3665), 1, - aux_sym_variable_tuning_token2, - STATE(1923), 2, - sym_comment, - sym_include, - 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, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [142751] = 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(3583), 1, ts_builtin_sym_end, - STATE(1924), 2, + STATE(1862), 2, sym_comment, sym_include, - ACTIONS(3193), 30, + ACTIONS(3118), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178537,19 +176232,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146388] = 6, + aux_sym_enum_definition_token1, + [142801] = 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(3585), 1, ts_builtin_sym_end, - STATE(1925), 2, + STATE(1863), 2, sym_comment, sym_include, - ACTIONS(3195), 30, + ACTIONS(3136), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178580,39 +176276,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, - [146437] = 8, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [142851] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + STATE(1864), 2, sym_comment, sym_include, - ACTIONS(91), 27, + ACTIONS(1204), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 25, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, @@ -178623,41 +176321,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [146490] = 8, - ACTIONS(3), 1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [142909] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(91), 27, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1865), 2, + sym_comment, + sym_include, + ACTIONS(1202), 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(2425), 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, @@ -178668,39 +176377,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [146543] = 7, - ACTIONS(3), 1, + [142975] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3671), 1, - sym__namecolon, - ACTIONS(93), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(761), 1, + sym__logical_operator, + STATE(763), 1, + sym__additive_operator, + STATE(764), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1928), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 27, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1866), 2, + sym_comment, + sym_include, + ACTIONS(1133), 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(2425), 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, @@ -178711,65 +176430,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, - 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(3674), 1, - ts_builtin_sym_end, - STATE(1929), 2, - sym_comment, - sym_include, - 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, - 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, - [146643] = 6, + [143043] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3676), 1, + ACTIONS(3587), 1, ts_builtin_sym_end, - STATE(1930), 2, + STATE(1867), 2, sym_comment, sym_include, - ACTIONS(3237), 30, + ACTIONS(3499), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -178800,46 +176473,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146692] = 13, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [143093] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - STATE(864), 1, + STATE(940), 1, sym__additive_operator, - STATE(866), 1, + STATE(941), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(944), 1, sym__comparison_operator, - ACTIONS(230), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1088), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1931), 2, + STATE(1868), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(232), 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, + ACTIONS(204), 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(2425), 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, @@ -178850,46 +176526,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [146755] = 13, - ACTIONS(3), 1, + [143159] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - STATE(864), 1, + STATE(940), 1, sym__additive_operator, - STATE(866), 1, + STATE(941), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(944), 1, sym__comparison_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1932), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1123), 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, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1869), 2, + sym_comment, + sym_include, + ACTIONS(1234), 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(2425), 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, @@ -178900,46 +176579,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [146818] = 13, - ACTIONS(3), 1, + [143227] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - STATE(864), 1, + STATE(940), 1, sym__additive_operator, - STATE(866), 1, + STATE(941), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(944), 1, sym__comparison_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1933), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1190), 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, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1870), 2, + sym_comment, + sym_include, + ACTIONS(1230), 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(2425), 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, @@ -178950,46 +176632,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [146881] = 13, - ACTIONS(3), 1, + [143295] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - STATE(864), 1, + STATE(940), 1, sym__additive_operator, - STATE(866), 1, + STATE(941), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(944), 1, sym__comparison_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1934), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1206), 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, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1871), 2, + sym_comment, + sym_include, + ACTIONS(1226), 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(2425), 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, @@ -179000,46 +176685,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [146944] = 13, - ACTIONS(3), 1, + [143363] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - STATE(864), 1, + STATE(940), 1, sym__additive_operator, - STATE(866), 1, + STATE(941), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(944), 1, sym__comparison_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1935), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1111), 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, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1872), 2, + sym_comment, + sym_include, + ACTIONS(1222), 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(2425), 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, @@ -179050,46 +176738,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147007] = 13, - ACTIONS(3), 1, + [143431] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(863), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - STATE(864), 1, + STATE(940), 1, sym__additive_operator, - STATE(866), 1, + STATE(941), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(944), 1, sym__comparison_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1936), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1198), 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, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1873), 2, + sym_comment, + sym_include, + ACTIONS(1218), 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(2425), 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, @@ -179100,63 +176791,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147070] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3678), 1, - ts_builtin_sym_end, - STATE(1937), 2, - sym_comment, - sym_include, - 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, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_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, - [147119] = 6, + [143499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3680), 1, - ts_builtin_sym_end, - STATE(1938), 2, + STATE(1874), 2, sym_comment, sym_include, - ACTIONS(3215), 30, + ACTIONS(2848), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -179186,41 +176833,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, - [147168] = 13, + aux_sym_enum_definition_token1, + [143547] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(891), 1, + ACTIONS(3589), 1, + aux_sym_when_expression_token1, + STATE(872), 1, sym__comparison_operator, - STATE(892), 1, + STATE(873), 1, sym__multiplicative_operator, - STATE(893), 1, + STATE(874), 1, sym__additive_operator, - STATE(894), 1, + STATE(877), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(4662), 1, + sym_when_expression, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1939), 2, + STATE(1875), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1202), 5, + ACTIONS(3175), 4, sym_identifier, sym__terminator, anon_sym_COMMA, - aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -179236,107 +176887,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147231] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [143615] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(891), 1, - sym__comparison_operator, - STATE(892), 1, - sym__multiplicative_operator, - STATE(893), 1, - sym__additive_operator, - STATE(894), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1212), 2, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1941), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1210), 5, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, - anon_sym_LT, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1876), 2, + sym_comment, + sym_include, + ACTIONS(1129), 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(2425), 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, @@ -179347,41 +176940,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147379] = 10, - ACTIONS(3), 1, + [143683] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(891), 1, - sym__comparison_operator, - STATE(892), 1, - sym__multiplicative_operator, - STATE(893), 1, - sym__additive_operator, - STATE(894), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - ACTIONS(1216), 2, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1942), 2, - sym_comment, - sym_include, - ACTIONS(1214), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1877), 2, + sym_comment, + sym_include, + ACTIONS(1214), 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(2425), 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, @@ -179392,44 +176993,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_scope_tuning_token1, - [147436] = 11, - ACTIONS(3), 1, + [143751] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(1121), 2, - sym__or_operator, - sym__and_operator, - STATE(1943), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(939), 1, + sym__logical_operator, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1119), 22, - sym_identifier, - sym__terminator, - anon_sym_COMMA, + STATE(1878), 2, + sym_comment, + sym_include, + ACTIONS(1210), 23, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -179440,48 +177038,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, - aux_sym_scope_tuning_token1, - [147495] = 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, + [143813] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(891), 1, - sym__comparison_operator, - STATE(892), 1, - sym__multiplicative_operator, - STATE(893), 1, - sym__additive_operator, - STATE(894), 1, + STATE(939), 1, sym__logical_operator, - ACTIONS(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1944), 2, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + STATE(1879), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1204), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 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(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, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -179492,46 +177086,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147558] = 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, + [143871] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(891), 1, - sym__comparison_operator, - STATE(892), 1, - sym__multiplicative_operator, - STATE(893), 1, - sym__additive_operator, - STATE(894), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(1945), 2, + STATE(1880), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - 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, + ACTIONS(1202), 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(2425), 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, @@ -179542,169 +177143,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147621] = 13, + [143937] = 6, 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(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, + ACTIONS(3591), 1, + ts_builtin_sym_end, + STATE(1881), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1198), 5, + ACTIONS(3165), 31, sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [147684] = 13, + 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, + aux_sym_enum_definition_token1, + [143987] = 6, 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(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(1947), 2, + ACTIONS(3593), 1, + ts_builtin_sym_end, + STATE(1882), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1206), 5, + ACTIONS(3193), 31, sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [147747] = 13, + 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, + aux_sym_enum_definition_token1, + [144037] = 6, 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(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(1948), 2, + ACTIONS(3595), 1, + ts_builtin_sym_end, + STATE(1883), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1111), 5, + ACTIONS(3195), 31, sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [147810] = 6, + 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, + aux_sym_enum_definition_token1, + [144087] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3704), 1, + ACTIONS(3597), 1, ts_builtin_sym_end, - STATE(1949), 2, + STATE(1884), 2, sym_comment, sym_include, - ACTIONS(3273), 30, + ACTIONS(2836), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -179735,19 +177318,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147859] = 6, + aux_sym_enum_definition_token1, + [144137] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3706), 1, + ACTIONS(3599), 1, ts_builtin_sym_end, - STATE(1950), 2, + STATE(1885), 2, sym_comment, sym_include, - ACTIONS(3271), 30, + ACTIONS(3199), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -179778,46 +177362,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147908] = 13, + aux_sym_enum_definition_token1, + [144187] = 5, 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(892), 1, - sym__multiplicative_operator, - STATE(893), 1, - sym__additive_operator, - STATE(894), 1, + STATE(1886), 2, + sym_comment, + sym_include, + ACTIONS(3601), 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, + [144235] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1887), 2, + sym_comment, + sym_include, + ACTIONS(3603), 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, + [144283] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(939), 1, sym__logical_operator, - ACTIONS(230), 2, + STATE(940), 1, + sym__additive_operator, + STATE(941), 1, + sym__multiplicative_operator, + STATE(944), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1088), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1951), 2, + STATE(1888), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(232), 5, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, - anon_sym_LT, + ACTIONS(1133), 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(2425), 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, @@ -179828,20 +177502,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [147971] = 6, + [144351] = 5, 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(1952), 2, + STATE(1889), 2, sym_comment, sym_include, - ACTIONS(3269), 30, + ACTIONS(2854), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -179871,20 +177544,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148020] = 6, + aux_sym_enum_definition_token1, + [144399] = 5, 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(1953), 2, + STATE(1890), 2, sym_comment, sym_include, - ACTIONS(3267), 30, + ACTIONS(2858), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -179914,20 +177587,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148069] = 6, + aux_sym_enum_definition_token1, + [144447] = 5, 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(1954), 2, + STATE(1891), 2, sym_comment, sym_include, - ACTIONS(3265), 30, + ACTIONS(2864), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -179957,20 +177630,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148118] = 6, + aux_sym_enum_definition_token1, + [144495] = 5, 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(1955), 2, + STATE(1892), 2, sym_comment, sym_include, - ACTIONS(3263), 30, + ACTIONS(2868), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180000,20 +177673,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148167] = 6, + aux_sym_enum_definition_token1, + [144543] = 5, 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(1956), 2, + STATE(1893), 2, sym_comment, sym_include, - ACTIONS(3247), 30, + ACTIONS(2918), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180043,20 +177716,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148216] = 6, + aux_sym_enum_definition_token1, + [144591] = 5, 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(1957), 2, + STATE(1894), 2, sym_comment, sym_include, - ACTIONS(3243), 30, + ACTIONS(2926), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180086,20 +177759,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148265] = 6, + aux_sym_enum_definition_token1, + [144639] = 5, 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(1958), 2, + STATE(1895), 2, sym_comment, sym_include, - ACTIONS(3241), 30, + ACTIONS(2930), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180129,20 +177802,20 @@ 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] = 6, + aux_sym_enum_definition_token1, + [144687] = 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(1959), 2, + STATE(1896), 2, sym_comment, sym_include, - ACTIONS(3239), 30, + ACTIONS(2934), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180172,20 +177845,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148363] = 6, + aux_sym_enum_definition_token1, + [144735] = 5, 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(1960), 2, + STATE(1897), 2, sym_comment, sym_include, - ACTIONS(3235), 30, + ACTIONS(2940), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180215,20 +177888,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148412] = 6, + aux_sym_enum_definition_token1, + [144783] = 5, 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(1961), 2, + STATE(1898), 2, sym_comment, sym_include, - ACTIONS(3233), 30, + ACTIONS(2944), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180258,20 +177931,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148461] = 6, + aux_sym_enum_definition_token1, + [144831] = 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(1962), 2, + STATE(1899), 2, sym_comment, sym_include, - ACTIONS(3231), 30, + ACTIONS(3124), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180301,19 +177974,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148510] = 6, + aux_sym_enum_definition_token1, + [144879] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(3605), 1, ts_builtin_sym_end, - STATE(1963), 2, + STATE(1900), 2, sym_comment, sym_include, - ACTIONS(3229), 30, + ACTIONS(3243), 31, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -180344,20 +178018,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148559] = 6, + aux_sym_enum_definition_token1, + [144929] = 5, 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(1964), 2, + STATE(1901), 2, sym_comment, sym_include, - ACTIONS(3227), 30, + ACTIONS(3012), 32, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180387,286 +178061,220 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148608] = 13, + aux_sym_enum_definition_token1, + [144977] = 6, 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(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, + ACTIONS(3607), 1, + ts_builtin_sym_end, + STATE(1902), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1123), 5, + ACTIONS(3247), 31, sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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(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_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, - 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, + aux_sym__case_terminator_token1, + aux_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, + aux_sym_enum_definition_token1, + [145027] = 9, 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(1967), 2, + ACTIONS(3607), 1, + ts_builtin_sym_end, + ACTIONS(3609), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3611), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3613), 1, + aux_sym_do_block_token1, + STATE(1903), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1194), 5, + ACTIONS(3247), 28, 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, + aux_sym_input_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, + aux_sym_enum_definition_token1, + [145083] = 6, 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(1121), 2, - sym__or_operator, - sym__and_operator, - STATE(1968), 2, + ACTIONS(3615), 1, + ts_builtin_sym_end, + STATE(1904), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1119), 22, + ACTIONS(3245), 31, 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_input_expression_token1, + aux_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, - [148856] = 10, + aux_sym__case_terminator_token1, + aux_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, + aux_sym_enum_definition_token1, + [145133] = 5, 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(1216), 2, - sym__or_operator, - sym__and_operator, - STATE(1969), 2, + STATE(1905), 2, sym_comment, sym_include, - ACTIONS(1214), 25, - anon_sym_SLASH, + ACTIONS(3064), 32, 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__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, - [148913] = 13, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + 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, + aux_sym_enum_definition_token1, + [145181] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(876), 1, sym__logical_operator, - STATE(864), 1, + STATE(878), 1, sym__additive_operator, - STATE(866), 1, + STATE(880), 1, sym__multiplicative_operator, - STATE(867), 1, + STATE(897), 1, sym__comparison_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1212), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(1970), 2, + STATE(1906), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1210), 5, + ACTIONS(3617), 5, sym_identifier, anon_sym_COMMA, aux_sym_input_expression_token2, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(1090), 15, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180682,19 +178290,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [148976] = 5, + [145244] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1971), 2, + ACTIONS(2842), 1, + ts_builtin_sym_end, + STATE(1907), 2, sym_comment, sym_include, - ACTIONS(3159), 30, + ACTIONS(2844), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180723,20 +178332,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149022] = 6, + aux_sym_enum_definition_token1, + [145293] = 5, 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(1972), 2, + STATE(1908), 2, sym_comment, sym_include, - ACTIONS(3296), 29, + ACTIONS(3295), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180765,105 +178374,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149070] = 8, + aux_sym_enum_definition_token1, + [145340] = 5, 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(1973), 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, - [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, + STATE(1909), 2, sym_comment, sym_include, - ACTIONS(3734), 30, - anon_sym_LBRACE, + ACTIONS(3291), 31, 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__block_terminator_token1, aux_sym_input_expression_token1, + aux_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_tuning_token1, - aux_sym_index_definition_token1, - [149168] = 6, + 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, + aux_sym_enum_definition_token1, + [145387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2853), 1, - ts_builtin_sym_end, - STATE(1975), 2, + STATE(1910), 2, sym_comment, sym_include, - ACTIONS(2855), 29, + ACTIONS(3114), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180892,64 +178458,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [145434] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, - ts_builtin_sym_end, - STATE(1977), 2, + STATE(1911), 2, sym_comment, sym_include, - ACTIONS(3352), 29, + ACTIONS(3116), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -180978,20 +178500,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149316] = 6, + aux_sym_enum_definition_token1, + [145481] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3584), 1, - ts_builtin_sym_end, - STATE(1978), 2, + STATE(1912), 2, sym_comment, sym_include, - ACTIONS(3358), 29, + 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, @@ -181020,40 +178542,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, - [149364] = 9, + aux_sym_enum_definition_token1, + [145528] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3584), 1, - ts_builtin_sym_end, - 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, + STATE(1913), 2, sym_comment, sym_include, - ACTIONS(3358), 26, + ACTIONS(3283), 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_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, @@ -181065,20 +178584,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149418] = 6, + aux_sym_enum_definition_token1, + [145575] = 5, 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(1980), 2, + STATE(1914), 2, sym_comment, sym_include, - ACTIONS(3356), 29, + ACTIONS(3134), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -181107,20 +178626,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149466] = 6, + aux_sym_enum_definition_token1, + [145622] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3744), 1, - ts_builtin_sym_end, - STATE(1981), 2, + STATE(1915), 2, sym_comment, sym_include, - ACTIONS(3746), 29, + 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, @@ -181149,20 +178668,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149514] = 6, + aux_sym_enum_definition_token1, + [145669] = 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(1982), 2, + STATE(1916), 2, sym_comment, sym_include, - ACTIONS(2857), 29, + 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, @@ -181191,20 +178710,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149562] = 6, + aux_sym_enum_definition_token1, + [145716] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3464), 1, - ts_builtin_sym_end, - STATE(1983), 2, + STATE(1917), 2, sym_comment, sym_include, - ACTIONS(2947), 29, + 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, @@ -181233,20 +178752,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149610] = 6, + aux_sym_enum_definition_token1, + [145763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2951), 1, - ts_builtin_sym_end, - STATE(1984), 2, + STATE(1918), 2, sym_comment, sym_include, - ACTIONS(2953), 29, + 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, @@ -181275,20 +178794,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149658] = 6, + aux_sym_enum_definition_token1, + [145810] = 5, 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(1985), 2, + STATE(1919), 2, sym_comment, sym_include, - ACTIONS(2859), 29, + 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, @@ -181317,20 +178836,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149706] = 6, + aux_sym_enum_definition_token1, + [145857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2957), 1, - ts_builtin_sym_end, - STATE(1986), 2, + STATE(1920), 2, sym_comment, sym_include, - ACTIONS(2959), 29, + 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, @@ -181359,20 +178878,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149754] = 6, + aux_sym_enum_definition_token1, + [145904] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3484), 1, - ts_builtin_sym_end, - STATE(1987), 2, + STATE(1921), 2, sym_comment, sym_include, - ACTIONS(2875), 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, @@ -181401,63 +178920,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149802] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - sym__namecolon, - ACTIONS(93), 2, - sym__or_operator, - sym__and_operator, - STATE(1988), 3, - sym_comment, - sym_include, - 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, + aux_sym_enum_definition_token1, + [145951] = 5, 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, + STATE(1922), 2, sym_comment, sym_include, - ACTIONS(2965), 29, + ACTIONS(2876), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -181486,20 +178962,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149900] = 6, + aux_sym_enum_definition_token1, + [145998] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2933), 1, - ts_builtin_sym_end, - STATE(1990), 2, + STATE(1923), 2, sym_comment, sym_include, - ACTIONS(2935), 29, + ACTIONS(3303), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -181528,63 +179004,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149948] = 8, + aux_sym_enum_definition_token1, + [146045] = 6, 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(1991), 2, - sym_comment, - sym_include, - ACTIONS(1579), 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, - [150000] = 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(3333), 1, ts_builtin_sym_end, - STATE(1992), 2, + STATE(1924), 2, sym_comment, sym_include, - ACTIONS(2861), 29, + ACTIONS(3112), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -181614,19 +179047,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150048] = 6, + aux_sym_enum_definition_token1, + [146094] = 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(3379), 1, ts_builtin_sym_end, - STATE(1993), 2, + STATE(1925), 2, sym_comment, sym_include, - ACTIONS(3287), 29, + ACTIONS(3130), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -181656,19 +179090,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150096] = 6, + aux_sym_enum_definition_token1, + [146143] = 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(3501), 1, ts_builtin_sym_end, - STATE(1994), 2, + STATE(1926), 2, sym_comment, sym_include, - ACTIONS(2973), 29, + ACTIONS(2998), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -181698,19 +179133,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150144] = 6, + aux_sym_enum_definition_token1, + [146192] = 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(3519), 1, ts_builtin_sym_end, - STATE(1995), 2, + STATE(1927), 2, sym_comment, sym_include, - ACTIONS(3354), 29, + ACTIONS(3026), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -181740,17 +179176,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150192] = 5, + aux_sym_enum_definition_token1, + [146241] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1996), 2, + STATE(1928), 2, sym_comment, sym_include, - ACTIONS(3039), 30, + ACTIONS(3112), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -181781,63 +179218,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150238] = 7, + aux_sym_enum_definition_token1, + [146288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, - sym__namecolon, - ACTIONS(93), 2, - sym__or_operator, - sym__and_operator, - STATE(1997), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 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, - [150288] = 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(1998), 2, + STATE(1929), 2, sym_comment, sym_include, - ACTIONS(2863), 29, + ACTIONS(3110), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -181866,20 +179260,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150336] = 6, + aux_sym_enum_definition_token1, + [146335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2975), 1, - ts_builtin_sym_end, - STATE(1999), 2, + STATE(1930), 2, sym_comment, sym_include, - ACTIONS(2977), 29, + ACTIONS(3309), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -181908,20 +179302,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150384] = 6, + aux_sym_enum_definition_token1, + [146382] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3474), 1, - ts_builtin_sym_end, - STATE(2000), 2, + STATE(1931), 2, sym_comment, sym_include, - ACTIONS(2865), 29, + 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, @@ -181950,20 +179344,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150432] = 6, + aux_sym_enum_definition_token1, + [146429] = 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(2001), 2, + STATE(1932), 2, sym_comment, sym_include, - ACTIONS(2867), 29, + 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, @@ -181992,65 +179386,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150480] = 9, + aux_sym_enum_definition_token1, + [146476] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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(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, + STATE(1933), 2, sym_comment, sym_include, - ACTIONS(2979), 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, @@ -182079,19 +179428,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150582] = 6, + aux_sym_enum_definition_token1, + [146523] = 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(3301), 1, ts_builtin_sym_end, - STATE(2004), 2, + STATE(1934), 2, sym_comment, sym_include, - ACTIONS(2869), 29, + ACTIONS(3303), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -182121,19 +179471,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150630] = 6, + aux_sym_enum_definition_token1, + [146572] = 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(3297), 1, ts_builtin_sym_end, - STATE(2005), 2, + STATE(1935), 2, sym_comment, sym_include, - ACTIONS(2871), 29, + ACTIONS(3299), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -182163,20 +179514,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, - [150678] = 6, + aux_sym_enum_definition_token1, + [146621] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3619), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3621), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3623), 1, + aux_sym_input_expression_token1, + ACTIONS(3631), 1, + aux_sym_variable_definition_token3, + ACTIONS(3633), 1, + aux_sym_variable_definition_token4, + ACTIONS(3635), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3637), 1, + aux_sym_query_definition_token1, + ACTIONS(3641), 1, + aux_sym_stream_definition_token1, + ACTIONS(3645), 1, + aux_sym_button_definition_token1, + STATE(3194), 1, + sym_access_tuning, + STATE(3219), 1, + sym_scope_tuning, + STATE(3234), 1, + aux_sym_variable_definition_repeat1, + STATE(3361), 1, + aux_sym_buffer_definition_repeat1, + STATE(3377), 1, + aux_sym_workfile_definition_repeat1, + STATE(3383), 1, + sym_serialization_tuning, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3643), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1936), 2, + sym_comment, + sym_include, + ACTIONS(3639), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [146706] = 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(2006), 2, + STATE(1937), 2, sym_comment, sym_include, - ACTIONS(2873), 29, + 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, @@ -182205,19 +179617,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150726] = 6, + aux_sym_enum_definition_token1, + [146753] = 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(3293), 1, ts_builtin_sym_end, - STATE(2007), 2, + STATE(1938), 2, sym_comment, sym_include, - ACTIONS(2877), 29, + ACTIONS(3295), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -182247,107 +179660,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150774] = 8, + aux_sym_enum_definition_token1, + [146802] = 6, 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(2008), 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, - [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, + ACTIONS(3555), 1, ts_builtin_sym_end, - STATE(2010), 2, + STATE(1939), 2, sym_comment, sym_include, - ACTIONS(2981), 29, + ACTIONS(3066), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -182377,17 +179703,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150926] = 5, + aux_sym_enum_definition_token1, + [146851] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2011), 2, + STATE(1940), 2, sym_comment, sym_include, - ACTIONS(3283), 30, + ACTIONS(3225), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -182418,69 +179745,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150972] = 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(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(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, + aux_sym_enum_definition_token1, + [146898] = 5, 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, + STATE(1941), 2, sym_comment, sym_include, - ACTIONS(2879), 29, + ACTIONS(3108), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -182509,20 +179787,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151082] = 6, + aux_sym_enum_definition_token1, + [146945] = 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(2014), 2, + STATE(1942), 2, sym_comment, sym_include, - ACTIONS(2881), 29, + ACTIONS(3106), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -182551,20 +179829,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151130] = 6, + aux_sym_enum_definition_token1, + [146992] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3492), 1, - ts_builtin_sym_end, - STATE(2015), 2, + STATE(1943), 2, sym_comment, sym_include, - ACTIONS(2883), 29, + ACTIONS(3102), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -182593,69 +179871,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151178] = 13, + aux_sym_enum_definition_token1, + [147039] = 5, 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(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(2017), 2, + STATE(1944), 2, sym_comment, sym_include, - ACTIONS(2983), 29, + 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, @@ -182684,17 +179913,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151288] = 5, + aux_sym_enum_definition_token1, + [147086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2018), 2, + STATE(1945), 2, sym_comment, sym_include, - ACTIONS(3281), 30, + ACTIONS(3211), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -182725,17 +179955,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151334] = 5, + aux_sym_enum_definition_token1, + [147133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2019), 2, + STATE(1946), 2, sym_comment, sym_include, - ACTIONS(3279), 30, + ACTIONS(3209), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -182766,17 +179997,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151380] = 5, + aux_sym_enum_definition_token1, + [147180] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2020), 2, + STATE(1947), 2, sym_comment, sym_include, - ACTIONS(3277), 30, + ACTIONS(3207), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -182807,19 +180039,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151426] = 5, + aux_sym_enum_definition_token1, + [147227] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2021), 2, + ACTIONS(3313), 1, + ts_builtin_sym_end, + STATE(1948), 2, sym_comment, sym_include, - ACTIONS(3275), 30, + ACTIONS(3110), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -182848,112 +180082,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, - [151472] = 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(2022), 2, - sym_comment, - sym_include, - ACTIONS(1579), 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, - [151524] = 13, + aux_sym_enum_definition_token1, + [147276] = 6, 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1212), 2, - sym__or_operator, - sym__and_operator, - STATE(2023), 2, + ACTIONS(3521), 1, + ts_builtin_sym_end, + STATE(1949), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1210), 4, + ACTIONS(3028), 30, sym_identifier, - sym__terminator, - anon_sym_COMMA, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [151586] = 5, + 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, + aux_sym_enum_definition_token1, + [147325] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2024), 2, + ACTIONS(3377), 1, + ts_builtin_sym_end, + STATE(1950), 2, sym_comment, sym_include, - ACTIONS(3261), 30, + ACTIONS(3132), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -182982,17 +180168,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151632] = 5, + aux_sym_enum_definition_token1, + [147374] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2025), 2, + STATE(1951), 2, sym_comment, sym_include, - ACTIONS(3259), 30, + ACTIONS(3205), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183023,17 +180210,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151678] = 5, + aux_sym_enum_definition_token1, + [147421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2026), 2, + STATE(1952), 2, sym_comment, sym_include, - ACTIONS(3257), 30, + ACTIONS(3203), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183064,17 +180252,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151724] = 5, + aux_sym_enum_definition_token1, + [147468] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2027), 2, + STATE(1953), 2, sym_comment, sym_include, - ACTIONS(3253), 30, + ACTIONS(3201), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183105,17 +180294,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151770] = 5, + aux_sym_enum_definition_token1, + [147515] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2028), 2, + STATE(1954), 2, sym_comment, sym_include, - ACTIONS(2969), 30, + ACTIONS(3197), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183146,17 +180336,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151816] = 5, + aux_sym_enum_definition_token1, + [147562] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2029), 2, + STATE(1955), 2, sym_comment, sym_include, - ACTIONS(3205), 30, + ACTIONS(3191), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183187,17 +180378,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151862] = 5, + aux_sym_enum_definition_token1, + [147609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2030), 2, + STATE(1956), 2, sym_comment, sym_include, - ACTIONS(3211), 30, + ACTIONS(3189), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183228,17 +180420,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151908] = 5, + aux_sym_enum_definition_token1, + [147656] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2031), 2, + STATE(1957), 2, sym_comment, sym_include, - ACTIONS(3386), 30, + ACTIONS(3100), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183269,65 +180462,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, - [151954] = 10, + aux_sym_enum_definition_token1, + [147703] = 5, 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(1216), 2, - sym__or_operator, - sym__and_operator, - STATE(2032), 2, + STATE(1958), 2, sym_comment, sym_include, - ACTIONS(1214), 24, - anon_sym_SLASH, + ACTIONS(3098), 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__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, aux_sym_scope_tuning_token1, - [152010] = 5, + 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, + aux_sym_enum_definition_token1, + [147750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2033), 2, + ACTIONS(3381), 1, + ts_builtin_sym_end, + STATE(1959), 2, sym_comment, sym_include, - ACTIONS(3390), 30, + ACTIONS(3128), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -183356,64 +180547,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152056] = 11, + aux_sym_enum_definition_token1, + [147799] = 6, 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(1121), 2, - sym__or_operator, - sym__and_operator, - STATE(2034), 2, + ACTIONS(3517), 1, + ts_builtin_sym_end, + STATE(1960), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1119), 21, + ACTIONS(3024), 30, 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_input_expression_token1, + aux_sym_class_type_token1, aux_sym_scope_tuning_token1, - [152114] = 5, + 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, + aux_sym_enum_definition_token1, + [147848] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2035), 2, + STATE(1961), 2, sym_comment, sym_include, - ACTIONS(3203), 30, + ACTIONS(3094), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183444,19 +180632,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152160] = 5, + aux_sym_enum_definition_token1, + [147895] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2036), 2, + ACTIONS(3597), 1, + ts_builtin_sym_end, + STATE(1962), 2, sym_comment, sym_include, - ACTIONS(3201), 30, + ACTIONS(2836), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -183485,60 +180675,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152206] = 5, + aux_sym_enum_definition_token1, + [147944] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2037), 2, + ACTIONS(3647), 1, + sym__namecolon, + ACTIONS(95), 2, + sym__or_operator, + sym__and_operator, + STATE(1963), 3, sym_comment, sym_include, - ACTIONS(3199), 30, + aux_sym_object_access_repeat1, + ACTIONS(97), 27, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + 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, - 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, - [152252] = 5, + [147995] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(81), 1, + sym__namedot, + ACTIONS(83), 1, + sym__namecolon, + ACTIONS(85), 1, + sym__namedoublecolon, + ACTIONS(3650), 1, + anon_sym_LPAREN, + STATE(6), 1, + aux_sym_object_access_repeat1, + STATE(17), 1, + aux_sym_qualified_name_repeat1, + STATE(20), 1, + aux_sym_member_access_repeat1, + STATE(26), 1, + sym_function_arguments, + STATE(1964), 2, + sym_comment, + sym_include, + ACTIONS(73), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, + [148062] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2038), 2, + ACTIONS(3375), 1, + ts_builtin_sym_end, + STATE(1965), 2, sym_comment, sym_include, - ACTIONS(3189), 30, + ACTIONS(3138), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -183567,40 +180814,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152298] = 13, + aux_sym_enum_definition_token1, + [148111] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(815), 1, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, sym__comparison_operator, - STATE(816), 1, + ACTIONS(204), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1966), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(206), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 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, + [148174] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, sym__multiplicative_operator, - STATE(817), 1, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1967), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1232), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 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, + [148237] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, sym__additive_operator, - STATE(818), 1, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1968), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1228), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 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, + [148300] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2039), 2, + STATE(1969), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1194), 4, + ACTIONS(1224), 5, sym_identifier, - sym__terminator, anon_sym_COMMA, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -183616,19 +181015,120 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [152360] = 5, + [148363] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2040), 2, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1970), 2, sym_comment, sym_include, - ACTIONS(3181), 30, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1220), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 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, + [148426] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(1971), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1216), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 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, + [148489] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3557), 1, + ts_builtin_sym_end, + STATE(1972), 2, + sym_comment, + sym_include, + ACTIONS(3070), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -183657,19 +181157,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152406] = 5, + aux_sym_enum_definition_token1, + [148538] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2041), 2, + ACTIONS(3289), 1, + ts_builtin_sym_end, + STATE(1973), 2, sym_comment, sym_include, - ACTIONS(3179), 30, + ACTIONS(3291), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -183698,17 +181200,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152452] = 5, + aux_sym_enum_definition_token1, + [148587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2042), 2, + STATE(1974), 2, sym_comment, sym_include, - ACTIONS(3177), 30, + ACTIONS(3090), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183739,19 +181242,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152498] = 5, + aux_sym_enum_definition_token1, + [148634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2043), 2, + ACTIONS(3559), 1, + ts_builtin_sym_end, + STATE(1975), 2, sym_comment, sym_include, - ACTIONS(3175), 30, + ACTIONS(3072), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -183780,17 +181285,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152544] = 5, + aux_sym_enum_definition_token1, + [148683] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2044), 2, + STATE(1976), 2, sym_comment, sym_include, - ACTIONS(3171), 30, + ACTIONS(3068), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183821,17 +181327,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152590] = 5, + aux_sym_enum_definition_token1, + [148730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2045), 2, + STATE(1977), 2, sym_comment, sym_include, - ACTIONS(3151), 30, + ACTIONS(3022), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183862,17 +181369,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152636] = 5, + aux_sym_enum_definition_token1, + [148777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2046), 2, + STATE(1978), 2, sym_comment, sym_include, - ACTIONS(3125), 30, + ACTIONS(3171), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183903,17 +181411,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152682] = 5, + aux_sym_enum_definition_token1, + [148824] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2047), 2, + STATE(1979), 2, sym_comment, sym_include, - ACTIONS(3117), 30, + ACTIONS(3169), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183944,17 +181453,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152728] = 5, + aux_sym_enum_definition_token1, + [148871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2048), 2, + STATE(1980), 2, sym_comment, sym_include, - ACTIONS(3113), 30, + ACTIONS(3167), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -183985,17 +181495,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152774] = 5, + aux_sym_enum_definition_token1, + [148918] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2049), 2, + STATE(1981), 2, sym_comment, sym_include, - ACTIONS(3109), 30, + ACTIONS(3163), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184026,17 +181537,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152820] = 5, + aux_sym_enum_definition_token1, + [148965] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2050), 2, + STATE(1982), 2, sym_comment, sym_include, - ACTIONS(3107), 30, + ACTIONS(3154), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184067,17 +181579,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152866] = 5, + aux_sym_enum_definition_token1, + [149012] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2051), 2, + STATE(1983), 2, sym_comment, sym_include, - ACTIONS(3105), 30, + ACTIONS(3152), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184108,17 +181621,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152912] = 5, + aux_sym_enum_definition_token1, + [149059] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2052), 2, + STATE(1984), 2, sym_comment, sym_include, - ACTIONS(3103), 30, + ACTIONS(3150), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184149,17 +181663,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152958] = 5, + aux_sym_enum_definition_token1, + [149106] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2053), 2, + STATE(1985), 2, sym_comment, sym_include, - ACTIONS(3101), 30, + ACTIONS(3148), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184190,17 +181705,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153004] = 5, + aux_sym_enum_definition_token1, + [149153] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2054), 2, + STATE(1986), 2, sym_comment, sym_include, - ACTIONS(3099), 30, + ACTIONS(3146), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184231,17 +181747,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153050] = 5, + aux_sym_enum_definition_token1, + [149200] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2055), 2, + STATE(1987), 2, sym_comment, sym_include, - ACTIONS(3095), 30, + ACTIONS(3144), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184272,69 +181789,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153096] = 13, + aux_sym_enum_definition_token1, + [149247] = 5, 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(2056), 2, + STATE(1988), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1115), 4, + ACTIONS(3142), 31, sym_identifier, - sym__terminator, - anon_sym_COMMA, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [153158] = 6, + 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, + aux_sym_enum_definition_token1, + [149294] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3494), 1, - ts_builtin_sym_end, - STATE(2057), 2, + STATE(1989), 2, sym_comment, sym_include, - ACTIONS(2885), 29, + ACTIONS(3140), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184363,20 +181873,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153206] = 6, + aux_sym_enum_definition_token1, + [149341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3496), 1, - ts_builtin_sym_end, - STATE(2058), 2, + STATE(1990), 2, sym_comment, sym_include, - ACTIONS(2887), 29, + ACTIONS(3138), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184405,19 +181915,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153254] = 5, + aux_sym_enum_definition_token1, + [149388] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3652), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3654), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3656), 1, + aux_sym_input_expression_token1, + ACTIONS(3658), 1, + aux_sym_variable_definition_token3, + ACTIONS(3660), 1, + aux_sym_variable_definition_token4, + ACTIONS(3662), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3664), 1, + aux_sym_query_definition_token1, + ACTIONS(3668), 1, + aux_sym_stream_definition_token1, + ACTIONS(3672), 1, + aux_sym_button_definition_token1, + STATE(3200), 1, + sym_access_tuning, + STATE(3219), 1, + sym_scope_tuning, + STATE(3239), 1, + aux_sym_variable_definition_repeat1, + STATE(3366), 1, + aux_sym_buffer_definition_repeat1, + STATE(3383), 1, + sym_serialization_tuning, + STATE(3394), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3670), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1991), 2, + sym_comment, + sym_include, + ACTIONS(3666), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [149473] = 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(3561), 1, + ts_builtin_sym_end, + STATE(1992), 2, sym_comment, sym_include, - ACTIONS(3065), 30, + ACTIONS(3074), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184446,19 +182019,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153300] = 5, + aux_sym_enum_definition_token1, + [149522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2060), 2, + ACTIONS(3373), 1, + ts_builtin_sym_end, + STATE(1993), 2, sym_comment, sym_include, - ACTIONS(3063), 30, + ACTIONS(3140), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184487,19 +182062,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153346] = 6, + aux_sym_enum_definition_token1, + [149571] = 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(3563), 1, ts_builtin_sym_end, - STATE(2061), 2, + STATE(1994), 2, sym_comment, sym_include, - ACTIONS(2889), 29, + ACTIONS(3076), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -184529,20 +182105,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153394] = 6, + aux_sym_enum_definition_token1, + [149620] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, - ts_builtin_sym_end, - STATE(2062), 2, + STATE(1995), 2, sym_comment, sym_include, - ACTIONS(2961), 29, + ACTIONS(3132), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184571,19 +182147,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153442] = 5, + aux_sym_enum_definition_token1, + [149667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2063), 2, + ACTIONS(3371), 1, + ts_builtin_sym_end, + STATE(1996), 2, sym_comment, sym_include, - ACTIONS(3059), 30, + ACTIONS(3142), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184612,19 +182190,20 @@ 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] = 6, + aux_sym_enum_definition_token1, + [149716] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2927), 1, + ACTIONS(3369), 1, ts_builtin_sym_end, - STATE(2064), 2, + STATE(1997), 2, sym_comment, sym_include, - ACTIONS(2851), 29, + ACTIONS(3144), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -184654,19 +182233,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153536] = 6, + aux_sym_enum_definition_token1, + [149765] = 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(3367), 1, ts_builtin_sym_end, - STATE(2065), 2, + STATE(1998), 2, sym_comment, sym_include, - ACTIONS(2891), 29, + ACTIONS(3146), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -184696,66 +182276,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153584] = 13, + aux_sym_enum_definition_token1, + [149814] = 5, 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(2066), 2, + STATE(1999), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1198), 4, + ACTIONS(3130), 31, sym_identifier, - sym__terminator, - anon_sym_COMMA, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [153646] = 5, + 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, + aux_sym_enum_definition_token1, + [149861] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2067), 2, + STATE(2000), 2, sym_comment, sym_include, - ACTIONS(3057), 30, + ACTIONS(3128), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184786,19 +182360,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153692] = 5, + aux_sym_enum_definition_token1, + [149908] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2068), 2, + ACTIONS(3365), 1, + ts_builtin_sym_end, + STATE(2001), 2, sym_comment, sym_include, - ACTIONS(3606), 30, + ACTIONS(3148), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -184827,66 +182403,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153738] = 13, + aux_sym_enum_definition_token1, + [149957] = 6, 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - STATE(2069), 2, + ACTIONS(3607), 1, + ts_builtin_sym_end, + STATE(2002), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1111), 4, + ACTIONS(3247), 30, sym_identifier, - sym__terminator, - anon_sym_COMMA, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [153800] = 5, + 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, + aux_sym_enum_definition_token1, + [150006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2070), 2, + STATE(2003), 2, sym_comment, sym_include, - ACTIONS(3051), 30, + ACTIONS(3126), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184917,17 +182488,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153846] = 5, + aux_sym_enum_definition_token1, + [150053] = 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(2004), 2, sym_comment, sym_include, - ACTIONS(3047), 30, + ACTIONS(3124), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184958,17 +182530,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153892] = 5, + aux_sym_enum_definition_token1, + [150100] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2072), 2, + STATE(2005), 2, sym_comment, sym_include, - ACTIONS(3043), 30, + ACTIONS(3317), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -184999,40 +182572,255 @@ 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] = 13, + aux_sym_enum_definition_token1, + [150147] = 9, 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(1088), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(3607), 1, + ts_builtin_sym_end, + ACTIONS(3674), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3676), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3678), 1, + aux_sym_do_block_token1, + STATE(2006), 2, + sym_comment, + sym_include, + ACTIONS(3247), 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_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_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, + aux_sym_enum_definition_token1, + [150202] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3682), 1, + aux_sym_variable_tuning_token2, + STATE(2007), 2, + sym_comment, + sym_include, + ACTIONS(3680), 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, + [150251] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3503), 1, + ts_builtin_sym_end, + STATE(2008), 2, + sym_comment, + sym_include, + ACTIONS(3000), 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_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, + aux_sym_enum_definition_token1, + [150300] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3615), 1, + ts_builtin_sym_end, + STATE(2009), 2, + sym_comment, + sym_include, + ACTIONS(3245), 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_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, + aux_sym_enum_definition_token1, + [150349] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, + sym__namecolon, + STATE(1963), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2073), 2, + STATE(2010), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(93), 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, - ACTIONS(1206), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [150402] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, + sym__namecolon, + STATE(1963), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, + sym__or_operator, + sym__and_operator, + STATE(2011), 2, + sym_comment, + sym_include, + ACTIONS(93), 27, + anon_sym_SLASH, sym_identifier, + anon_sym_STAR, sym__terminator, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, + 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, @@ -185048,40 +182836,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154000] = 13, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [150455] = 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, + STATE(876), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2074), 2, + STATE(2012), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1190), 4, + ACTIONS(1127), 5, sym_identifier, - sym__terminator, anon_sym_COMMA, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -185097,40 +182888,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154062] = 13, + [150518] = 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, + STATE(876), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2075), 2, + STATE(2013), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1123), 4, + ACTIONS(1212), 5, sym_identifier, - sym__terminator, anon_sym_COMMA, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -185146,40 +182938,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154124] = 13, + [150581] = 11, 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, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, sym__additive_operator, - STATE(818), 1, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1210), 2, + sym__or_operator, + sym__and_operator, + STATE(2014), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1208), 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, + [150640] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, sym__logical_operator, - ACTIONS(230), 2, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1206), 2, sym__or_operator, sym__and_operator, - ACTIONS(1088), 2, + STATE(2015), 2, + sym_comment, + sym_include, + ACTIONS(1204), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2076), 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, + [150697] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym__logical_operator, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1202), 2, + sym__or_operator, + sym__and_operator, + STATE(2016), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(232), 4, + ACTIONS(1200), 5, sym_identifier, - sym__terminator, anon_sym_COMMA, - aux_sym_scope_tuning_token1, - ACTIONS(1090), 15, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -185195,20 +183083,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154186] = 6, + [150760] = 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(2077), 2, + STATE(2017), 2, sym_comment, sym_include, - ACTIONS(2893), 29, + ACTIONS(2844), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -185237,17 +183124,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154234] = 5, + aux_sym_enum_definition_token1, + [150807] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2078), 2, + STATE(2018), 2, sym_comment, sym_include, - ACTIONS(2871), 30, + ACTIONS(2848), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185278,19 +183166,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154280] = 5, + aux_sym_enum_definition_token1, + [150854] = 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(3363), 1, + ts_builtin_sym_end, + STATE(2019), 2, sym_comment, sym_include, - ACTIONS(3035), 30, + ACTIONS(3150), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -185319,17 +183209,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154326] = 5, + aux_sym_enum_definition_token1, + [150903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2080), 2, + STATE(2020), 2, sym_comment, sym_include, - ACTIONS(3033), 30, + ACTIONS(2850), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185360,17 +183251,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154372] = 5, + aux_sym_enum_definition_token1, + [150950] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2081), 2, + STATE(2021), 2, sym_comment, sym_include, - ACTIONS(3031), 30, + ACTIONS(2854), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185401,17 +183293,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154418] = 5, + aux_sym_enum_definition_token1, + [150997] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2082), 2, + STATE(2022), 2, sym_comment, sym_include, - ACTIONS(3029), 30, + ACTIONS(2858), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185442,17 +183335,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154464] = 5, + aux_sym_enum_definition_token1, + [151044] = 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(2023), 2, sym_comment, sym_include, - ACTIONS(3025), 30, + ACTIONS(2860), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185483,17 +183377,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154510] = 5, + aux_sym_enum_definition_token1, + [151091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2084), 2, + STATE(2024), 2, sym_comment, sym_include, - ACTIONS(3023), 30, + ACTIONS(2864), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185524,17 +183419,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154556] = 5, + aux_sym_enum_definition_token1, + [151138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2085), 2, + STATE(2025), 2, sym_comment, sym_include, - ACTIONS(3001), 30, + ACTIONS(2868), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185565,17 +183461,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154602] = 5, + aux_sym_enum_definition_token1, + [151185] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2086), 2, + STATE(2026), 2, sym_comment, sym_include, - ACTIONS(2999), 30, + ACTIONS(2870), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185606,19 +183503,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154648] = 5, + aux_sym_enum_definition_token1, + [151232] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2087), 2, + ACTIONS(3361), 1, + ts_builtin_sym_end, + STATE(2027), 2, sym_comment, sym_include, - ACTIONS(2997), 30, + ACTIONS(3152), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -185647,17 +183546,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154694] = 5, + aux_sym_enum_definition_token1, + [151281] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2088), 2, + STATE(2028), 2, sym_comment, sym_include, - ACTIONS(2995), 30, + ACTIONS(2872), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185688,19 +183588,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, - [154740] = 5, + aux_sym_enum_definition_token1, + [151328] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(81), 1, + sym__namedot, + ACTIONS(83), 1, + sym__namecolon, + ACTIONS(85), 1, + sym__namedoublecolon, + ACTIONS(3684), 1, + anon_sym_LPAREN, + STATE(6), 1, + aux_sym_object_access_repeat1, + STATE(17), 1, + aux_sym_qualified_name_repeat1, + STATE(20), 1, + aux_sym_member_access_repeat1, + STATE(26), 1, + sym_function_arguments, + STATE(2029), 2, + sym_comment, + sym_include, + ACTIONS(73), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, + [151395] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2089), 2, + ACTIONS(3686), 1, + ts_builtin_sym_end, + STATE(2030), 2, sym_comment, sym_include, - ACTIONS(2991), 30, + ACTIONS(3688), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -185729,17 +183683,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, - [154786] = 5, + aux_sym_enum_definition_token1, + [151444] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2031), 2, + sym_comment, + sym_include, + ACTIONS(1133), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [151511] = 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(2032), 2, sym_comment, sym_include, - ACTIONS(2989), 30, + ACTIONS(2874), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185770,19 +183777,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154832] = 6, + aux_sym_enum_definition_token1, + [151558] = 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(3359), 1, ts_builtin_sym_end, - STATE(2091), 2, + STATE(2033), 2, sym_comment, sym_include, - ACTIONS(2987), 29, + ACTIONS(3154), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -185812,17 +183820,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154880] = 5, + aux_sym_enum_definition_token1, + [151607] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2092), 2, + STATE(2034), 2, sym_comment, sym_include, - ACTIONS(2987), 30, + ACTIONS(2944), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -185853,306 +183862,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154926] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(2093), 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, - 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, - [154988] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(1212), 2, - sym__or_operator, - sym__and_operator, - STATE(2094), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1210), 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, - [155050] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(1214), 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, - [155106] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1119), 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_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(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(2097), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - 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, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [155226] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(2098), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1115), 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, - [155288] = 5, + aux_sym_enum_definition_token1, + [151654] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2099), 2, + STATE(2035), 2, sym_comment, sym_include, - ACTIONS(2983), 30, + ACTIONS(2878), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -186183,19 +183904,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155334] = 5, + aux_sym_enum_definition_token1, + [151701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2100), 2, + ACTIONS(3357), 1, + ts_builtin_sym_end, + STATE(2036), 2, sym_comment, sym_include, - ACTIONS(2981), 30, + 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, @@ -186224,62 +183947,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [151750] = 5, 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(2102), 2, + STATE(2037), 2, sym_comment, sym_include, - ACTIONS(2895), 29, + ACTIONS(2880), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -186308,17 +183989,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155476] = 5, + aux_sym_enum_definition_token1, + [151797] = 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(2038), 2, sym_comment, sym_include, - ACTIONS(2979), 30, + ACTIONS(2882), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -186349,20 +184031,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155522] = 6, + aux_sym_enum_definition_token1, + [151844] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3454), 1, - ts_builtin_sym_end, - STATE(2104), 2, + STATE(2039), 2, sym_comment, sym_include, - ACTIONS(2989), 29, + ACTIONS(2884), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -186391,71 +184073,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [151891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2106), 2, + STATE(2040), 2, sym_comment, sym_include, - ACTIONS(2977), 30, + ACTIONS(2886), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -186486,213 +184115,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155688] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1198), 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, - [155750] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1111), 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, - [155812] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(2109), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1206), 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, - [155874] = 13, + aux_sym_enum_definition_token1, + [151938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2041), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1190), 4, + ACTIONS(2888), 31, sym_identifier, - sym__terminator, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [155936] = 5, + 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, + aux_sym_enum_definition_token1, + [151985] = 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(2042), 2, sym_comment, sym_include, - ACTIONS(2973), 30, + ACTIONS(2890), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -186723,17 +184199,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155982] = 5, + aux_sym_enum_definition_token1, + [152032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2112), 2, + STATE(2043), 2, sym_comment, sym_include, - ACTIONS(2935), 30, + ACTIONS(2892), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -186764,17 +184241,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156028] = 5, + aux_sym_enum_definition_token1, + [152079] = 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(2044), 2, sym_comment, sym_include, - ACTIONS(2965), 30, + ACTIONS(2894), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -186805,122 +184283,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156074] = 18, - ACTIONS(67), 1, + aux_sym_enum_definition_token1, + [152126] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3759), 1, - anon_sym_COMMA, - 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, - STATE(2114), 2, + STATE(2045), 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, - [156146] = 13, + ACTIONS(2896), 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_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, + aux_sym_enum_definition_token1, + [152173] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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(2115), 2, + STATE(2046), 2, sym_comment, sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1123), 4, + ACTIONS(2898), 31, sym_identifier, - sym__terminator, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_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, - [156208] = 5, + 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, + aux_sym_enum_definition_token1, + [152220] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2116), 2, + ACTIONS(3565), 1, + ts_builtin_sym_end, + STATE(2047), 2, sym_comment, sym_include, - ACTIONS(2961), 30, + ACTIONS(3078), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -186949,19 +184410,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156254] = 5, + aux_sym_enum_definition_token1, + [152269] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2117), 2, + ACTIONS(3355), 1, + ts_builtin_sym_end, + STATE(2048), 2, sym_comment, sym_include, - ACTIONS(2959), 30, + 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, @@ -186990,19 +184453,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, - [156300] = 5, + aux_sym_enum_definition_token1, + [152318] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(81), 1, + sym__namedot, + ACTIONS(83), 1, + sym__namecolon, + ACTIONS(85), 1, + sym__namedoublecolon, + ACTIONS(3690), 1, + anon_sym_LPAREN, + STATE(6), 1, + aux_sym_object_access_repeat1, + STATE(17), 1, + aux_sym_qualified_name_repeat1, + STATE(20), 1, + aux_sym_member_access_repeat1, + STATE(26), 1, + sym_function_arguments, + STATE(2049), 2, + sym_comment, + sym_include, + ACTIONS(73), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, + [152385] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2118), 2, + ACTIONS(3505), 1, + ts_builtin_sym_end, + STATE(2050), 2, sym_comment, sym_include, - ACTIONS(2953), 30, + ACTIONS(3002), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187031,19 +184548,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156346] = 5, + aux_sym_enum_definition_token1, + [152434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2119), 2, + ACTIONS(3497), 1, + ts_builtin_sym_end, + STATE(2051), 2, sym_comment, sym_include, - ACTIONS(2947), 30, + ACTIONS(2996), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187072,19 +184591,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156392] = 5, + aux_sym_enum_definition_token1, + [152483] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2120), 2, + ACTIONS(3567), 1, + ts_builtin_sym_end, + STATE(2052), 2, sym_comment, sym_include, - ACTIONS(3352), 30, + ACTIONS(3080), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187113,17 +184634,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156438] = 5, + aux_sym_enum_definition_token1, + [152532] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2121), 2, + STATE(2053), 2, sym_comment, sym_include, - ACTIONS(2855), 30, + ACTIONS(2900), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187154,17 +184676,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156484] = 5, + aux_sym_enum_definition_token1, + [152579] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2122), 2, + STATE(2054), 2, sym_comment, sym_include, - ACTIONS(2857), 30, + ACTIONS(2902), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187195,17 +184718,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156530] = 5, + aux_sym_enum_definition_token1, + [152626] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2123), 2, + STATE(2055), 2, sym_comment, sym_include, - ACTIONS(2859), 30, + ACTIONS(2904), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187236,19 +184760,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156576] = 5, + aux_sym_enum_definition_token1, + [152673] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2124), 2, + ACTIONS(3569), 1, + ts_builtin_sym_end, + STATE(2056), 2, sym_comment, sym_include, - ACTIONS(2861), 30, + ACTIONS(3082), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187277,19 +184803,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156622] = 5, + aux_sym_enum_definition_token1, + [152722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2125), 2, + ACTIONS(3307), 1, + ts_builtin_sym_end, + STATE(2057), 2, sym_comment, sym_include, - ACTIONS(2863), 30, + ACTIONS(3309), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187318,17 +184846,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, - [156668] = 5, + aux_sym_enum_definition_token1, + [152771] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2126), 2, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2058), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1131), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [152834] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2059), 2, sym_comment, sym_include, - ACTIONS(2865), 30, + ACTIONS(2906), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187359,17 +184938,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156714] = 5, + aux_sym_enum_definition_token1, + [152881] = 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(2060), 2, sym_comment, sym_include, - ACTIONS(2867), 30, + ACTIONS(2908), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187400,19 +184980,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156760] = 5, + aux_sym_enum_definition_token1, + [152928] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2128), 2, + ACTIONS(3319), 1, + ts_builtin_sym_end, + STATE(2061), 2, sym_comment, sym_include, - ACTIONS(2869), 30, + 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, @@ -187441,45 +185023,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156806] = 13, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [152977] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(81), 1, + sym__namedot, + ACTIONS(83), 1, + sym__namecolon, + ACTIONS(85), 1, + sym__namedoublecolon, + ACTIONS(3692), 1, + anon_sym_LPAREN, + STATE(6), 1, + aux_sym_object_access_repeat1, + STATE(17), 1, + aux_sym_qualified_name_repeat1, + STATE(20), 1, + aux_sym_member_access_repeat1, + STATE(26), 1, + sym_function_arguments, + STATE(2062), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(73), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 19, + sym__or_operator, + sym__and_operator, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(232), 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, @@ -187490,19 +185076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [156868] = 6, + [153044] = 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(3353), 1, ts_builtin_sym_end, - STATE(2130), 2, + STATE(2063), 2, sym_comment, sym_include, - ACTIONS(2991), 29, + ACTIONS(3169), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -187532,20 +185118,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156916] = 6, + aux_sym_enum_definition_token1, + [153093] = 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(2131), 2, + STATE(2064), 2, sym_comment, sym_include, - ACTIONS(2897), 29, + ACTIONS(2910), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187574,90 +185160,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156964] = 7, + aux_sym_enum_definition_token1, + [153140] = 5, 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(2132), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2065), 2, sym_comment, sym_include, - ACTIONS(91), 27, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2912), 31, 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, - [157014] = 18, - ACTIONS(67), 1, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [153187] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3351), 1, + ts_builtin_sym_end, + STATE(2066), 2, + sym_comment, + sym_include, + 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, + 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, + aux_sym_enum_definition_token1, + [153236] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(77), 1, + anon_sym_LBRACK, + ACTIONS(81), 1, + sym__namedot, + ACTIONS(83), 1, + sym__namecolon, + ACTIONS(85), 1, + sym__namedoublecolon, + ACTIONS(3694), 1, + anon_sym_LPAREN, + STATE(6), 1, + aux_sym_object_access_repeat1, + STATE(17), 1, + aux_sym_qualified_name_repeat1, + STATE(20), 1, + aux_sym_member_access_repeat1, + STATE(26), 1, + sym_function_arguments, + STATE(2067), 2, + sym_comment, + sym_include, + ACTIONS(73), 3, 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, + ACTIONS(67), 19, 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, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -187671,103 +185298,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [157086] = 5, + [153303] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3775), 1, - sym__escaped_string, - STATE(2134), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + ts_builtin_sym_end, + STATE(2068), 2, sym_comment, sym_include, - ACTIONS(3773), 30, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(3235), 30, 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_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_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, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_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, + aux_sym_enum_definition_token1, + [153352] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2136), 2, + ACTIONS(3571), 1, + ts_builtin_sym_end, + STATE(2069), 2, sym_comment, sym_include, - ACTIONS(3005), 30, + ACTIONS(3084), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -187796,17 +185383,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157228] = 5, + aux_sym_enum_definition_token1, + [153401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2137), 2, + STATE(2070), 2, sym_comment, sym_include, - ACTIONS(2873), 30, + ACTIONS(2914), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187837,17 +185425,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157274] = 5, + aux_sym_enum_definition_token1, + [153448] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2138), 2, + STATE(2071), 2, sym_comment, sym_include, - ACTIONS(2875), 30, + ACTIONS(2918), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187878,17 +185467,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157320] = 5, + aux_sym_enum_definition_token1, + [153495] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2139), 2, + STATE(2072), 2, sym_comment, sym_include, - ACTIONS(2877), 30, + ACTIONS(2920), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187919,17 +185509,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157366] = 5, + aux_sym_enum_definition_token1, + [153542] = 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(2073), 2, sym_comment, sym_include, - ACTIONS(2879), 30, + ACTIONS(2922), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -187960,19 +185551,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157412] = 5, + aux_sym_enum_definition_token1, + [153589] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2141), 2, + ACTIONS(3323), 1, + ts_builtin_sym_end, + STATE(2074), 2, sym_comment, sym_include, - ACTIONS(2881), 30, + 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, @@ -188001,17 +185594,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157458] = 5, + aux_sym_enum_definition_token1, + [153638] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2142), 2, + STATE(2075), 2, sym_comment, sym_include, - ACTIONS(2883), 30, + ACTIONS(2926), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188042,17 +185636,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157504] = 5, + aux_sym_enum_definition_token1, + [153685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2143), 2, + STATE(2076), 2, sym_comment, sym_include, - ACTIONS(2885), 30, + ACTIONS(2930), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188083,17 +185678,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157550] = 5, + aux_sym_enum_definition_token1, + [153732] = 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(2077), 2, sym_comment, sym_include, - ACTIONS(2887), 30, + ACTIONS(2934), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188124,17 +185720,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157596] = 5, + aux_sym_enum_definition_token1, + [153779] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2145), 2, + STATE(2078), 2, sym_comment, sym_include, - ACTIONS(2889), 30, + ACTIONS(2936), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188165,61 +185762,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157642] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3779), 1, - sym__escaped_string, - STATE(2146), 2, - sym_comment, - sym_include, - ACTIONS(3777), 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, - [157688] = 6, + aux_sym_enum_definition_token1, + [153826] = 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(2147), 2, + STATE(2079), 2, sym_comment, sym_include, - ACTIONS(2995), 29, + ACTIONS(2940), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188248,20 +185804,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157736] = 6, + aux_sym_enum_definition_token1, + [153873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - ts_builtin_sym_end, - STATE(2148), 2, + STATE(2080), 2, sym_comment, sym_include, - ACTIONS(2997), 29, + ACTIONS(3044), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188290,74 +185846,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157784] = 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(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, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2149), 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, - [157856] = 6, + aux_sym_enum_definition_token1, + [153920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3446), 1, - ts_builtin_sym_end, - STATE(2150), 2, + STATE(2081), 2, sym_comment, sym_include, - ACTIONS(2999), 29, + ACTIONS(2946), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188386,20 +185888,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157904] = 6, + aux_sym_enum_definition_token1, + [153967] = 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(2151), 2, + STATE(2082), 2, sym_comment, sym_include, - ACTIONS(3001), 29, + ACTIONS(2948), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188428,17 +185930,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157952] = 5, + aux_sym_enum_definition_token1, + [154014] = 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(2083), 2, sym_comment, sym_include, - ACTIONS(2891), 30, + ACTIONS(2950), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188469,17 +185972,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157998] = 5, + aux_sym_enum_definition_token1, + [154061] = 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(2084), 2, sym_comment, sym_include, - ACTIONS(2893), 30, + ACTIONS(2952), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188510,20 +186014,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158044] = 6, + aux_sym_enum_definition_token1, + [154108] = 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(2154), 2, + STATE(2085), 2, sym_comment, sym_include, - ACTIONS(2899), 29, + ACTIONS(2954), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188552,20 +186056,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158092] = 6, + aux_sym_enum_definition_token1, + [154155] = 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(2155), 2, + STATE(2086), 2, sym_comment, sym_include, - ACTIONS(3023), 29, + ACTIONS(2956), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188594,20 +186098,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158140] = 6, + aux_sym_enum_definition_token1, + [154202] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3438), 1, - ts_builtin_sym_end, - STATE(2156), 2, + STATE(2087), 2, sym_comment, sym_include, - ACTIONS(3025), 29, + ACTIONS(2958), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188636,20 +186140,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158188] = 6, + aux_sym_enum_definition_token1, + [154249] = 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(2157), 2, + STATE(2088), 2, sym_comment, sym_include, - ACTIONS(3029), 29, + ACTIONS(2960), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188678,20 +186182,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158236] = 6, + aux_sym_enum_definition_token1, + [154296] = 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(2158), 2, + STATE(2089), 2, sym_comment, sym_include, - ACTIONS(3031), 29, + ACTIONS(2962), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188720,17 +186224,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158284] = 5, + aux_sym_enum_definition_token1, + [154343] = 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(2090), 2, sym_comment, sym_include, - ACTIONS(2895), 30, + ACTIONS(2964), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188761,17 +186266,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158330] = 5, + aux_sym_enum_definition_token1, + [154390] = 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(2091), 2, sym_comment, sym_include, - ACTIONS(2897), 30, + ACTIONS(2966), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -188802,19 +186308,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158376] = 6, + aux_sym_enum_definition_token1, + [154437] = 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(3507), 1, ts_builtin_sym_end, - STATE(2161), 2, + STATE(2092), 2, sym_comment, sym_include, - ACTIONS(3033), 29, + ACTIONS(3004), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -188844,19 +186351,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, - [158424] = 6, + aux_sym_enum_definition_token1, + [154486] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2901), 1, + ACTIONS(2709), 1, + sym__namecolon, + STATE(2216), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, + sym__or_operator, + sym__and_operator, + STATE(2093), 2, + sym_comment, + sym_include, + ACTIONS(93), 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, + [154539] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, ts_builtin_sym_end, - STATE(2162), 2, + STATE(2094), 2, sym_comment, sym_include, - ACTIONS(2903), 29, + ACTIONS(3008), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -188886,20 +186439,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158472] = 6, + aux_sym_enum_definition_token1, + [154588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, - ts_builtin_sym_end, - STATE(2163), 2, + STATE(2095), 2, sym_comment, sym_include, - ACTIONS(3035), 29, + ACTIONS(2968), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188928,20 +186481,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158520] = 6, + aux_sym_enum_definition_token1, + [154635] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3620), 1, - ts_builtin_sym_end, - STATE(2164), 2, + STATE(2096), 2, sym_comment, sym_include, - ACTIONS(3304), 29, + ACTIONS(2970), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -188970,17 +186523,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, - [158568] = 5, + aux_sym_enum_definition_token1, + [154682] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2165), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2097), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1131), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 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, + [154745] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1202), 2, + sym__or_operator, + sym__and_operator, + STATE(2098), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1200), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 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, + [154808] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2099), 2, sym_comment, sym_include, - ACTIONS(2899), 30, + ACTIONS(2972), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189011,141 +186665,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158614] = 5, + aux_sym_enum_definition_token1, + [154855] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2166), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1206), 2, + sym__or_operator, + sym__and_operator, + STATE(2100), 2, sym_comment, sym_include, - ACTIONS(2903), 30, + ACTIONS(1204), 25, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + 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_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, - [158660] = 6, + [154912] = 11, 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(2167), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1210), 2, + sym__or_operator, + sym__and_operator, + STATE(2101), 2, sym_comment, sym_include, - ACTIONS(2905), 29, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1208), 22, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + 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, 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, - [158708] = 5, + [154971] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2168), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2102), 2, sym_comment, sym_include, - ACTIONS(2905), 30, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1212), 5, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_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, - [158754] = 5, + ACTIONS(1109), 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, + [155034] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2169), 2, + STATE(2103), 2, sym_comment, sym_include, - ACTIONS(2907), 30, + ACTIONS(2974), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189176,17 +186852,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158800] = 5, + aux_sym_enum_definition_token1, + [155081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2170), 2, + STATE(2104), 2, sym_comment, sym_include, - ACTIONS(2911), 30, + ACTIONS(2976), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189217,17 +186894,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, - [158846] = 5, + aux_sym_enum_definition_token1, + [155128] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2171), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2105), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1127), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 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, + [155191] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2106), 2, sym_comment, sym_include, - ACTIONS(2915), 30, + ACTIONS(2978), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189258,17 +186986,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158892] = 5, + aux_sym_enum_definition_token1, + [155238] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2172), 2, + STATE(2107), 2, sym_comment, sym_include, - ACTIONS(2919), 30, + ACTIONS(2980), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189299,17 +187028,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158938] = 5, + aux_sym_enum_definition_token1, + [155285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2173), 2, + STATE(2108), 2, sym_comment, sym_include, - ACTIONS(2921), 30, + ACTIONS(3299), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189340,19 +187070,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158984] = 5, + aux_sym_enum_definition_token1, + [155332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2174), 2, + ACTIONS(3383), 1, + ts_builtin_sym_end, + STATE(2109), 2, sym_comment, sym_include, - ACTIONS(2925), 30, + ACTIONS(3126), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -189381,19 +187113,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159030] = 5, + aux_sym_enum_definition_token1, + [155381] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2175), 2, + ACTIONS(3595), 1, + ts_builtin_sym_end, + STATE(2110), 2, sym_comment, sym_include, - ACTIONS(2851), 30, + 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, @@ -189422,19 +187156,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159076] = 5, + aux_sym_enum_definition_token1, + [155430] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2176), 2, + ACTIONS(3523), 1, + ts_builtin_sym_end, + STATE(2111), 2, sym_comment, sym_include, - ACTIONS(2929), 30, + ACTIONS(3030), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -189463,19 +187199,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159122] = 5, + aux_sym_enum_definition_token1, + [155479] = 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(3062), 1, + ts_builtin_sym_end, + STATE(2112), 2, sym_comment, sym_include, - ACTIONS(2931), 30, + ACTIONS(3064), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -189504,19 +187242,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159168] = 6, + aux_sym_enum_definition_token1, + [155528] = 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(3573), 1, ts_builtin_sym_end, - STATE(2178), 2, + STATE(2113), 2, sym_comment, sym_include, - ACTIONS(2907), 29, + ACTIONS(3086), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -189546,20 +187285,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159216] = 6, + aux_sym_enum_definition_token1, + [155577] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3622), 1, - ts_builtin_sym_end, - STATE(2179), 2, + STATE(2114), 2, sym_comment, sym_include, - ACTIONS(3302), 29, + ACTIONS(2982), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -189588,58 +187327,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, - [159264] = 5, + aux_sym_enum_definition_token1, + [155624] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2180), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2115), 2, sym_comment, sym_include, - ACTIONS(2937), 30, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1216), 5, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_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, - [159310] = 5, + ACTIONS(1109), 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, + [155687] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2181), 2, + STATE(2116), 2, sym_comment, sym_include, - ACTIONS(2939), 30, + ACTIONS(2984), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189670,20 +187419,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159356] = 6, + aux_sym_enum_definition_token1, + [155734] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, - ts_builtin_sym_end, - STATE(2182), 2, + STATE(2117), 2, sym_comment, sym_include, - ACTIONS(2911), 29, + ACTIONS(2986), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -189712,20 +187461,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159404] = 6, + aux_sym_enum_definition_token1, + [155781] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2913), 1, - ts_builtin_sym_end, - STATE(2183), 2, + STATE(2118), 2, sym_comment, sym_include, - ACTIONS(2915), 29, + ACTIONS(2988), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -189754,92 +187503,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159452] = 6, + aux_sym_enum_definition_token1, + [155828] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2917), 1, - ts_builtin_sym_end, - STATE(2184), 2, - sym_comment, - sym_include, - ACTIONS(2919), 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, - [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, + STATE(872), 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, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2185), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2119), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1220), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 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, @@ -189850,17 +187554,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [159572] = 5, + [155891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2186), 2, + STATE(2120), 2, sym_comment, sym_include, - ACTIONS(2941), 30, + ACTIONS(2990), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189891,17 +187595,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159618] = 5, + aux_sym_enum_definition_token1, + [155938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2187), 2, + STATE(2121), 2, sym_comment, sym_include, - ACTIONS(2943), 30, + ACTIONS(2992), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189932,17 +187637,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159664] = 5, + aux_sym_enum_definition_token1, + [155985] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2188), 2, + STATE(2122), 2, sym_comment, sym_include, - ACTIONS(2945), 30, + ACTIONS(2994), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -189973,17 +187679,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159710] = 5, + aux_sym_enum_definition_token1, + [156032] = 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(2123), 2, sym_comment, sym_include, - ACTIONS(2949), 30, + ACTIONS(2996), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -190014,58 +187721,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, - [159756] = 5, + aux_sym_enum_definition_token1, + [156079] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2190), 2, + STATE(872), 1, + sym__comparison_operator, + STATE(873), 1, + sym__multiplicative_operator, + STATE(874), 1, + sym__additive_operator, + STATE(877), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2124), 2, sym_comment, sym_include, - ACTIONS(2955), 30, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1224), 5, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_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, - [159802] = 5, + ACTIONS(1109), 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, + [156142] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2191), 2, + STATE(2125), 2, sym_comment, sym_include, - ACTIONS(2967), 30, + ACTIONS(2998), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -190096,20 +187813,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159848] = 6, + aux_sym_enum_definition_token1, + [156189] = 5, 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(2192), 2, + STATE(2126), 2, sym_comment, sym_include, - ACTIONS(2921), 29, + ACTIONS(3000), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -190138,20 +187855,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159896] = 6, + aux_sym_enum_definition_token1, + [156236] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2923), 1, - ts_builtin_sym_end, - STATE(2193), 2, + STATE(2127), 2, sym_comment, sym_include, - ACTIONS(2925), 29, + ACTIONS(3002), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -190180,61 +187897,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [156283] = 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(2195), 2, + STATE(2128), 2, sym_comment, sym_include, - ACTIONS(2929), 29, + ACTIONS(3004), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -190263,104 +187939,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160038] = 6, + aux_sym_enum_definition_token1, + [156330] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2129), 2, sym_comment, sym_include, - ACTIONS(2985), 30, + ACTIONS(3008), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -190391,64 +187981,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160186] = 8, + aux_sym_enum_definition_token1, + [156377] = 5, 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(1922), 1, - aux_sym_object_access_repeat1, - ACTIONS(89), 2, - sym__or_operator, - sym__and_operator, - STATE(2199), 2, + STATE(2130), 2, sym_comment, sym_include, - ACTIONS(91), 26, - anon_sym_SLASH, + ACTIONS(3012), 31, 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__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, aux_sym_scope_tuning_token1, - [160238] = 6, + 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, + aux_sym_enum_definition_token1, + [156424] = 5, 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(2200), 2, + STATE(2131), 2, sym_comment, sym_include, - ACTIONS(2931), 29, + ACTIONS(3014), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -190477,39 +188065,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160286] = 12, + aux_sym_enum_definition_token1, + [156471] = 13, 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, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(876), 1, sym__logical_operator, - ACTIONS(1088), 2, + STATE(878), 1, + sym__additive_operator, + STATE(880), 1, + sym__multiplicative_operator, + STATE(897), 1, + sym__comparison_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2201), 2, + STATE(2132), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(3793), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1131), 5, sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1090), 15, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -190525,39 +188116,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [160346] = 12, + [156534] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(885), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(872), 1, sym__comparison_operator, - STATE(886), 1, + STATE(873), 1, sym__multiplicative_operator, - STATE(887), 1, + STATE(874), 1, sym__additive_operator, - STATE(888), 1, + STATE(877), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2202), 2, + STATE(2133), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1202), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1228), 5, sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1090), 15, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -190573,205 +188166,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [160406] = 5, + [156597] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2203), 2, - sym_comment, - sym_include, - 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, - 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, - [160452] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3520), 1, - ts_builtin_sym_end, - STATE(2204), 2, - sym_comment, - sym_include, - 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, - 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, - [160500] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2205), 2, - sym_comment, - sym_include, - 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, - 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, - [160546] = 6, - 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(2206), 2, - sym_comment, - sym_include, - ACTIONS(2939), 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, - [160594] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(885), 1, + STATE(872), 1, sym__comparison_operator, - STATE(886), 1, + STATE(873), 1, sym__multiplicative_operator, - STATE(887), 1, + STATE(874), 1, sym__additive_operator, - STATE(888), 1, + STATE(877), 1, sym__logical_operator, - ACTIONS(1088), 2, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1212), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2207), 2, + STATE(2134), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1210), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1232), 5, sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1090), 15, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -190787,35 +188216,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [160654] = 9, + [156660] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(885), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(872), 1, sym__comparison_operator, - STATE(886), 1, + STATE(873), 1, sym__multiplicative_operator, - STATE(887), 1, + STATE(874), 1, sym__additive_operator, - STATE(888), 1, + STATE(877), 1, sym__logical_operator, - ACTIONS(1216), 2, + ACTIONS(204), 2, sym__or_operator, sym__and_operator, - STATE(2208), 2, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2135), 2, sym_comment, sym_include, - ACTIONS(1214), 25, + ACTIONS(1105), 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(206), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -190831,18 +188266,17 @@ static 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, - [160708] = 5, + [156723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2209), 2, + STATE(2136), 2, sym_comment, sym_include, - ACTIONS(3009), 30, + ACTIONS(3016), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -190873,17 +188307,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160754] = 5, + aux_sym_enum_definition_token1, + [156770] = 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(3011), 30, + ACTIONS(3018), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -190914,36 +188349,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, - [160800] = 10, + aux_sym_enum_definition_token1, + [156817] = 8, 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, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2709), 1, + sym__namecolon, + STATE(2216), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2211), 2, + STATE(2138), 2, sym_comment, sym_include, - ACTIONS(1086), 3, + ACTIONS(93), 27, 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_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, @@ -190959,20 +188393,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, - [160856] = 5, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [156870] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2212), 2, + ACTIONS(3495), 1, + ts_builtin_sym_end, + STATE(2139), 2, sym_comment, sym_include, - ACTIONS(3013), 30, + ACTIONS(2994), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -191001,116 +188437,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [156919] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, - ts_builtin_sym_end, - STATE(2215), 2, + STATE(2140), 2, sym_comment, sym_include, - ACTIONS(2941), 29, + ACTIONS(3020), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -191139,19 +188479,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161070] = 6, + aux_sym_enum_definition_token1, + [156966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3575), 1, ts_builtin_sym_end, - STATE(2216), 2, + STATE(2141), 2, sym_comment, sym_include, - ACTIONS(3039), 29, + ACTIONS(3088), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -191181,19 +188522,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161118] = 5, + aux_sym_enum_definition_token1, + [157015] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2217), 2, + ACTIONS(3525), 1, + ts_builtin_sym_end, + STATE(2142), 2, sym_comment, sym_include, - ACTIONS(3015), 30, + ACTIONS(3032), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -191222,19 +188565,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161164] = 6, + aux_sym_enum_definition_token1, + [157064] = 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(3389), 1, ts_builtin_sym_end, - STATE(2218), 2, + STATE(2143), 2, sym_comment, sym_include, - ACTIONS(2943), 29, + ACTIONS(3114), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -191264,19 +188608,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, - [161212] = 6, + aux_sym_enum_definition_token1, + [157113] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3696), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3698), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3700), 1, + aux_sym_input_expression_token1, + ACTIONS(3702), 1, + aux_sym_variable_definition_token3, + ACTIONS(3704), 1, + aux_sym_variable_definition_token4, + ACTIONS(3706), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3708), 1, + aux_sym_query_definition_token1, + ACTIONS(3712), 1, + aux_sym_stream_definition_token1, + ACTIONS(3716), 1, + aux_sym_button_definition_token1, + STATE(3202), 1, + sym_access_tuning, + STATE(3219), 1, + sym_scope_tuning, + STATE(3257), 1, + aux_sym_variable_definition_repeat1, + STATE(3364), 1, + aux_sym_buffer_definition_repeat1, + STATE(3372), 1, + aux_sym_workfile_definition_repeat1, + STATE(3383), 1, + sym_serialization_tuning, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3714), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(2144), 2, + sym_comment, + sym_include, + ACTIONS(3710), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [157198] = 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(3391), 1, ts_builtin_sym_end, - STATE(2219), 2, + STATE(2145), 2, sym_comment, sym_include, - ACTIONS(2945), 29, + ACTIONS(3116), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -191306,19 +188712,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161260] = 6, + aux_sym_enum_definition_token1, + [157247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3041), 1, + ACTIONS(3122), 1, ts_builtin_sym_end, - STATE(2220), 2, + STATE(2146), 2, sym_comment, sym_include, - ACTIONS(3043), 29, + ACTIONS(3124), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -191348,19 +188755,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161308] = 6, + aux_sym_enum_definition_token1, + [157296] = 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(3173), 1, ts_builtin_sym_end, - STATE(2221), 2, + STATE(2147), 2, sym_comment, sym_include, - ACTIONS(2949), 29, + ACTIONS(3022), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -191390,65 +188798,18 @@ static const uint16_t ts_small_parse_table[] = { 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(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(2222), 2, - sym_comment, - sym_include, - ACTIONS(1086), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1198), 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, - [161416] = 5, + aux_sym_enum_definition_token1, + [157345] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2223), 2, + STATE(2148), 2, sym_comment, sym_include, - ACTIONS(3017), 30, + ACTIONS(3024), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -191479,17 +188840,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161462] = 5, + aux_sym_enum_definition_token1, + [157392] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2224), 2, + STATE(2149), 2, sym_comment, sym_include, - ACTIONS(3019), 30, + ACTIONS(3026), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -191520,17 +188882,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161508] = 5, + aux_sym_enum_definition_token1, + [157439] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2225), 2, + STATE(2150), 2, sym_comment, sym_include, - ACTIONS(3021), 30, + ACTIONS(3028), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -191561,67 +188924,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [157486] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2227), 2, + ACTIONS(3315), 1, + ts_builtin_sym_end, + STATE(2151), 2, sym_comment, sym_include, - ACTIONS(3027), 30, + ACTIONS(3317), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -191650,19 +188967,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161660] = 5, + aux_sym_enum_definition_token1, + [157535] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2228), 2, + ACTIONS(3179), 1, + ts_builtin_sym_end, + STATE(2152), 2, sym_comment, sym_include, - ACTIONS(2849), 30, + ACTIONS(3068), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -191691,113 +189010,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [157584] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2231), 2, + STATE(2153), 2, sym_comment, sym_include, - ACTIONS(3119), 30, + ACTIONS(3030), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -191828,113 +189052,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [157631] = 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(2154), 2, sym_comment, sym_include, - ACTIONS(3121), 30, + ACTIONS(3032), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -191965,20 +189094,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162038] = 6, + aux_sym_enum_definition_token1, + [157678] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3045), 1, - ts_builtin_sym_end, - STATE(2235), 2, + STATE(2155), 2, sym_comment, sym_include, - ACTIONS(3047), 29, + ACTIONS(3034), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192007,17 +189136,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162086] = 5, + aux_sym_enum_definition_token1, + [157725] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2236), 2, + STATE(2156), 2, sym_comment, sym_include, - ACTIONS(3127), 30, + ACTIONS(3036), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192048,17 +189178,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162132] = 5, + aux_sym_enum_definition_token1, + [157772] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2237), 2, + STATE(2157), 2, sym_comment, sym_include, - ACTIONS(3129), 30, + ACTIONS(3038), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192089,17 +189220,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162178] = 5, + aux_sym_enum_definition_token1, + [157819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2238), 2, + STATE(2158), 2, sym_comment, sym_include, - ACTIONS(3131), 30, + ACTIONS(3040), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192130,19 +189262,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162224] = 6, + aux_sym_enum_definition_token1, + [157866] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3181), 1, ts_builtin_sym_end, - STATE(2239), 2, + STATE(2159), 2, sym_comment, sym_include, - ACTIONS(3051), 29, + ACTIONS(3090), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -192172,20 +189305,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162272] = 6, + aux_sym_enum_definition_token1, + [157915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, - ts_builtin_sym_end, - STATE(2240), 2, + STATE(2160), 2, sym_comment, sym_include, - ACTIONS(3606), 29, + ACTIONS(3042), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192214,17 +189347,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162320] = 5, + aux_sym_enum_definition_token1, + [157962] = 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(2161), 2, sym_comment, sym_include, - ACTIONS(3133), 30, + ACTIONS(3136), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192255,19 +189389,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162366] = 5, + aux_sym_enum_definition_token1, + [158009] = 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(3577), 1, + ts_builtin_sym_end, + STATE(2162), 2, sym_comment, sym_include, - ACTIONS(3137), 30, + ACTIONS(3092), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192296,19 +189432,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162412] = 6, + aux_sym_enum_definition_token1, + [158058] = 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(3579), 1, ts_builtin_sym_end, - STATE(2243), 2, + STATE(2163), 2, sym_comment, sym_include, - ACTIONS(2955), 29, + ACTIONS(3096), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -192338,17 +189475,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162460] = 5, + aux_sym_enum_definition_token1, + [158107] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2244), 2, + STATE(2164), 2, sym_comment, sym_include, - ACTIONS(3141), 30, + ACTIONS(3046), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192379,17 +189517,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162506] = 5, + aux_sym_enum_definition_token1, + [158154] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2245), 2, + STATE(2165), 2, sym_comment, sym_include, - ACTIONS(3143), 30, + ACTIONS(3048), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192420,19 +189559,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162552] = 5, + aux_sym_enum_definition_token1, + [158201] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2246), 2, + ACTIONS(3185), 1, + ts_builtin_sym_end, + STATE(2166), 2, sym_comment, sym_include, - ACTIONS(3145), 30, + ACTIONS(3098), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192461,19 +189602,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162598] = 5, + aux_sym_enum_definition_token1, + [158250] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2247), 2, + ACTIONS(3491), 1, + ts_builtin_sym_end, + STATE(2167), 2, sym_comment, sym_include, - ACTIONS(3147), 30, + ACTIONS(2990), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192502,19 +189645,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162644] = 6, + aux_sym_enum_definition_token1, + [158299] = 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(3325), 1, ts_builtin_sym_end, - STATE(2248), 2, + STATE(2168), 2, sym_comment, sym_include, - ACTIONS(2967), 29, + ACTIONS(3231), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -192544,19 +189688,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162692] = 6, + aux_sym_enum_definition_token1, + [158348] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3187), 1, ts_builtin_sym_end, - STATE(2249), 2, + STATE(2169), 2, sym_comment, sym_include, - ACTIONS(3057), 29, + ACTIONS(3100), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -192586,19 +189731,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162740] = 6, + aux_sym_enum_definition_token1, + [158397] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3527), 1, ts_builtin_sym_end, - STATE(2250), 2, + STATE(2170), 2, sym_comment, sym_include, - ACTIONS(3059), 29, + ACTIONS(3034), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -192628,19 +189774,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162788] = 5, + aux_sym_enum_definition_token1, + [158446] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2251), 2, + ACTIONS(3349), 1, + ts_builtin_sym_end, + STATE(2171), 2, sym_comment, sym_include, - ACTIONS(3149), 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, @@ -192669,109 +189817,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162834] = 13, + aux_sym_enum_definition_token1, + [158495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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(2253), 2, - sym_comment, - sym_include, - 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, - 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, - [162942] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2254), 2, + ACTIONS(3529), 1, + ts_builtin_sym_end, + STATE(2172), 2, sym_comment, sym_include, - ACTIONS(3155), 30, + ACTIONS(3036), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192800,19 +189860,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162988] = 5, + aux_sym_enum_definition_token1, + [158544] = 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(3515), 1, + ts_builtin_sym_end, + STATE(2173), 2, sym_comment, sym_include, - ACTIONS(3157), 30, + ACTIONS(3020), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192841,19 +189903,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163034] = 5, + aux_sym_enum_definition_token1, + [158593] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2256), 2, + ACTIONS(3327), 1, + ts_builtin_sym_end, + STATE(2174), 2, sym_comment, sym_include, - ACTIONS(3161), 30, + ACTIONS(3225), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -192882,17 +189946,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163080] = 5, + aux_sym_enum_definition_token1, + [158642] = 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(2175), 2, sym_comment, sym_include, - ACTIONS(3163), 30, + ACTIONS(3050), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -192923,61 +189988,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163126] = 6, + aux_sym_enum_definition_token1, + [158689] = 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(3599), 1, ts_builtin_sym_end, - STATE(2258), 2, - sym_comment, - sym_include, - 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, - 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, - [163174] = 6, - 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(2259), 2, + STATE(2176), 2, sym_comment, sym_include, - ACTIONS(3003), 29, + ACTIONS(3199), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -193007,17 +190031,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163222] = 5, + aux_sym_enum_definition_token1, + [158738] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2260), 2, + STATE(2177), 2, sym_comment, sym_include, - ACTIONS(3165), 30, + ACTIONS(3052), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -193048,17 +190073,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163268] = 5, + aux_sym_enum_definition_token1, + [158785] = 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(2178), 2, sym_comment, sym_include, - ACTIONS(3167), 30, + ACTIONS(3054), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -193089,20 +190115,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163314] = 6, + aux_sym_enum_definition_token1, + [158832] = 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(2262), 2, + STATE(2179), 2, sym_comment, sym_include, - ACTIONS(3005), 29, + ACTIONS(3056), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193131,20 +190157,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163362] = 6, + aux_sym_enum_definition_token1, + [158879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, - ts_builtin_sym_end, - STATE(2263), 2, + STATE(2180), 2, sym_comment, sym_include, - ACTIONS(3007), 29, + ACTIONS(3058), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193173,20 +190199,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163410] = 6, + aux_sym_enum_definition_token1, + [158926] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3544), 1, - ts_builtin_sym_end, - STATE(2264), 2, + STATE(2181), 2, sym_comment, sym_include, - ACTIONS(3009), 29, + ACTIONS(3060), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193215,17 +190241,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163458] = 5, + aux_sym_enum_definition_token1, + [158973] = 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(2182), 2, sym_comment, sym_include, - ACTIONS(3169), 30, + ACTIONS(3064), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -193256,20 +190283,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163504] = 6, + aux_sym_enum_definition_token1, + [159020] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3426), 1, - ts_builtin_sym_end, - STATE(2266), 2, + STATE(2183), 2, sym_comment, sym_include, - ACTIONS(3063), 29, + ACTIONS(3066), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193298,19 +190325,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163552] = 6, + aux_sym_enum_definition_token1, + [159067] = 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(3531), 1, ts_builtin_sym_end, - STATE(2267), 2, + STATE(2184), 2, sym_comment, sym_include, - ACTIONS(3011), 29, + ACTIONS(3038), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -193340,102 +190368,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163600] = 6, + aux_sym_enum_definition_token1, + [159116] = 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(3513), 1, ts_builtin_sym_end, - STATE(2268), 2, - sym_comment, - sym_include, - 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, - 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, - [163648] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2269), 2, - sym_comment, - sym_include, - 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, - 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, - [163694] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2270), 2, + STATE(2185), 2, sym_comment, sym_include, - ACTIONS(3183), 30, + ACTIONS(3018), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193464,19 +190411,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163740] = 6, + aux_sym_enum_definition_token1, + [159165] = 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(3511), 1, ts_builtin_sym_end, - STATE(2271), 2, + STATE(2186), 2, sym_comment, sym_include, - ACTIONS(3015), 29, + ACTIONS(3016), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -193506,44 +190454,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, - [163788] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_definition_token1, + [159214] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(942), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2272), 2, + STATE(2187), 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, + ACTIONS(1202), 7, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -193557,19 +190506,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [163854] = 5, + [159279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2273), 2, + ACTIONS(3533), 1, + ts_builtin_sym_end, + STATE(2188), 2, sym_comment, sym_include, - ACTIONS(3185), 30, + ACTIONS(3040), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193598,19 +190548,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163900] = 6, + aux_sym_enum_definition_token1, + [159328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(2846), 1, ts_builtin_sym_end, - STATE(2274), 2, + STATE(2189), 2, sym_comment, sym_include, - ACTIONS(3065), 29, + ACTIONS(2848), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -193640,60 +190591,220 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163948] = 5, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [159377] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2275), 2, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + STATE(2190), 2, sym_comment, sym_include, - 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, - 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, - [163994] = 6, + ACTIONS(1204), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 24, + sym__or_operator, + sym__and_operator, + 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_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [159434] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(2191), 2, + sym_comment, + sym_include, + ACTIONS(1210), 22, + sym__or_operator, + sym__and_operator, + 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, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [159495] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2192), 2, + sym_comment, + sym_include, + ACTIONS(1214), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [159562] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2193), 2, + sym_comment, + sym_include, + ACTIONS(1129), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [159629] = 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(3581), 1, ts_builtin_sym_end, - STATE(2276), 2, + STATE(2194), 2, sym_comment, sym_include, - ACTIONS(3017), 29, + ACTIONS(3104), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -193723,61 +190834,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, - [164042] = 6, + aux_sym_enum_definition_token1, + [159678] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3554), 1, - ts_builtin_sym_end, - STATE(2277), 2, + ACTIONS(3718), 1, + sym__namecolon, + ACTIONS(95), 2, + sym__or_operator, + sym__and_operator, + STATE(2195), 3, sym_comment, sym_include, - ACTIONS(3019), 29, + aux_sym_object_access_repeat1, + ACTIONS(97), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + 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, - 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, - [164090] = 5, + anon_sym_NO_DASHERROR, + [159729] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2278), 2, + ACTIONS(3347), 1, + ts_builtin_sym_end, + STATE(2196), 2, sym_comment, sym_include, - ACTIONS(3193), 30, + 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, @@ -193806,19 +190921,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164136] = 6, + aux_sym_enum_definition_token1, + [159778] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3422), 1, + ACTIONS(3385), 1, ts_builtin_sym_end, - STATE(2279), 2, + STATE(2197), 2, sym_comment, sym_include, - ACTIONS(3095), 29, + ACTIONS(2850), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -193848,17 +190964,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164184] = 5, + aux_sym_enum_definition_token1, + [159827] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2280), 2, + STATE(2198), 2, sym_comment, sym_include, - ACTIONS(3195), 30, + ACTIONS(3070), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -193889,17 +191006,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164230] = 5, + aux_sym_enum_definition_token1, + [159874] = 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(2199), 2, sym_comment, sym_include, - ACTIONS(3207), 30, + ACTIONS(3072), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -193930,19 +191048,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164276] = 5, + aux_sym_enum_definition_token1, + [159921] = 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(3583), 1, + ts_builtin_sym_end, + STATE(2200), 2, sym_comment, sym_include, - ACTIONS(3237), 30, + ACTIONS(3118), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -193971,31 +191091,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164322] = 9, + aux_sym_enum_definition_token1, + [159970] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2655), 1, - anon_sym_LBRACK, - ACTIONS(2657), 1, - anon_sym_LPAREN, - STATE(2510), 1, - sym_function_arguments, - ACTIONS(65), 2, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(3721), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2283), 2, + STATE(2201), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(1377), 26, + anon_sym_COLON, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -194014,21 +191134,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, - aux_sym_scope_tuning_token1, - [164376] = 5, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [160025] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2284), 2, + ACTIONS(2852), 1, + ts_builtin_sym_end, + STATE(2202), 2, sym_comment, sym_include, - ACTIONS(3213), 30, + ACTIONS(2854), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194057,19 +191180,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164422] = 6, + aux_sym_enum_definition_token1, + [160074] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3285), 1, ts_builtin_sym_end, - STATE(2285), 2, + STATE(2203), 2, sym_comment, sym_include, - ACTIONS(3099), 29, + ACTIONS(3287), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -194099,20 +191223,20 @@ 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, + aux_sym_enum_definition_token1, + [160123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3418), 1, - ts_builtin_sym_end, - STATE(2286), 2, + STATE(2204), 2, sym_comment, sym_include, - ACTIONS(3101), 29, + ACTIONS(3074), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194141,19 +191265,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164518] = 5, + aux_sym_enum_definition_token1, + [160170] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2287), 2, + ACTIONS(3345), 1, + ts_builtin_sym_end, + STATE(2205), 2, sym_comment, sym_include, - ACTIONS(3215), 30, + ACTIONS(3197), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194182,17 +191308,18 @@ 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] = 5, + aux_sym_enum_definition_token1, + [160219] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2288), 2, + STATE(2206), 2, sym_comment, sym_include, - ACTIONS(3219), 30, + ACTIONS(3076), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -194223,20 +191350,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164610] = 6, + aux_sym_enum_definition_token1, + [160266] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - ts_builtin_sym_end, - STATE(2289), 2, + STATE(2207), 2, sym_comment, sym_include, - ACTIONS(3103), 29, + ACTIONS(3078), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194265,17 +191392,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164658] = 5, + aux_sym_enum_definition_token1, + [160313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2290), 2, + STATE(2208), 2, sym_comment, sym_include, - ACTIONS(3221), 30, + ACTIONS(3080), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -194306,20 +191434,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164704] = 6, + aux_sym_enum_definition_token1, + [160360] = 5, 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(2291), 2, + STATE(2209), 2, sym_comment, sym_include, - ACTIONS(3021), 29, + ACTIONS(3082), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194348,20 +191476,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164752] = 6, + aux_sym_enum_definition_token1, + [160407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3414), 1, - ts_builtin_sym_end, - STATE(2292), 2, + STATE(2210), 2, sym_comment, sym_include, - ACTIONS(3105), 29, + ACTIONS(3084), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194390,20 +191518,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164800] = 6, + aux_sym_enum_definition_token1, + [160454] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - ts_builtin_sym_end, - STATE(2293), 2, + STATE(2211), 2, sym_comment, sym_include, - ACTIONS(3107), 29, + ACTIONS(3086), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194432,19 +191560,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164848] = 5, + aux_sym_enum_definition_token1, + [160501] = 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(3120), 1, + ts_builtin_sym_end, + STATE(2212), 2, sym_comment, sym_include, - ACTIONS(3227), 30, + ACTIONS(3094), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194473,19 +191603,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164894] = 5, + aux_sym_enum_definition_token1, + [160550] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2295), 2, + ACTIONS(3493), 1, + ts_builtin_sym_end, + STATE(2213), 2, sym_comment, sym_include, - ACTIONS(3229), 30, + ACTIONS(2992), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194514,19 +191646,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164940] = 6, + aux_sym_enum_definition_token1, + [160599] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3410), 1, + ACTIONS(2856), 1, ts_builtin_sym_end, - STATE(2296), 2, + STATE(2214), 2, sym_comment, sym_include, - ACTIONS(3109), 29, + ACTIONS(2858), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -194556,20 +191689,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164988] = 6, + aux_sym_enum_definition_token1, + [160648] = 5, 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(2297), 2, + STATE(2215), 2, sym_comment, sym_include, - ACTIONS(3131), 29, + ACTIONS(3088), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194598,60 +191731,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, - [165036] = 5, + aux_sym_enum_definition_token1, + [160695] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2298), 2, + ACTIONS(3723), 1, + sym__namecolon, + ACTIONS(95), 2, + sym__or_operator, + sym__and_operator, + STATE(2216), 3, sym_comment, sym_include, - ACTIONS(3231), 30, + aux_sym_object_access_repeat1, + ACTIONS(97), 27, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_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, + 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, - [165082] = 5, + aux_sym_widget_field_token1, + [160746] = 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(3387), 1, + ts_builtin_sym_end, + STATE(2217), 2, sym_comment, sym_include, - ACTIONS(3233), 30, + ACTIONS(2860), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194680,17 +191818,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165128] = 5, + aux_sym_enum_definition_token1, + [160795] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2300), 2, + STATE(2218), 2, sym_comment, sym_include, - ACTIONS(3235), 30, + ACTIONS(3092), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -194721,17 +191860,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165174] = 5, + aux_sym_enum_definition_token1, + [160842] = 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(2219), 2, sym_comment, sym_include, - ACTIONS(3239), 30, + ACTIONS(3096), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -194762,19 +191902,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165220] = 6, + aux_sym_enum_definition_token1, + [160889] = 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(3585), 1, ts_builtin_sym_end, - STATE(2302), 2, + STATE(2220), 2, sym_comment, sym_include, - ACTIONS(3027), 29, + ACTIONS(3136), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -194804,19 +191945,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, - [165268] = 6, + aux_sym_enum_definition_token1, + [160938] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3560), 1, + ACTIONS(2667), 1, + sym__namecolon, + STATE(2195), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, + sym__or_operator, + sym__and_operator, + STATE(2221), 2, + sym_comment, + sym_include, + ACTIONS(93), 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, + [160991] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3343), 1, ts_builtin_sym_end, - STATE(2303), 2, + STATE(2222), 2, sym_comment, sym_include, - ACTIONS(2849), 29, + ACTIONS(3201), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -194846,61 +192033,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, - [165316] = 5, + aux_sym_enum_definition_token1, + [161040] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2304), 2, + ACTIONS(2667), 1, + sym__namecolon, + STATE(2195), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, + sym__or_operator, + sym__and_operator, + STATE(2223), 2, sym_comment, sym_include, - ACTIONS(3241), 30, + ACTIONS(93), 27, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, + 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, - 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, - [165362] = 6, + anon_sym_NO_DASHERROR, + [161093] = 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(2305), 2, + STATE(2224), 2, sym_comment, sym_include, - ACTIONS(3119), 29, + ACTIONS(3104), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -194929,19 +192120,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165410] = 6, + aux_sym_enum_definition_token1, + [161140] = 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(2862), 1, ts_builtin_sym_end, - STATE(2306), 2, + STATE(2225), 2, sym_comment, sym_include, - ACTIONS(3121), 29, + ACTIONS(2864), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -194971,60 +192163,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [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, + aux_sym_enum_definition_token1, + [161189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2308), 2, + ACTIONS(2866), 1, + ts_builtin_sym_end, + STATE(2226), 2, sym_comment, sym_include, - ACTIONS(3243), 30, + ACTIONS(2868), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195053,17 +192206,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165550] = 5, + aux_sym_enum_definition_token1, + [161238] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2309), 2, + STATE(2227), 2, sym_comment, sym_include, - ACTIONS(3247), 30, + ACTIONS(3118), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -195094,20 +192248,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165596] = 6, + aux_sym_enum_definition_token1, + [161285] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3566), 1, - ts_builtin_sym_end, - STATE(2310), 2, + STATE(2228), 2, sym_comment, sym_include, - ACTIONS(3127), 29, + ACTIONS(3688), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195136,19 +192290,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165644] = 6, + aux_sym_enum_definition_token1, + [161332] = 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(3489), 1, ts_builtin_sym_end, - STATE(2311), 2, + STATE(2229), 2, sym_comment, sym_include, - ACTIONS(3129), 29, + ACTIONS(2988), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195178,19 +192333,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165692] = 6, + aux_sym_enum_definition_token1, + [161381] = 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(3341), 1, ts_builtin_sym_end, - STATE(2312), 2, + STATE(2230), 2, sym_comment, sym_include, - ACTIONS(3133), 29, + ACTIONS(3203), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195220,19 +192376,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165740] = 5, + aux_sym_enum_definition_token1, + [161430] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2313), 2, + ACTIONS(3339), 1, + ts_builtin_sym_end, + STATE(2231), 2, sym_comment, sym_include, - ACTIONS(3263), 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, @@ -195261,19 +192419,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165786] = 5, + aux_sym_enum_definition_token1, + [161479] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2314), 2, + ACTIONS(3337), 1, + ts_builtin_sym_end, + STATE(2232), 2, sym_comment, sym_include, - ACTIONS(3265), 30, + 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, @@ -195302,19 +192462,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165832] = 5, + aux_sym_enum_definition_token1, + [161528] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2315), 2, + ACTIONS(3335), 1, + ts_builtin_sym_end, + STATE(2233), 2, sym_comment, sym_include, - ACTIONS(3267), 30, + ACTIONS(3209), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195343,19 +192505,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165878] = 5, + aux_sym_enum_definition_token1, + [161577] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2316), 2, + ACTIONS(3331), 1, + ts_builtin_sym_end, + STATE(2234), 2, sym_comment, sym_include, - ACTIONS(3269), 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, @@ -195384,79 +192548,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165924] = 6, + aux_sym_enum_definition_token1, + [161626] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2317), 2, + ACTIONS(3281), 1, + ts_builtin_sym_end, + STATE(2235), 2, sym_comment, sym_include, - ACTIONS(100), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(102), 27, - anon_sym_SLASH, + ACTIONS(3283), 30, 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_input_expression_token1, + aux_sym_class_type_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [165972] = 8, - ACTIONS(3), 1, + 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, + aux_sym_enum_definition_token1, + [161675] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, - sym__namecolon, - STATE(1928), 1, - aux_sym_object_access_repeat1, - ACTIONS(89), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2318), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2236), 2, sym_comment, sym_include, - ACTIONS(91), 26, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(1218), 5, sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + anon_sym_RPAREN, + ACTIONS(2425), 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, @@ -195467,22 +192644,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, - [166024] = 5, + [161742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2319), 2, + ACTIONS(3535), 1, + ts_builtin_sym_end, + STATE(2237), 2, sym_comment, sym_include, - ACTIONS(3271), 30, + ACTIONS(3042), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195511,19 +192686,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166070] = 5, + aux_sym_enum_definition_token1, + [161791] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2320), 2, + ACTIONS(3329), 1, + ts_builtin_sym_end, + STATE(2238), 2, sym_comment, sym_include, - ACTIONS(3273), 30, + 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, @@ -195552,19 +192729,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166116] = 6, + aux_sym_enum_definition_token1, + [161840] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3139), 1, + ACTIONS(3395), 1, ts_builtin_sym_end, - STATE(2321), 2, + STATE(2239), 2, sym_comment, sym_include, - ACTIONS(3141), 29, + ACTIONS(2870), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195594,19 +192772,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166164] = 6, + aux_sym_enum_definition_token1, + [161889] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3111), 1, + ACTIONS(3537), 1, ts_builtin_sym_end, - STATE(2322), 2, + STATE(2240), 2, sym_comment, sym_include, - ACTIONS(3113), 29, + ACTIONS(3044), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195636,19 +192815,177 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166212] = 5, + aux_sym_enum_definition_token1, + [161938] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2241), 2, + sym_comment, + sym_include, + ACTIONS(1222), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [162005] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2242), 2, + sym_comment, + sym_include, + ACTIONS(1226), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [162072] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2243), 2, + sym_comment, + sym_include, + ACTIONS(1230), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [162139] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2323), 2, + ACTIONS(3487), 1, + ts_builtin_sym_end, + STATE(2244), 2, sym_comment, sym_include, - ACTIONS(3296), 30, + ACTIONS(2986), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195677,19 +193014,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166258] = 5, + aux_sym_enum_definition_token1, + [162188] = 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(3485), 1, + ts_builtin_sym_end, + STATE(2245), 2, sym_comment, sym_include, - ACTIONS(3298), 30, + ACTIONS(2984), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195718,19 +193057,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166304] = 6, + aux_sym_enum_definition_token1, + [162237] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3135), 1, + ACTIONS(3397), 1, ts_builtin_sym_end, - STATE(2325), 2, + STATE(2246), 2, sym_comment, sym_include, - ACTIONS(3137), 29, + ACTIONS(2872), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195760,19 +193100,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, - [166352] = 6, + aux_sym_enum_definition_token1, + [162286] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2247), 2, + sym_comment, + sym_include, + ACTIONS(1234), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [162353] = 14, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_comment, + sym_include, + ACTIONS(204), 7, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [162418] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3115), 1, + ACTIONS(3399), 1, ts_builtin_sym_end, - STATE(2326), 2, + STATE(2249), 2, sym_comment, sym_include, - ACTIONS(3117), 29, + ACTIONS(2874), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195802,19 +193246,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166400] = 6, + aux_sym_enum_definition_token1, + [162467] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3123), 1, + ACTIONS(3483), 1, ts_builtin_sym_end, - STATE(2327), 2, + STATE(2250), 2, sym_comment, sym_include, - ACTIONS(3125), 29, + ACTIONS(2982), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -195844,20 +193289,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166448] = 6, + aux_sym_enum_definition_token1, + [162516] = 5, 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(2328), 2, + STATE(2251), 2, sym_comment, sym_include, - ACTIONS(3143), 29, + 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, @@ -195886,19 +193331,21 @@ 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, + aux_sym_enum_definition_token1, + [162563] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2329), 2, + ACTIONS(3401), 1, + ts_builtin_sym_end, + STATE(2252), 2, sym_comment, sym_include, - ACTIONS(3300), 30, + ACTIONS(2876), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195927,19 +193374,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166542] = 5, + aux_sym_enum_definition_token1, + [162612] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2330), 2, + ACTIONS(3553), 1, + ts_builtin_sym_end, + STATE(2253), 2, sym_comment, sym_include, - ACTIONS(3302), 30, + ACTIONS(3060), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -195968,19 +193417,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166588] = 5, + aux_sym_enum_definition_token1, + [162661] = 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(3403), 1, + ts_builtin_sym_end, + STATE(2254), 2, sym_comment, sym_include, - ACTIONS(3304), 30, + ACTIONS(2878), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196009,20 +193460,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166634] = 6, + aux_sym_enum_definition_token1, + [162710] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3408), 1, - ts_builtin_sym_end, - STATE(2332), 2, + STATE(2255), 2, sym_comment, sym_include, - ACTIONS(3151), 29, + 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, @@ -196051,19 +193502,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166682] = 6, + aux_sym_enum_definition_token1, + [162757] = 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(3405), 1, ts_builtin_sym_end, - STATE(2333), 2, + STATE(2256), 2, sym_comment, sym_include, - ACTIONS(3145), 29, + ACTIONS(2880), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196093,19 +193545,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166730] = 6, + aux_sym_enum_definition_token1, + [162806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3580), 1, + ACTIONS(3407), 1, ts_builtin_sym_end, - STATE(2334), 2, + STATE(2257), 2, sym_comment, sym_include, - ACTIONS(3149), 29, + ACTIONS(2882), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196135,64 +193588,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166778] = 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(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, + aux_sym_enum_definition_token1, + [162855] = 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(3409), 1, ts_builtin_sym_end, - STATE(2336), 2, + STATE(2258), 2, sym_comment, sym_include, - ACTIONS(3147), 29, + ACTIONS(2884), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196222,19 +193631,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166880] = 5, + aux_sym_enum_definition_token1, + [162904] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2337), 2, + ACTIONS(3423), 1, + ts_builtin_sym_end, + STATE(2259), 2, sym_comment, sym_include, - ACTIONS(3354), 30, + ACTIONS(2898), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196263,19 +193674,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166926] = 5, + aux_sym_enum_definition_token1, + [162953] = 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(3411), 1, + ts_builtin_sym_end, + STATE(2260), 2, sym_comment, sym_include, - ACTIONS(3287), 30, + ACTIONS(2886), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196304,19 +193717,321 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166972] = 5, + aux_sym_enum_definition_token1, + [163002] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2339), 2, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(204), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2261), 2, sym_comment, sym_include, - ACTIONS(3746), 30, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(206), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [163065] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2262), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1232), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [163128] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2263), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1228), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [163191] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2264), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1224), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [163254] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2265), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1220), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [163317] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2266), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1216), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [163380] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3413), 1, + ts_builtin_sym_end, + STATE(2267), 2, + sym_comment, + sym_include, + ACTIONS(2888), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196345,19 +194060,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167018] = 5, + aux_sym_enum_definition_token1, + [163429] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2340), 2, + ACTIONS(3415), 1, + ts_builtin_sym_end, + STATE(2268), 2, sym_comment, sym_include, - ACTIONS(3356), 30, + ACTIONS(2890), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196386,39 +194103,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, - [167064] = 8, + aux_sym_enum_definition_token1, + [163478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(3481), 1, + ts_builtin_sym_end, + STATE(2269), 2, sym_comment, sym_include, - ACTIONS(3358), 27, + ACTIONS(2980), 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, @@ -196430,19 +194146,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167116] = 5, + aux_sym_enum_definition_token1, + [163527] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2342), 2, + ACTIONS(3417), 1, + ts_builtin_sym_end, + STATE(2270), 2, sym_comment, sym_include, - ACTIONS(3358), 30, + ACTIONS(2892), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196471,19 +194189,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167162] = 6, + aux_sym_enum_definition_token1, + [163576] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3406), 1, + ACTIONS(3419), 1, ts_builtin_sym_end, - STATE(2343), 2, + STATE(2271), 2, sym_comment, sym_include, - ACTIONS(3171), 29, + ACTIONS(2894), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196513,19 +194232,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167210] = 6, + aux_sym_enum_definition_token1, + [163625] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3404), 1, + ACTIONS(3539), 1, ts_builtin_sym_end, - STATE(2344), 2, + STATE(2272), 2, sym_comment, sym_include, - ACTIONS(3175), 29, + ACTIONS(3046), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196555,20 +194275,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167258] = 6, + aux_sym_enum_definition_token1, + [163674] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, - ts_builtin_sym_end, - STATE(2345), 2, + STATE(2273), 2, sym_comment, sym_include, - ACTIONS(3153), 29, + 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, @@ -196597,20 +194317,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167306] = 6, + aux_sym_enum_definition_token1, + [163721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3402), 1, - ts_builtin_sym_end, - STATE(2346), 2, + STATE(2274), 2, sym_comment, sym_include, - ACTIONS(3177), 29, + ACTIONS(2836), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, aux_sym_scope_tuning_token1, @@ -196639,20 +194359,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167354] = 6, + aux_sym_enum_definition_token1, + [163768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3366), 1, - ts_builtin_sym_end, - STATE(2347), 2, + STATE(2275), 2, sym_comment, sym_include, - ACTIONS(3283), 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, @@ -196681,19 +194401,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167402] = 6, + aux_sym_enum_definition_token1, + [163815] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3400), 1, + ACTIONS(3541), 1, ts_builtin_sym_end, - STATE(2348), 2, + STATE(2276), 2, sym_comment, sym_include, - ACTIONS(3179), 29, + ACTIONS(3048), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196723,19 +194444,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167450] = 6, + aux_sym_enum_definition_token1, + [163864] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3598), 1, + ACTIONS(3543), 1, ts_builtin_sym_end, - STATE(2349), 2, + STATE(2277), 2, sym_comment, sym_include, - ACTIONS(3155), 29, + ACTIONS(3050), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196765,19 +194487,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167498] = 6, + aux_sym_enum_definition_token1, + [163913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3368), 1, + ACTIONS(3421), 1, ts_builtin_sym_end, - STATE(2350), 2, + STATE(2278), 2, sym_comment, sym_include, - ACTIONS(3281), 29, + ACTIONS(2896), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196807,19 +194530,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167546] = 6, + aux_sym_enum_definition_token1, + [163962] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3370), 1, + ACTIONS(3545), 1, ts_builtin_sym_end, - STATE(2351), 2, + STATE(2279), 2, sym_comment, sym_include, - ACTIONS(3279), 29, + ACTIONS(3052), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196849,19 +194573,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167594] = 6, + aux_sym_enum_definition_token1, + [164011] = 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(3425), 1, ts_builtin_sym_end, - STATE(2352), 2, + STATE(2280), 2, sym_comment, sym_include, - ACTIONS(3157), 29, + ACTIONS(2900), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196891,19 +194616,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167642] = 6, + aux_sym_enum_definition_token1, + [164060] = 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(3427), 1, ts_builtin_sym_end, - STATE(2353), 2, + STATE(2281), 2, sym_comment, sym_include, - ACTIONS(3159), 29, + ACTIONS(2902), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196933,19 +194659,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167690] = 6, + aux_sym_enum_definition_token1, + [164109] = 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(3551), 1, ts_builtin_sym_end, - STATE(2354), 2, + STATE(2282), 2, sym_comment, sym_include, - ACTIONS(3161), 29, + ACTIONS(3058), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -196975,19 +194702,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167738] = 6, + aux_sym_enum_definition_token1, + [164158] = 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(3429), 1, ts_builtin_sym_end, - STATE(2355), 2, + STATE(2283), 2, sym_comment, sym_include, - ACTIONS(3163), 29, + ACTIONS(2904), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197017,19 +194745,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167786] = 6, + aux_sym_enum_definition_token1, + [164207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + STATE(2284), 2, + sym_comment, + sym_include, + 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, + 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, + aux_sym_enum_definition_token1, + [164254] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2285), 2, + sym_comment, + sym_include, + ACTIONS(3499), 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_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, + aux_sym_enum_definition_token1, + [164301] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(3726), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(2286), 2, + sym_comment, + sym_include, + ACTIONS(1377), 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, + [164356] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, ts_builtin_sym_end, - STATE(2356), 2, + STATE(2287), 2, sym_comment, sym_include, - ACTIONS(3165), 29, + ACTIONS(2906), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197059,19 +194918,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167834] = 6, + aux_sym_enum_definition_token1, + [164405] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3674), 1, + ACTIONS(3433), 1, ts_builtin_sym_end, - STATE(2357), 2, + STATE(2288), 2, sym_comment, sym_include, - ACTIONS(3207), 29, + ACTIONS(2908), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197101,20 +194961,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167882] = 6, + aux_sym_enum_definition_token1, + [164454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3396), 1, + ACTIONS(3010), 1, ts_builtin_sym_end, - STATE(2358), 2, + STATE(2289), 2, + sym_comment, + sym_include, + ACTIONS(3012), 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_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, + aux_sym_enum_definition_token1, + [164503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2290), 2, + sym_comment, + sym_include, + ACTIONS(3245), 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_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, + aux_sym_enum_definition_token1, + [164550] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3728), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3730), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3732), 1, + aux_sym_do_block_token1, + STATE(2291), 2, + sym_comment, + sym_include, + ACTIONS(3247), 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__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, + aux_sym_enum_definition_token1, + [164603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2292), 2, sym_comment, sym_include, - ACTIONS(3181), 29, + 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, @@ -197143,19 +195133,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167930] = 6, + aux_sym_enum_definition_token1, + [164650] = 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(3435), 1, ts_builtin_sym_end, - STATE(2359), 2, + STATE(2293), 2, sym_comment, sym_include, - ACTIONS(3167), 29, + ACTIONS(2910), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197185,19 +195176,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167978] = 6, + aux_sym_enum_definition_token1, + [164699] = 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(3255), 1, ts_builtin_sym_end, - STATE(2360), 2, + STATE(2294), 2, sym_comment, sym_include, - ACTIONS(3169), 29, + ACTIONS(3257), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197227,19 +195219,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168026] = 6, + aux_sym_enum_definition_token1, + [164748] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3372), 1, + ACTIONS(3437), 1, ts_builtin_sym_end, - STATE(2361), 2, + STATE(2295), 2, sym_comment, sym_include, - ACTIONS(3277), 29, + ACTIONS(2912), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197269,19 +195262,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168074] = 6, + aux_sym_enum_definition_token1, + [164797] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3624), 1, + ACTIONS(3479), 1, ts_builtin_sym_end, - STATE(2362), 2, + STATE(2296), 2, sym_comment, sym_include, - ACTIONS(3300), 29, + ACTIONS(2978), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197311,19 +195305,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168122] = 6, + aux_sym_enum_definition_token1, + [164846] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3374), 1, + ACTIONS(3223), 1, ts_builtin_sym_end, - STATE(2363), 2, + STATE(2297), 2, sym_comment, sym_include, - ACTIONS(3275), 29, + ACTIONS(3108), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197353,19 +195348,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168170] = 6, + aux_sym_enum_definition_token1, + [164895] = 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(3439), 1, ts_builtin_sym_end, - STATE(2364), 2, + STATE(2298), 2, sym_comment, sym_include, - ACTIONS(3173), 29, + ACTIONS(2914), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197395,19 +195391,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168218] = 6, + aux_sym_enum_definition_token1, + [164944] = 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(3259), 1, ts_builtin_sym_end, - STATE(2365), 2, + STATE(2299), 2, sym_comment, sym_include, - ACTIONS(3183), 29, + ACTIONS(3261), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197437,19 +195434,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168266] = 6, + aux_sym_enum_definition_token1, + [164993] = 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(2916), 1, ts_builtin_sym_end, - STATE(2366), 2, + STATE(2300), 2, sym_comment, sym_include, - ACTIONS(3185), 29, + ACTIONS(2918), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197479,19 +195477,20 @@ 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, + aux_sym_enum_definition_token1, + [165042] = 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(3441), 1, ts_builtin_sym_end, - STATE(2367), 2, + STATE(2301), 2, sym_comment, sym_include, - ACTIONS(3191), 29, + ACTIONS(2920), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197521,19 +195520,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168362] = 6, + aux_sym_enum_definition_token1, + [165091] = 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(3443), 1, ts_builtin_sym_end, - STATE(2368), 2, + STATE(2302), 2, sym_comment, sym_include, - ACTIONS(3193), 29, + ACTIONS(2922), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -197563,621 +195563,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168410] = 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(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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168474] = 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(2370), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168540] = 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(2371), 2, - sym_comment, - sym_include, - ACTIONS(1192), 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, - [168606] = 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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168672] = 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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168738] = 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(2374), 2, - sym_comment, - sym_include, - 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, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168804] = 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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168870] = 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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [168936] = 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(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, - 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, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [168996] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(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_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [169052] = 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(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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169116] = 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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169182] = 6, + aux_sym_enum_definition_token1, + [165140] = 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(3263), 1, ts_builtin_sym_end, - STATE(2381), 2, + STATE(2303), 2, sym_comment, sym_include, - ACTIONS(3195), 29, + ACTIONS(3265), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -198207,69 +195606,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169294] = 6, + aux_sym_enum_definition_token1, + [165189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(2924), 1, ts_builtin_sym_end, - STATE(2383), 2, + STATE(2304), 2, sym_comment, sym_include, - ACTIONS(3261), 29, + ACTIONS(2926), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -198299,121 +195649,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169408] = 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(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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169474] = 6, + aux_sym_enum_definition_token1, + [165238] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3378), 1, + ACTIONS(2928), 1, ts_builtin_sym_end, - STATE(2386), 2, + STATE(2305), 2, sym_comment, sym_include, - ACTIONS(3259), 29, + ACTIONS(2930), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -198443,149 +195692,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169522] = 15, - ACTIONS(67), 1, + aux_sym_enum_definition_token1, + [165287] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + STATE(956), 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, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169588] = 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, + ACTIONS(1113), 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(2388), 2, + STATE(2306), 2, sym_comment, sym_include, - ACTIONS(1113), 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, - [169654] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 3, 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(2389), 2, - sym_comment, - sym_include, - 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, + ACTIONS(1127), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, @@ -198596,98 +195743,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [169720] = 15, - ACTIONS(67), 1, + [165350] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + STATE(956), 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, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2390), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2307), 2, sym_comment, sym_include, - 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [169786] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 3, 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(2391), 2, - sym_comment, - sym_include, - 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, + ACTIONS(1212), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, @@ -198698,83 +195793,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [169852] = 6, + [165413] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3255), 1, - ts_builtin_sym_end, - STATE(2392), 2, + STATE(956), 1, + sym__comparison_operator, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1210), 2, + sym__or_operator, + sym__and_operator, + STATE(2308), 2, sym_comment, sym_include, - ACTIONS(3257), 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, - [169900] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 3, 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(1119), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(2393), 2, - sym_comment, - sym_include, - ACTIONS(1121), 21, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, + ACTIONS(1208), 22, + 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, @@ -198785,42 +195838,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, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [169960] = 10, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [165472] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(702), 1, - sym__logical_operator, - STATE(707), 1, - sym__additive_operator, - STATE(709), 1, - sym__multiplicative_operator, - STATE(710), 1, + STATE(956), 1, sym__comparison_operator, - STATE(2394), 2, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1206), 2, + sym__or_operator, + sym__and_operator, + STATE(2309), 2, sym_comment, sym_include, - ACTIONS(1214), 3, + ACTIONS(1204), 25, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 23, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, + 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, @@ -198831,100 +195885,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_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [170016] = 14, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [165529] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + STATE(956), 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, + STATE(957), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__additive_operator, + STATE(959), 1, + sym__logical_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2395), 2, - sym_comment, - sym_include, - ACTIONS(1212), 6, + ACTIONS(1202), 2, 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [170080] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + STATE(2310), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, 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(2396), 2, - sym_comment, - sym_include, - 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, + ACTIONS(1200), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, @@ -198935,19 +195938,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [170146] = 6, + [165592] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3676), 1, + ACTIONS(2932), 1, ts_builtin_sym_end, - STATE(2397), 2, + STATE(2311), 2, sym_comment, sym_include, - ACTIONS(3237), 29, + ACTIONS(2934), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -198977,19 +195980,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170194] = 6, + aux_sym_enum_definition_token1, + [165641] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3678), 1, + ACTIONS(3445), 1, ts_builtin_sym_end, - STATE(2398), 2, + STATE(2312), 2, sym_comment, sym_include, - ACTIONS(3213), 29, + ACTIONS(2936), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199019,19 +196023,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170242] = 6, + aux_sym_enum_definition_token1, + [165690] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3680), 1, + ACTIONS(2938), 1, ts_builtin_sym_end, - STATE(2399), 2, + STATE(2313), 2, sym_comment, sym_include, - ACTIONS(3215), 29, + ACTIONS(2940), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199061,19 +196066,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170290] = 6, + aux_sym_enum_definition_token1, + [165739] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3217), 1, + ACTIONS(3547), 1, ts_builtin_sym_end, - STATE(2400), 2, + STATE(2314), 2, sym_comment, sym_include, - ACTIONS(3219), 29, + ACTIONS(3054), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199103,80 +196109,20 @@ static const uint16_t ts_small_parse_table[] = { 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(73), 1, - anon_sym_LBRACE, - 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(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, + aux_sym_enum_definition_token1, + [165788] = 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(3221), 1, ts_builtin_sym_end, - STATE(2402), 2, + STATE(2315), 2, sym_comment, sym_include, - ACTIONS(3221), 29, + ACTIONS(3106), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199206,19 +196152,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170472] = 6, + aux_sym_enum_definition_token1, + [165837] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, + ACTIONS(3477), 1, ts_builtin_sym_end, - STATE(2403), 2, + STATE(2316), 2, sym_comment, sym_include, - ACTIONS(3229), 29, + ACTIONS(2976), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199248,19 +196195,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170520] = 6, + aux_sym_enum_definition_token1, + [165886] = 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(3475), 1, ts_builtin_sym_end, - STATE(2404), 2, + STATE(2317), 2, sym_comment, sym_include, - ACTIONS(3227), 29, + ACTIONS(2974), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199290,19 +196238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170568] = 6, + aux_sym_enum_definition_token1, + [165935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3728), 1, + ACTIONS(3473), 1, ts_builtin_sym_end, - STATE(2405), 2, + STATE(2318), 2, sym_comment, sym_include, - ACTIONS(3231), 29, + ACTIONS(2972), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199332,19 +196281,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170616] = 6, + aux_sym_enum_definition_token1, + [165984] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3726), 1, + ACTIONS(3549), 1, ts_builtin_sym_end, - STATE(2406), 2, + STATE(2319), 2, sym_comment, sym_include, - ACTIONS(3233), 29, + ACTIONS(3056), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199374,19 +196324,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170664] = 6, + aux_sym_enum_definition_token1, + [166033] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3724), 1, + ACTIONS(3471), 1, ts_builtin_sym_end, - STATE(2407), 2, + STATE(2320), 2, sym_comment, sym_include, - ACTIONS(3235), 29, + ACTIONS(2970), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199416,19 +196367,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170712] = 6, + aux_sym_enum_definition_token1, + [166082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(2942), 1, ts_builtin_sym_end, - STATE(2408), 2, + STATE(2321), 2, sym_comment, sym_include, - ACTIONS(3239), 29, + ACTIONS(2944), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199458,19 +196410,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170760] = 6, + aux_sym_enum_definition_token1, + [166131] = 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(3267), 1, ts_builtin_sym_end, - STATE(2409), 2, + STATE(2322), 2, sym_comment, sym_include, - ACTIONS(3241), 29, + ACTIONS(3269), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199500,19 +196453,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, - [170808] = 6, - ACTIONS(3), 1, + aux_sym_enum_definition_token1, + [166180] = 24, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3718), 1, + ACTIONS(3734), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3736), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3738), 1, + aux_sym_input_expression_token1, + ACTIONS(3740), 1, + aux_sym_variable_definition_token3, + ACTIONS(3742), 1, + aux_sym_variable_definition_token4, + ACTIONS(3744), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3746), 1, + aux_sym_query_definition_token1, + ACTIONS(3750), 1, + aux_sym_stream_definition_token1, + ACTIONS(3754), 1, + aux_sym_button_definition_token1, + STATE(3189), 1, + sym_access_tuning, + STATE(3219), 1, + sym_scope_tuning, + STATE(3248), 1, + aux_sym_variable_definition_repeat1, + STATE(3357), 1, + aux_sym_buffer_definition_repeat1, + STATE(3381), 1, + aux_sym_workfile_definition_repeat1, + STATE(3383), 1, + sym_serialization_tuning, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3752), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(2323), 2, + sym_comment, + sym_include, + ACTIONS(3748), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [166265] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3469), 1, ts_builtin_sym_end, - STATE(2410), 2, + STATE(2324), 2, sym_comment, sym_include, - ACTIONS(3243), 29, + ACTIONS(2968), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199542,19 +196557,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170856] = 6, + aux_sym_enum_definition_token1, + [166314] = 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(3393), 1, ts_builtin_sym_end, - STATE(2411), 2, + STATE(2325), 2, sym_comment, sym_include, - ACTIONS(3247), 29, + ACTIONS(3134), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199584,19 +196600,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170904] = 6, + aux_sym_enum_definition_token1, + [166363] = 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(3271), 1, ts_builtin_sym_end, - STATE(2412), 2, + STATE(2326), 2, sym_comment, sym_include, - ACTIONS(3263), 29, + ACTIONS(3183), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199626,70 +196643,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_enum_definition_token1, + [166412] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, + ACTIONS(3467), 1, ts_builtin_sym_end, - STATE(2414), 2, + STATE(2327), 2, sym_comment, sym_include, - ACTIONS(3189), 29, + ACTIONS(2966), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199719,19 +196686,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171066] = 6, + aux_sym_enum_definition_token1, + [166461] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3712), 1, + ACTIONS(3277), 1, ts_builtin_sym_end, - STATE(2415), 2, + STATE(2328), 2, sym_comment, sym_include, - ACTIONS(3265), 29, + ACTIONS(3279), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199761,19 +196729,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171114] = 6, + aux_sym_enum_definition_token1, + [166510] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3463), 1, ts_builtin_sym_end, - STATE(2416), 2, + STATE(2329), 2, sym_comment, sym_include, - ACTIONS(3253), 29, + ACTIONS(2962), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199803,19 +196772,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171162] = 6, + aux_sym_enum_definition_token1, + [166559] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3710), 1, + ACTIONS(3273), 1, ts_builtin_sym_end, - STATE(2417), 2, + STATE(2330), 2, sym_comment, sym_include, - ACTIONS(3267), 29, + ACTIONS(3275), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199845,19 +196815,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171210] = 6, + aux_sym_enum_definition_token1, + [166608] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3708), 1, + ACTIONS(3215), 1, ts_builtin_sym_end, - STATE(2418), 2, + STATE(2331), 2, sym_comment, sym_include, - ACTIONS(3269), 29, + ACTIONS(3102), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199887,19 +196858,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171258] = 6, + aux_sym_enum_definition_token1, + [166657] = 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(3447), 1, ts_builtin_sym_end, - STATE(2419), 2, + STATE(2332), 2, sym_comment, sym_include, - ACTIONS(3199), 29, + ACTIONS(2946), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199929,19 +196901,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171306] = 6, + aux_sym_enum_definition_token1, + [166706] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3394), 1, + ACTIONS(3465), 1, ts_builtin_sym_end, - STATE(2420), 2, + STATE(2333), 2, sym_comment, sym_include, - ACTIONS(3201), 29, + ACTIONS(2964), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -199971,19 +196944,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171354] = 6, + aux_sym_enum_definition_token1, + [166755] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3382), 1, + ACTIONS(3449), 1, ts_builtin_sym_end, - STATE(2421), 2, + STATE(2334), 2, sym_comment, sym_include, - ACTIONS(2969), 29, + ACTIONS(2948), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200013,105 +196987,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_enum_definition_token1, + [166804] = 6, 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, + ACTIONS(3587), 1, ts_builtin_sym_end, - STATE(2424), 2, + STATE(2335), 2, sym_comment, sym_include, - ACTIONS(3211), 29, + ACTIONS(3499), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200141,19 +197030,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, - [171550] = 6, + aux_sym_enum_definition_token1, + [166853] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3756), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3758), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3760), 1, + aux_sym_input_expression_token1, + ACTIONS(3762), 1, + aux_sym_variable_definition_token3, + ACTIONS(3764), 1, + aux_sym_variable_definition_token4, + ACTIONS(3766), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3768), 1, + aux_sym_query_definition_token1, + ACTIONS(3772), 1, + aux_sym_stream_definition_token1, + ACTIONS(3776), 1, + aux_sym_button_definition_token1, + STATE(3185), 1, + sym_access_tuning, + STATE(3219), 1, + sym_scope_tuning, + STATE(3235), 1, + aux_sym_variable_definition_repeat1, + STATE(3362), 1, + aux_sym_buffer_definition_repeat1, + STATE(3376), 1, + aux_sym_workfile_definition_repeat1, + STATE(3383), 1, + sym_serialization_tuning, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3774), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(2336), 2, + sym_comment, + sym_include, + ACTIONS(3770), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [166938] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3388), 1, + ACTIONS(3593), 1, ts_builtin_sym_end, - STATE(2425), 2, + STATE(2337), 2, sym_comment, sym_include, - ACTIONS(3390), 29, + ACTIONS(3193), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200183,19 +197134,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171598] = 6, + aux_sym_enum_definition_token1, + [166987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3706), 1, + ACTIONS(3461), 1, ts_builtin_sym_end, - STATE(2426), 2, + STATE(2338), 2, sym_comment, sym_include, - ACTIONS(3271), 29, + ACTIONS(2960), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200225,19 +197177,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171646] = 6, + aux_sym_enum_definition_token1, + [167036] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3591), 1, ts_builtin_sym_end, - STATE(2427), 2, + STATE(2339), 2, sym_comment, sym_include, - ACTIONS(3386), 29, + ACTIONS(3165), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200267,19 +197220,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171694] = 6, + aux_sym_enum_definition_token1, + [167085] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3392), 1, + ACTIONS(3605), 1, ts_builtin_sym_end, - STATE(2428), 2, + STATE(2340), 2, sym_comment, sym_include, - ACTIONS(3203), 29, + ACTIONS(3243), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200309,19 +197263,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171742] = 6, + aux_sym_enum_definition_token1, + [167134] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3704), 1, + ACTIONS(3451), 1, ts_builtin_sym_end, - STATE(2429), 2, + STATE(2341), 2, sym_comment, sym_include, - ACTIONS(3273), 29, + ACTIONS(2950), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200351,19 +197306,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171790] = 6, + aux_sym_enum_definition_token1, + [167183] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3245), 1, + ACTIONS(3509), 1, ts_builtin_sym_end, - STATE(2430), 2, + STATE(2342), 2, sym_comment, sym_include, - ACTIONS(3205), 29, + ACTIONS(3014), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200393,19 +197349,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171838] = 6, + aux_sym_enum_definition_token1, + [167232] = 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(3453), 1, ts_builtin_sym_end, - STATE(2431), 2, + STATE(2343), 2, sym_comment, sym_include, - ACTIONS(3298), 29, + ACTIONS(2952), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, @@ -200435,39 +197392,180 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [171886] = 8, + aux_sym_enum_definition_token1, + [167281] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(3455), 1, + ts_builtin_sym_end, + STATE(2344), 2, + sym_comment, + sym_include, + ACTIONS(2954), 30, sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1581), 2, - sym__or_operator, - sym__and_operator, - STATE(2432), 2, + aux_sym_input_expression_token1, + aux_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, + aux_sym_enum_definition_token1, + [167330] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3457), 1, + ts_builtin_sym_end, + STATE(2345), 2, + sym_comment, + sym_include, + ACTIONS(2956), 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_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, + aux_sym_enum_definition_token1, + [167379] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3459), 1, + ts_builtin_sym_end, + STATE(2346), 2, sym_comment, sym_include, - ACTIONS(1579), 25, + ACTIONS(2958), 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_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, + aux_sym_enum_definition_token1, + [167428] = 18, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, + ACTIONS(3778), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3780), 1, + aux_sym_of_token1, + ACTIONS(3782), 1, + aux_sym_on_statement_token1, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + STATE(5178), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2347), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -200478,33 +197576,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [171937] = 8, + [167500] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2433), 2, + STATE(2348), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(3784), 5, 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, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -200520,35 +197624,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, - [171988] = 6, + [167560] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2434), 2, + ACTIONS(3788), 1, + sym__escaped_string, + STATE(2349), 2, sym_comment, sym_include, - ACTIONS(138), 3, - sym__namecolon, + ACTIONS(3786), 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, + [167606] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(631), 1, + sym__logical_operator, + STATE(632), 1, + sym__additive_operator, + STATE(633), 1, + sym__multiplicative_operator, + STATE(635), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(140), 26, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2350), 2, + sym_comment, + sym_include, + ACTIONS(1133), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 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, @@ -200559,105 +197716,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, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [172035] = 29, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [167672] = 14, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(631), 1, + sym__logical_operator, + STATE(632), 1, + sym__additive_operator, + STATE(633), 1, + sym__multiplicative_operator, + STATE(635), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2351), 2, + sym_comment, + sym_include, + ACTIONS(1202), 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(2425), 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, @@ -200668,37 +197766,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_scope_tuning_token1, - [172179] = 7, - ACTIONS(3), 1, + [167736] = 18, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3827), 1, - anon_sym_NO_DASHERROR, - STATE(2437), 2, - sym_comment, - sym_include, - ACTIONS(391), 3, - sym__namecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + aux_sym_of_token1, + ACTIONS(3792), 1, + aux_sym_on_statement_token1, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + STATE(4697), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(393), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2352), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -200709,36 +197820,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [172228] = 6, - ACTIONS(3), 1, + [167808] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2438), 2, + STATE(631), 1, + sym__logical_operator, + STATE(632), 1, + sym__additive_operator, + STATE(633), 1, + sym__multiplicative_operator, + STATE(635), 1, + sym__comparison_operator, + STATE(2353), 2, sym_comment, sym_include, - ACTIONS(142), 3, - sym__namecolon, + ACTIONS(1204), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 23, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, - anon_sym_SLASH, - sym_identifier, + anon_sym_COLON, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + 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, @@ -200749,238 +197864,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - 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_repeat_tuning_token1, 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, + [167864] = 12, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2442), 2, + STATE(2354), 2, sym_comment, sym_include, - ACTIONS(3829), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2409), 13, + ACTIONS(1210), 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, @@ -200994,36 +197912,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [172619] = 6, - ACTIONS(3), 1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [167924] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2355), 2, + sym_comment, + sym_include, + ACTIONS(204), 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(2425), 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, @@ -201034,34 +197964,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_scope_tuning_token1, - [172666] = 6, - ACTIONS(3), 1, + [167988] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2444), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2356), 2, + sym_comment, + sym_include, + ACTIONS(1234), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201072,38 +198015,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, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [172713] = 6, - ACTIONS(3), 1, + [168054] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2445), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, - sym__namecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(140), 26, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2357), 2, + sym_comment, + sym_include, + ACTIONS(1230), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201114,37 +198066,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, - [172760] = 6, - ACTIONS(3), 1, + [168120] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2446), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2358), 2, + sym_comment, + sym_include, + ACTIONS(1226), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201155,102 +198117,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, - [172807] = 29, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [168186] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, - sym__namedot, - ACTIONS(108), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(631), 1, + sym__logical_operator, + STATE(632), 1, + sym__additive_operator, + STATE(633), 1, + sym__multiplicative_operator, + STATE(635), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 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, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2359), 2, + sym_comment, + sym_include, + ACTIONS(1214), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 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, @@ -201261,40 +198168,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, - [172949] = 8, - ACTIONS(3), 1, + [168252] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2688), 1, - sym__namedot, - STATE(2517), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(123), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2449), 2, - sym_comment, - sym_include, - ACTIONS(125), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2360), 2, + sym_comment, + sym_include, + ACTIONS(1222), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201305,36 +198219,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_do_block_token1, - aux_sym_widget_field_token1, - [173000] = 6, - ACTIONS(3), 1, + [168318] = 18, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2450), 2, - sym_comment, - sym_include, - ACTIONS(115), 3, - sym__namecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(3794), 1, + aux_sym_of_token1, + ACTIONS(3796), 1, + aux_sym_on_statement_token1, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + STATE(4690), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(117), 26, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2361), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -201345,104 +198273,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, - [173047] = 29, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [168390] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2688), 1, - sym__namedot, - STATE(2517), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(134), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2452), 2, - sym_comment, - sym_include, - ACTIONS(136), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2362), 2, + sym_comment, + sym_include, + ACTIONS(1218), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201453,38 +198324,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, - [173191] = 7, - ACTIONS(3), 1, + [168456] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3834), 1, - sym__namedot, - ACTIONS(108), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 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, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2363), 2, + sym_comment, + sym_include, + ACTIONS(1129), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201495,39 +198375,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, - [173240] = 8, - ACTIONS(3), 1, + [168522] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2750), 1, - sym__namecolon, - STATE(1997), 1, - aux_sym_object_access_repeat1, - ACTIONS(89), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2454), 2, - sym_comment, - sym_include, - ACTIONS(91), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2364), 2, + sym_comment, + sym_include, + ACTIONS(1214), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201538,40 +198426,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, - anon_sym_NO_DASHERROR, - [173291] = 9, - ACTIONS(3), 1, + [168588] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + STATE(2365), 2, + sym_comment, + sym_include, + ACTIONS(1210), 21, + sym__or_operator, + sym__and_operator, + 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, @@ -201582,162 +198471,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, - 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, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [168648] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2458), 2, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + STATE(2366), 2, sym_comment, sym_include, - ACTIONS(138), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(140), 26, + ACTIONS(1204), 3, 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, + ACTIONS(1206), 23, sym__or_operator, sym__and_operator, - STATE(2459), 2, - sym_comment, - sym_include, - ACTIONS(71), 25, - 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, @@ -201748,88 +198517,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_when_expression_token1, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [173538] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [168704] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(680), 1, sym__logical_operator, - STATE(458), 1, + STATE(681), 1, sym__additive_operator, - STATE(465), 1, + STATE(682), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(683), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 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, + STATE(2367), 2, sym_comment, sym_include, - ACTIONS(100), 3, - sym__namecolon, + ACTIONS(1202), 6, 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_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -201840,44 +198570,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [173650] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [168768] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(680), 1, sym__logical_operator, - STATE(458), 1, + STATE(681), 1, sym__additive_operator, - STATE(465), 1, + STATE(682), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(683), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2462), 2, + STATE(2368), 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, + ACTIONS(1133), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -201891,36 +198621,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [173713] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [168834] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(457), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - STATE(2463), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 22, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(2369), 2, + sym_comment, + sym_include, + ACTIONS(1129), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -201934,40 +198672,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_of_token1, - aux_sym_on_statement_token1, - [173768] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [168900] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 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, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - anon_sym_COMMA, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2370), 2, + sym_comment, + sym_include, + ACTIONS(1218), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -201981,45 +198723,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_of_token1, - aux_sym_on_statement_token1, - [173827] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [168966] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2465), 2, + STATE(2371), 2, sym_comment, sym_include, - ACTIONS(1196), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2409), 13, + ACTIONS(1222), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202033,83 +198774,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [173892] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [169032] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 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, + STATE(2372), 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, + ACTIONS(1226), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 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, @@ -202120,49 +198825,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, - aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [174004] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [169098] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3844), 1, - sym__terminator, - ACTIONS(3846), 1, - aux_sym_when_expression_token1, - STATE(589), 1, + STATE(631), 1, sym__logical_operator, - STATE(590), 1, + STATE(632), 1, sym__additive_operator, - STATE(591), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(592), 1, + STATE(635), 1, sym__comparison_operator, - STATE(5880), 1, - sym_when_expression, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2468), 2, + STATE(2373), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1230), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202176,43 +198876,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174073] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [169164] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2469), 2, + STATE(2374), 2, sym_comment, sym_include, - ACTIONS(1200), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2409), 13, + ACTIONS(1234), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202226,43 +198927,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174138] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [169230] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(457), 1, + STATE(631), 1, sym__logical_operator, - STATE(458), 1, + STATE(632), 1, sym__additive_operator, - STATE(465), 1, + STATE(633), 1, sym__multiplicative_operator, - STATE(466), 1, + STATE(635), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2470), 2, + STATE(2375), 2, sym_comment, sym_include, - ACTIONS(1113), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2409), 13, + ACTIONS(204), 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(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202276,29 +198977,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174203] = 8, + [169294] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3800), 1, + sym__escaped_string, + STATE(2376), 2, + sym_comment, + sym_include, + ACTIONS(3798), 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, + [169340] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3804), 1, + sym__escaped_string, + STATE(2377), 2, + sym_comment, + sym_include, + ACTIONS(3802), 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, + [169386] = 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, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2471), 2, + STATE(2378), 2, sym_comment, sym_include, - ACTIONS(121), 25, + ACTIONS(1595), 26, + 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, @@ -202317,31 +199098,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, - [174254] = 8, + 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, + [169438] = 9, 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, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(3229), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2472), 2, + STATE(2379), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(1377), 25, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -202360,31 +199148,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, - [174305] = 8, + [169492] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2690), 1, + ACTIONS(3806), 1, sym__namecolon, - STATE(1737), 1, - aux_sym_object_access_repeat1, - ACTIONS(85), 2, + ACTIONS(95), 2, sym__or_operator, sym__and_operator, - STATE(2473), 2, + STATE(2380), 3, sym_comment, sym_include, - ACTIONS(87), 25, + aux_sym_object_access_repeat1, + ACTIONS(97), 26, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_input_expression_token2, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -202403,48 +199190,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, - [174356] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [169542] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(2762), 1, + sym__namecolon, + STATE(2380), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 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, + STATE(2381), 2, sym_comment, sym_include, - ACTIONS(1208), 3, + ACTIONS(93), 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(2409), 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, @@ -202455,43 +199234,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174421] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [169594] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(3809), 1, + aux_sym_of_token1, + ACTIONS(3811), 1, + aux_sym_on_statement_token1, + STATE(734), 1, sym__comparison_operator, - ACTIONS(1090), 2, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + STATE(4705), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2475), 2, + STATE(2382), 2, sym_comment, sym_include, - ACTIONS(1192), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202505,27 +199289,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174486] = 7, + [169666] = 8, 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, + ACTIONS(2762), 1, sym__namecolon, + STATE(2380), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - ACTIONS(158), 25, + STATE(2383), 2, + sym_comment, + sym_include, + ACTIONS(93), 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, @@ -202544,49 +199332,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [174535] = 15, - ACTIONS(67), 1, + [169718] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2384), 2, + sym_comment, + sym_include, + ACTIONS(1595), 26, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + aux_sym__block_terminator_token1, 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -202597,28 +199373,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174600] = 8, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [169770] = 7, 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, + ACTIONS(3813), 1, + sym__namecolon, + ACTIONS(95), 2, sym__or_operator, sym__and_operator, - STATE(2478), 2, + STATE(2385), 3, sym_comment, sym_include, - ACTIONS(106), 25, + aux_sym_object_access_repeat1, + ACTIONS(97), 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, @@ -202637,27 +199418,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, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [174651] = 8, + [169820] = 9, 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, + ACTIONS(2661), 1, + anon_sym_LBRACK, + ACTIONS(2663), 1, + anon_sym_LPAREN, STATE(2515), 1, - aux_sym_member_access_repeat1, - ACTIONS(119), 2, + sym_function_arguments, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(2479), 2, + STATE(2386), 2, sym_comment, sym_include, - ACTIONS(121), 25, + ACTIONS(73), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -202683,119 +199465,70 @@ static const uint16_t ts_small_parse_table[] = { 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, + [169874] = 5, 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, + ACTIONS(3818), 1, + sym__escaped_string, + STATE(2387), 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(3816), 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, + [169920] = 8, 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, + ACTIONS(2667), 1, sym__namecolon, + STATE(2195), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, + STATE(2388), 2, + sym_comment, + sym_include, + ACTIONS(93), 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, @@ -202816,27 +199549,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - [174865] = 6, + anon_sym_NO_DASHERROR, + [169972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2483), 2, + STATE(2389), 2, sym_comment, sym_include, - ACTIONS(138), 3, + ACTIONS(106), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(140), 26, + ACTIONS(108), 27, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -202855,29 +199589,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_function_call_token1, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [174912] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [170020] = 8, 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, + ACTIONS(2752), 1, sym__namecolon, + STATE(2385), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - ACTIONS(140), 26, + STATE(2390), 2, + sym_comment, + sym_include, + ACTIONS(93), 26, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -202896,33 +199634,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - [174959] = 9, + anon_sym_NO_DASHERROR, + [170072] = 8, 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, + ACTIONS(2752), 1, + sym__namecolon, + STATE(2385), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2485), 2, + STATE(2391), 2, sym_comment, sym_include, - ACTIONS(71), 24, + ACTIONS(93), 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, @@ -202943,27 +199680,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [175012] = 7, + [170124] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2726), 1, + ACTIONS(2742), 1, sym__namecolon, - STATE(2101), 1, + STATE(2434), 1, aux_sym_object_access_repeat1, - ACTIONS(89), 2, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2486), 2, + STATE(2392), 2, sym_comment, sym_include, - ACTIONS(91), 26, + ACTIONS(93), 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, @@ -202985,30 +199723,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [175061] = 5, + [170174] = 13, 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, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(102), 27, + STATE(2393), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, 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, + ACTIONS(1131), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203024,97 +199772,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, - [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, + [170236] = 13, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1202), 2, sym__or_operator, sym__and_operator, - STATE(2489), 2, + STATE(2394), 2, sym_comment, sym_include, - ACTIONS(1354), 24, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1200), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203130,42 +199821,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, - [175252] = 9, - ACTIONS(3), 1, + [170298] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(680), 1, + sym__logical_operator, + STATE(681), 1, + sym__additive_operator, + STATE(682), 1, + sym__multiplicative_operator, + STATE(683), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2490), 2, - sym_comment, - sym_include, - ACTIONS(71), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2395), 2, + sym_comment, + sym_include, + ACTIONS(3820), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2425), 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, @@ -203176,27 +199872,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_scope_tuning_token1, - [175305] = 6, + [170364] = 10, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1206), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, + STATE(2396), 2, + sym_comment, + sym_include, + ACTIONS(1204), 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, @@ -203215,34 +199917,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_function_call_token1, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [175352] = 7, + aux_sym_scope_tuning_token1, + [170420] = 11, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1210), 2, sym__or_operator, sym__and_operator, - STATE(2492), 3, + STATE(2397), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1208), 21, + sym_identifier, 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, @@ -203258,33 +199964,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_scope_tuning_token1, - [175401] = 7, + [170478] = 13, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2493), 3, + STATE(2398), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 25, + ACTIONS(1105), 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(1212), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203300,33 +200014,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, - [175450] = 8, + [170540] = 13, 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(85), 2, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2494), 2, + STATE(2399), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1127), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203342,31 +200063,31 @@ static 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, - [175501] = 8, + [170602] = 9, 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, + ACTIONS(2693), 1, + anon_sym_LBRACK, + ACTIONS(2695), 1, + anon_sym_LPAREN, + STATE(2446), 1, + sym_function_arguments, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(2495), 2, + STATE(2400), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(73), 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, @@ -203387,37 +200108,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [175552] = 8, - ACTIONS(3), 1, + [170656] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, - anon_sym_LPAREN, - STATE(2476), 1, - sym_function_arguments, - ACTIONS(85), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(631), 1, + sym__logical_operator, + STATE(632), 1, + sym__additive_operator, + STATE(633), 1, + sym__multiplicative_operator, + STATE(635), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2496), 2, - sym_comment, - sym_include, - ACTIONS(87), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2401), 2, + sym_comment, + sym_include, + ACTIONS(3820), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 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, @@ -203428,99 +200159,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_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, + [170722] = 13, 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(65), 2, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2498), 2, + STATE(2402), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(1105), 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(1216), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203536,34 +200208,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, - [175747] = 8, + [170784] = 13, 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, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2499), 2, + STATE(2403), 2, sym_comment, sym_include, - ACTIONS(106), 25, + ACTIONS(1105), 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(3822), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203579,34 +200257,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [175798] = 8, + [170846] = 13, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2500), 2, + STATE(2404), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1220), 4, + sym_identifier, sym__terminator, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203622,95 +200306,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, - 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, + [170908] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + STATE(2405), 2, + sym_comment, + sym_include, + ACTIONS(106), 3, 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, + ACTIONS(108), 27, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + 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, @@ -203729,98 +200346,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, - 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, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [170956] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_LPAREN, - STATE(2510), 1, - sym_function_arguments, - ACTIONS(85), 2, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2504), 2, + STATE(2406), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1224), 4, + sym_identifier, sym__terminator, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203836,50 +200397,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_scope_tuning_token1, - [176137] = 17, - ACTIONS(67), 1, + [171018] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(2709), 1, + sym__namecolon, + STATE(2216), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2407), 2, + sym_comment, + sym_include, + ACTIONS(93), 26, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2505), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -203890,29 +200439,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176206] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [171070] = 13, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(117), 26, + STATE(2408), 2, + sym_comment, + sym_include, + ACTIONS(1105), 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(1228), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203928,35 +200490,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, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [176253] = 8, + [171132] = 13, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2507), 2, + STATE(2409), 2, sym_comment, sym_include, - ACTIONS(136), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1232), 4, + sym_identifier, sym__terminator, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -203972,31 +200539,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [176304] = 6, + [171194] = 13, 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, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(204), 2, sym__or_operator, sym__and_operator, - ACTIONS(117), 26, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2410), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(206), 4, + sym_identifier, sym__terminator, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204012,35 +200588,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_when_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - [176351] = 8, + [171256] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(204), 2, sym__or_operator, sym__and_operator, - STATE(2509), 2, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2411), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(1105), 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(206), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204056,33 +200636,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [176402] = 7, + [171316] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(158), 25, + STATE(2412), 2, + sym_comment, + sym_include, + ACTIONS(1105), 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(1232), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204098,35 +200684,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [176451] = 9, + [171376] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2511), 2, + STATE(2413), 2, sym_comment, sym_include, - ACTIONS(1354), 24, - anon_sym_COLON, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1228), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204142,33 +200732,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_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [176504] = 8, + [171436] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2512), 2, + STATE(2414), 2, sym_comment, sym_include, - ACTIONS(136), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1224), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204184,34 +200780,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_when_expression_token1, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [176555] = 7, + [171496] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3869), 1, - sym__namedoublecolon, - ACTIONS(127), 2, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2513), 3, + STATE(2415), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 25, + ACTIONS(1105), 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(1220), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204227,34 +200828,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, - [176604] = 8, + [171556] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2514), 2, + STATE(2416), 2, sym_comment, sym_include, - ACTIONS(121), 25, + ACTIONS(1105), 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(1216), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204270,32 +200876,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [176655] = 7, + [171616] = 13, 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, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2515), 3, + STATE(2417), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 25, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1131), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204311,34 +200925,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_when_expression_token1, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [176704] = 7, + [171678] = 12, 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(391), 3, - sym__namecolon, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(393), 25, + STATE(2418), 2, + sym_comment, + sym_include, + ACTIONS(1105), 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(1127), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204354,34 +200973,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, - [176753] = 8, + [171738] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2517), 2, + STATE(2419), 2, sym_comment, sym_include, - ACTIONS(106), 25, + ACTIONS(1105), 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(1212), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204397,32 +201021,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_do_block_token1, - aux_sym_widget_field_token1, - [176804] = 8, + [171798] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3877), 1, - sym_identifier, - STATE(2795), 1, - sym_qualified_name, - ACTIONS(1581), 2, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1210), 2, sym__or_operator, sym__and_operator, - STATE(2518), 2, + STATE(2420), 2, sym_comment, sym_include, - ACTIONS(1579), 24, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(1208), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + 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, @@ -204438,68 +201066,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_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(2519), 2, - sym_comment, - sym_include, - ACTIONS(3773), 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, - [176898] = 6, + aux_sym_include_argument_token1, + [171854] = 9, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1206), 2, sym__or_operator, sym__and_operator, - ACTIONS(110), 25, + STATE(2421), 2, + sym_comment, + sym_include, + ACTIONS(1204), 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, @@ -204518,38 +201111,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_do_block_token1, - aux_sym_widget_field_token1, - [176944] = 8, - ACTIONS(3), 1, + aux_sym_include_argument_token1, + [171908] = 18, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2746), 1, - anon_sym_LPAREN, - STATE(2550), 1, - sym_function_arguments, - ACTIONS(85), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(3824), 1, + aux_sym_of_token1, + ACTIONS(3826), 1, + aux_sym_on_statement_token1, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + STATE(4715), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2521), 2, - sym_comment, - sym_include, - ACTIONS(87), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2422), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -204560,32 +201166,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [176994] = 6, + [171980] = 12, 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, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1202), 2, sym__or_operator, sym__and_operator, - ACTIONS(393), 25, + STATE(2423), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1200), 5, 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, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204601,32 +201214,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_include_argument_token1, - [177040] = 7, + [172040] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3882), 1, - sym__namedoublecolon, - ACTIONS(127), 2, + STATE(866), 1, + sym__comparison_operator, + STATE(867), 1, + sym__multiplicative_operator, + STATE(868), 1, + sym__additive_operator, + STATE(869), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2523), 3, + STATE(2424), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 24, + ACTIONS(1105), 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(1131), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204642,34 +201262,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_scope_tuning_token1, - [177088] = 9, + [172100] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3885), 1, - sym_identifier, - ACTIONS(3888), 1, - aux_sym_input_expression_token2, - STATE(2981), 1, - sym_qualified_name, - ACTIONS(1358), 2, + STATE(798), 1, + sym__comparison_operator, + STATE(799), 1, + sym__multiplicative_operator, + STATE(800), 1, + sym__additive_operator, + STATE(801), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2524), 2, + STATE(2425), 2, sym_comment, sym_include, - ACTIONS(1354), 23, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(3822), 4, + sym_identifier, sym__terminator, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204685,29 +201311,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, - [177140] = 7, + [172162] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2726), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, sym__namecolon, - STATE(2132), 1, + STATE(1963), 1, aux_sym_object_access_repeat1, - ACTIONS(65), 2, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2525), 2, + STATE(2426), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(93), 26, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -204726,46 +201353,79 @@ static 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, - [177188] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [172214] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(3830), 1, + sym__escaped_string, + STATE(2427), 2, + sym_comment, + sym_include, + ACTIONS(3828), 30, + anon_sym_COLON, anon_sym_LBRACE, - 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_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, + [172260] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2428), 2, + sym_comment, + sym_include, + ACTIONS(106), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(108), 27, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3890), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - STATE(2526), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -204776,30 +201436,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [177252] = 7, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [172308] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3892), 1, - sym__namedot, - ACTIONS(150), 2, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1202), 2, sym__or_operator, sym__and_operator, - STATE(2527), 2, + STATE(2429), 2, sym_comment, sym_include, - ACTIONS(152), 25, + ACTIONS(1105), 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(1200), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204815,26 +201487,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, - aux_sym_scope_tuning_token1, - [177300] = 8, + [172370] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2748), 1, - sym__namedot, - STATE(2553), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(134), 2, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1206), 2, sym__or_operator, sym__and_operator, - STATE(2528), 2, + STATE(2430), 2, sym_comment, sym_include, - ACTIONS(136), 24, + ACTIONS(1204), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -204859,31 +201533,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [177350] = 7, + [172426] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3894), 1, - sym__namedot, - ACTIONS(108), 2, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1210), 2, sym__or_operator, sym__and_operator, - STATE(2529), 3, + STATE(2431), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 24, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1208), 21, + sym_identifier, 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, @@ -204900,32 +201579,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - [177398] = 8, + anon_sym_NO_DASHERROR, + [172484] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2734), 1, - sym__namedot, - STATE(2529), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(104), 2, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2530), 2, + STATE(2432), 2, sym_comment, sym_include, - ACTIONS(106), 24, + ACTIONS(1105), 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(1212), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204941,31 +201629,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_scope_tuning_token1, - [177448] = 7, + [172546] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3897), 1, - anon_sym_NO_DASHERROR, - STATE(2531), 2, - sym_comment, - sym_include, - ACTIONS(391), 3, - sym__namecolon, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(393), 24, + STATE(2433), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1127), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -204981,27 +201678,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, - aux_sym_scope_tuning_token1, - [177496] = 5, + [172608] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2532), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, + ACTIONS(3832), 1, sym__namecolon, + ACTIONS(95), 2, sym__or_operator, sym__and_operator, - ACTIONS(140), 26, + STATE(2434), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(97), 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, @@ -205021,29 +201720,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - aux_sym_function_call_token1, - [177540] = 5, + [172656] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2533), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namecolon, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, + STATE(2435), 2, + sym_comment, + sym_include, + ACTIONS(1105), 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(1216), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -205059,28 +201769,31 @@ static 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, - [177584] = 6, + [172718] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2534), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__namecolon, + ACTIONS(2703), 1, + anon_sym_LBRACK, + ACTIONS(2705), 1, + anon_sym_LPAREN, + STATE(2523), 1, + sym_function_arguments, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(168), 25, + STATE(2436), 2, + sym_comment, + sym_include, + ACTIONS(73), 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, @@ -205099,31 +201812,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [177630] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [172772] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2535), 2, - sym_comment, - sym_include, - ACTIONS(162), 3, - sym__namedoublecolon, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(164), 25, + STATE(2437), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1220), 4, + sym_identifier, sym__terminator, - anon_sym_COMMA, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [172834] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + STATE(2438), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(1224), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -205139,31 +201912,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_when_expression_token1, - aux_sym_scope_tuning_token1, - [177676] = 6, + [172896] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2536), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__namecolon, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(168), 25, + STATE(2439), 2, + sym_comment, + sym_include, + ACTIONS(1105), 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(1228), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -205179,34 +201961,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, - [177722] = 9, + [172958] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3899), 1, - sym_identifier, - ACTIONS(3902), 1, - aux_sym_input_expression_token2, - STATE(2908), 1, - sym_qualified_name, - ACTIONS(1358), 2, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(1107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2537), 2, + STATE(2440), 2, sym_comment, sym_include, - ACTIONS(1354), 23, + ACTIONS(1105), 3, anon_sym_SLASH, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1232), 4, + sym_identifier, sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 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, + [173020] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym__comparison_operator, + STATE(805), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__additive_operator, + STATE(809), 1, + sym__logical_operator, + ACTIONS(204), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1107), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2441), 2, + sym_comment, + sym_include, + ACTIONS(1105), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(206), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1109), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -205222,30 +202059,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [173082] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3756), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3758), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3762), 1, + aux_sym_variable_definition_token3, + ACTIONS(3764), 1, + aux_sym_variable_definition_token4, + ACTIONS(3766), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3768), 1, + aux_sym_query_definition_token1, + ACTIONS(3835), 1, + aux_sym_argument_mode_token3, + ACTIONS(3839), 1, + aux_sym_property_definition_token1, + ACTIONS(3841), 1, + aux_sym_event_definition_token1, + STATE(3074), 1, + sym_access_tuning, + STATE(3130), 1, + sym_scope_tuning, + STATE(3212), 1, + aux_sym_property_definition_repeat1, + STATE(3235), 1, + aux_sym_variable_definition_repeat1, + STATE(3266), 1, + sym_serialization_tuning, + STATE(3298), 1, + aux_sym_event_definition_repeat1, + STATE(3310), 1, + sym_property_type, + STATE(3362), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3837), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2442), 2, + sym_comment, + sym_include, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [177774] = 7, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [173168] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2726), 1, + ACTIONS(2742), 1, sym__namecolon, - STATE(2132), 1, + STATE(2434), 1, aux_sym_object_access_repeat1, - ACTIONS(85), 2, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2538), 2, + STATE(2443), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(93), 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, @@ -205265,36 +202163,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [177822] = 7, - ACTIONS(3), 1, + [173218] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_LPAREN, - STATE(2560), 1, - sym_function_arguments, - ACTIONS(85), 2, - sym__or_operator, - sym__and_operator, - STATE(2539), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + STATE(2444), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(1204), 3, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 22, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - anon_sym_DQUOTE, + 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, @@ -205305,26 +202206,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_include_argument_token1, - [177870] = 8, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [173273] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3904), 1, - sym_identifier, - STATE(2696), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(2709), 1, + sym__namecolon, + STATE(2138), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(2540), 2, + STATE(2445), 2, sym_comment, sym_include, - ACTIONS(1579), 24, + ACTIONS(73), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, anon_sym_COMMA, aux_sym_input_expression_token2, @@ -205348,65 +202251,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [177920] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3799), 1, - sym__escaped_string, - STATE(2541), 2, - sym_comment, - sym_include, - ACTIONS(3797), 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, - [177964] = 6, + [173324] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2542), 2, + ACTIONS(3843), 1, + aux_sym_function_call_token1, + STATE(2446), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(166), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(148), 25, + ACTIONS(168), 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, @@ -205425,30 +202291,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [178010] = 8, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [173373] = 9, 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(2008), 1, - aux_sym_object_access_repeat1, - ACTIONS(85), 2, + ACTIONS(3845), 1, + sym_identifier, + ACTIONS(3848), 1, + aux_sym_input_expression_token2, + STATE(2873), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2543), 2, + STATE(2447), 2, sym_comment, sym_include, - ACTIONS(87), 24, + ACTIONS(1377), 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, @@ -205467,25 +202335,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_when_expression_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [178060] = 7, + [173426] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3907), 1, - sym__namedot, - ACTIONS(108), 2, - sym__or_operator, - sym__and_operator, - STATE(2544), 3, + STATE(2448), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 24, + ACTIONS(128), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(130), 26, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -205508,30 +202374,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_when_expression_token1, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, anon_sym_NO_DASHERROR, - [178108] = 8, + [173473] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2748), 1, - sym__namedot, - STATE(2553), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(123), 2, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(3850), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2545), 2, + STATE(2449), 2, sym_comment, sym_include, - ACTIONS(125), 24, + ACTIONS(1377), 24, + anon_sym_COLON, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205550,27 +202420,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, - [178158] = 5, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [173526] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2546), 2, - sym_comment, - sym_include, - ACTIONS(115), 3, - sym__namecolon, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2665), 1, + sym__namedot, + STATE(2451), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - ACTIONS(117), 26, + STATE(2450), 2, + sym_comment, + sym_include, + ACTIONS(104), 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, @@ -205589,30 +202462,31 @@ static 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, - [178202] = 7, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [173577] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2724), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2665), 1, sym__namedot, - STATE(2580), 1, + STATE(2464), 1, aux_sym_qualified_name_repeat1, - ACTIONS(134), 2, + ACTIONS(132), 2, sym__or_operator, sym__and_operator, - STATE(2547), 2, + STATE(2451), 2, sym_comment, sym_include, - ACTIONS(136), 25, + ACTIONS(134), 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, @@ -205631,43 +202505,112 @@ static 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, - [178250] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [173628] = 29, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3040), 1, + sym_of, + STATE(3049), 1, + sym__pre_tuning, + STATE(3110), 1, + aux_sym_for_phrase_repeat1, + STATE(3113), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3530), 1, + aux_sym_for_phrase_repeat2, + STATE(4174), 1, + sym_on_error_phrase, + STATE(4433), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5152), 1, + aux_sym_for_statement_repeat1, + STATE(5153), 1, + sym_on_stop_phrase, + STATE(5581), 1, + sym_body, + STATE(2452), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [173721] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + ACTIONS(3864), 1, + sym__terminator, + ACTIONS(3866), 1, + aux_sym_when_expression_token1, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + STATE(5588), 1, + sym_when_expression, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3910), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2548), 2, + STATE(2453), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205681,25 +202624,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [178314] = 6, + [173790] = 29, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3038), 1, + sym_of, + STATE(3052), 1, + sym__pre_tuning, + STATE(3120), 1, + sym_where_clause, + STATE(3121), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3571), 1, + aux_sym_for_phrase_repeat2, + STATE(4186), 1, + sym_on_error_phrase, + STATE(4375), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4813), 1, + aux_sym_for_statement_repeat1, + STATE(4816), 1, + sym_on_stop_phrase, + STATE(5815), 1, + sym_body, + STATE(2454), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [173883] = 29, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3027), 1, + sym_of, + STATE(3055), 1, + sym__pre_tuning, + STATE(3087), 1, + sym_where_clause, + STATE(3088), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3534), 1, + aux_sym_for_phrase_repeat2, + STATE(4113), 1, + sym_on_error_phrase, + STATE(4535), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(4916), 1, + sym_on_stop_phrase, + STATE(5963), 1, + sym_body, + STATE(2455), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [173976] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2549), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__namecolon, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(3868), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(168), 25, + STATE(2456), 2, + sym_comment, + sym_include, + ACTIONS(1377), 24, + anon_sym_COLON, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205718,30 +202793,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [178360] = 7, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [174029] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3912), 1, - aux_sym_function_call_token1, - STATE(2550), 2, - sym_comment, - sym_include, - ACTIONS(156), 3, - sym__namecolon, + ACTIONS(2707), 1, + sym__namedot, + STATE(2484), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - ACTIONS(158), 24, + STATE(2457), 2, + sym_comment, + sym_include, + ACTIONS(138), 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, @@ -205760,31 +202837,31 @@ static 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, - [178408] = 8, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [174080] = 9, 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(1976), 1, - aux_sym_object_access_repeat1, - ACTIONS(65), 2, + ACTIONS(3870), 1, + sym_identifier, + ACTIONS(3873), 1, + aux_sym_input_expression_token2, + STATE(2742), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2551), 2, + STATE(2458), 2, sym_comment, sym_include, - ACTIONS(71), 24, + ACTIONS(1377), 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, @@ -205803,22 +202880,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, aux_sym_scope_tuning_token1, - [178458] = 6, + anon_sym_NO_DASHERROR, + [174133] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2552), 2, - sym_comment, - sym_include, - ACTIONS(146), 3, - sym__namecolon, + ACTIONS(2697), 1, + sym__namedot, + STATE(2521), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - ACTIONS(148), 25, + STATE(2459), 2, + sym_comment, + sym_include, + ACTIONS(104), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -205844,24 +202926,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [178504] = 8, + [174184] = 9, 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_LBRACK, ACTIONS(2748), 1, - sym__namedot, - STATE(2544), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(104), 2, + anon_sym_LPAREN, + STATE(2601), 1, + sym_function_arguments, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(2553), 2, + STATE(2460), 2, sym_comment, sym_include, - ACTIONS(106), 24, + ACTIONS(73), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -205886,25 +202970,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [178554] = 6, + [174237] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2554), 2, + STATE(2461), 2, sym_comment, sym_include, - ACTIONS(162), 3, - sym__namedoublecolon, + ACTIONS(110), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(164), 25, + ACTIONS(112), 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, @@ -205925,29 +203010,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [178600] = 8, + aux_sym_function_call_token1, + [174284] = 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, + ACTIONS(2705), 1, + anon_sym_LPAREN, + STATE(2523), 1, + sym_function_arguments, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - STATE(2555), 2, + STATE(2462), 2, sym_comment, sym_include, - ACTIONS(1579), 24, - anon_sym_COLON, + ACTIONS(89), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205966,30 +203052,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_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [178650] = 8, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [174335] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2752), 1, - sym__namedoublecolon, - STATE(2630), 1, - aux_sym_member_access_repeat1, - ACTIONS(119), 2, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_function_arguments, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(2556), 2, + STATE(2463), 2, sym_comment, sym_include, - ACTIONS(121), 24, + ACTIONS(73), 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, @@ -206009,27 +203098,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [178700] = 6, + [174388] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2557), 2, - sym_comment, - sym_include, - ACTIONS(162), 3, - sym__namedoublecolon, + ACTIONS(3875), 1, + sym__namedot, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - ACTIONS(164), 25, + STATE(2464), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 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, @@ -206048,38 +203137,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, - [178746] = 8, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [174437] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2750), 1, - sym__namecolon, - STATE(2008), 1, - aux_sym_object_access_repeat1, - ACTIONS(65), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2558), 2, - sym_comment, - sym_include, - ACTIONS(71), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2465), 2, + sym_comment, + sym_include, + ACTIONS(1133), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 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, @@ -206090,30 +203190,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, - [178796] = 7, + [174502] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2724), 1, - sym__namedot, - STATE(2580), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(123), 2, - sym__or_operator, - sym__and_operator, - STATE(2559), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2466), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(128), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(130), 26, 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, @@ -206132,28 +203228,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [178844] = 6, + anon_sym_NO_DASHERROR, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [174549] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3914), 1, - aux_sym_function_call_token1, - STATE(2560), 2, - sym_comment, - sym_include, - ACTIONS(156), 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2709), 1, sym__namecolon, + STATE(2138), 1, + aux_sym_object_access_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(158), 25, + STATE(2467), 2, + sym_comment, + sym_include, + ACTIONS(89), 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, @@ -206172,22 +203272,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [178890] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [174600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2561), 2, + STATE(2468), 2, sym_comment, sym_include, - ACTIONS(138), 3, + ACTIONS(140), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(140), 25, + ACTIONS(142), 26, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -206211,95 +203312,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_when_expression_token1, aux_sym_scope_tuning_token1, aux_sym_function_call_token1, - [178936] = 15, - ACTIONS(67), 1, + [174647] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2697), 1, + sym__namedot, + STATE(2521), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(136), 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, - STATE(2562), 2, + STATE(2469), 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, - [179000] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(138), 25, 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(2405), 2, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2563), 2, - sym_comment, - sym_include, - ACTIONS(1212), 4, - sym__or_operator, - sym__and_operator, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2409), 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, @@ -206310,38 +203356,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179062] = 10, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [174698] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(2564), 2, + STATE(2470), 2, sym_comment, sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 21, + ACTIONS(128), 3, + sym__namecolon, sym__or_operator, sym__and_operator, + ACTIONS(130), 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, @@ -206353,41 +203397,35 @@ 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, - [179116] = 12, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [174745] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1119), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2565), 2, + STATE(2471), 2, sym_comment, sym_include, - ACTIONS(1121), 19, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, + ACTIONS(142), 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, @@ -206399,46 +203437,40 @@ 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, - [179174] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [174792] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2695), 1, + anon_sym_LPAREN, + STATE(2446), 1, + sym_function_arguments, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(1196), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + STATE(2472), 2, + sym_comment, + sym_include, + ACTIONS(89), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2566), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206449,45 +203481,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179238] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [174843] = 29, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, - ACTIONS(1117), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3033), 1, + sym_of, + STATE(3051), 1, + sym__pre_tuning, + STATE(3107), 1, + sym_where_clause, + STATE(3124), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3555), 1, + aux_sym_for_phrase_repeat2, + STATE(4221), 1, + sym_on_error_phrase, + STATE(4331), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4792), 1, + aux_sym_for_statement_repeat1, + STATE(4798), 1, + sym_on_stop_phrase, + STATE(6024), 1, + sym_body, + STATE(2473), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [174936] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, + sym__namecolon, + STATE(2010), 1, + aux_sym_object_access_repeat1, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(2474), 2, + sym_comment, + sym_include, + ACTIONS(89), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2567), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206498,45 +203588,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179302] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [174987] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2475), 2, + sym_comment, + sym_include, + ACTIONS(110), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1200), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + ACTIONS(112), 26, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2568), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206547,45 +203628,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179366] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [175034] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2699), 1, + sym__namecolon, + STATE(2010), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(1113), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + STATE(2476), 2, + sym_comment, + sym_include, + ACTIONS(73), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2569), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206596,45 +203672,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179430] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [175085] = 29, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3022), 1, + sym_of, + STATE(3065), 1, + sym__pre_tuning, + STATE(3165), 1, + aux_sym_for_phrase_repeat1, + STATE(3166), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3578), 1, + aux_sym_for_phrase_repeat2, + STATE(4188), 1, + sym_on_error_phrase, + STATE(4326), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5042), 1, + aux_sym_for_statement_repeat1, + STATE(5048), 1, + sym_on_stop_phrase, + STATE(5979), 1, + sym_body, + STATE(2477), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [175178] = 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(2484), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - ACTIONS(1208), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + STATE(2478), 2, + sym_comment, + sym_include, + ACTIONS(104), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2570), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206645,45 +203779,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179494] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175229] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(3878), 1, + anon_sym_NO_DASHERROR, + STATE(2479), 2, + sym_comment, + sym_include, + ACTIONS(647), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1192), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + ACTIONS(649), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2571), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206694,45 +203821,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179558] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [175278] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2480), 2, + sym_comment, + sym_include, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1125), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2405), 2, + ACTIONS(142), 26, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2572), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206743,44 +203861,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179622] = 14, - ACTIONS(67), 1, + anon_sym_NO_DASHERROR, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175325] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2736), 1, + anon_sym_LBRACK, + ACTIONS(2738), 1, + anon_sym_LPAREN, + STATE(2617), 1, + sym_function_arguments, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(2481), 2, + sym_comment, + sym_include, + ACTIONS(73), 25, 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(2405), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2573), 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_include_argument_token1, + [175376] = 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(230), 4, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2409), 13, + ACTIONS(142), 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, @@ -206791,28 +203945,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179684] = 7, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [175423] = 29, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3042), 1, + sym_of, + STATE(3046), 1, + sym__pre_tuning, + STATE(3084), 1, + sym_where_clause, + STATE(3097), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3552), 1, + aux_sym_for_phrase_repeat2, + STATE(4104), 1, + sym_on_error_phrase, + STATE(4521), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4937), 1, + aux_sym_for_statement_repeat1, + STATE(4943), 1, + sym_on_stop_phrase, + STATE(6125), 1, + sym_body, + STATE(2483), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [175516] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2728), 1, - sym__namedoublecolon, - STATE(2624), 1, - aux_sym_member_access_repeat1, - ACTIONS(119), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2707), 1, + sym__namedot, + STATE(2529), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(132), 2, sym__or_operator, sym__and_operator, - STATE(2574), 2, + STATE(2484), 2, sym_comment, sym_include, - ACTIONS(121), 25, + ACTIONS(134), 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, @@ -206831,26 +204053,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_include_argument_token1, - [179732] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175567] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2575), 2, + STATE(2485), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(110), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(148), 25, + ACTIONS(112), 26, 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, @@ -206869,28 +204093,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_when_expression_token1, - aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [179778] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175614] = 29, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3030), 1, + sym_of, + STATE(3053), 1, + sym__pre_tuning, + STATE(3108), 1, + sym_where_clause, + STATE(3112), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3560), 1, + aux_sym_for_phrase_repeat2, + STATE(4150), 1, + sym_on_error_phrase, + STATE(4400), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5127), 1, + aux_sym_for_statement_repeat1, + STATE(5128), 1, + sym_on_stop_phrase, + STATE(5781), 1, + sym_body, + STATE(2486), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [175707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2576), 2, + STATE(2487), 2, sym_comment, sym_include, - ACTIONS(108), 3, - sym__namedot, + ACTIONS(128), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(110), 25, + ACTIONS(130), 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, @@ -206912,45 +204201,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [179824] = 15, - ACTIONS(67), 1, + [175754] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(2701), 1, + sym__namedoublecolon, + STATE(2527), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2488), 2, + sym_comment, + sym_include, + ACTIONS(146), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3910), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2577), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -206961,26 +204242,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179888] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [175805] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2578), 2, + ACTIONS(3880), 1, + anon_sym_NO_DASHERROR, + STATE(2489), 2, sym_comment, sym_include, - ACTIONS(142), 3, + ACTIONS(647), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(144), 25, + ACTIONS(649), 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, @@ -206999,28 +204284,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, - aux_sym_function_call_token1, - [179934] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175854] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2579), 2, - sym_comment, - sym_include, - ACTIONS(115), 3, - sym__namecolon, + ACTIONS(3882), 1, + sym__namedoublecolon, + ACTIONS(114), 2, sym__or_operator, sym__and_operator, - ACTIONS(117), 25, + STATE(2490), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 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, @@ -207039,30 +204326,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_scope_tuning_token1, - aux_sym_function_call_token1, - [179980] = 7, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175903] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2724), 1, - sym__namedot, - STATE(2616), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(104), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2580), 2, + STATE(2491), 2, sym_comment, sym_include, - ACTIONS(106), 25, + ACTIONS(1595), 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_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -207081,46 +204371,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_include_argument_token1, - [180028] = 15, - ACTIONS(67), 1, + [175954] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2492), 2, + sym_comment, + sym_include, + ACTIONS(110), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1204), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(112), 26, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2581), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -207131,44 +204409,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180092] = 14, - ACTIONS(67), 1, + aux_sym_function_call_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [176001] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, - STATE(2582), 2, + STATE(2493), 2, sym_comment, sym_include, - ACTIONS(1212), 4, + ACTIONS(128), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2409), 13, + ACTIONS(130), 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, @@ -207179,39 +204450,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180154] = 10, - ACTIONS(67), 1, + aux_sym_function_call_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [176048] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(3885), 1, + sym__namedot, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(2494), 3, sym_comment, sym_include, - ACTIONS(1214), 3, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 25, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 21, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, + 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, @@ -207222,42 +204493,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_on_error_phrase_token1, - [180208] = 12, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [176097] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1121), 19, + ACTIONS(2665), 1, + sym__namedot, + STATE(2451), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - anon_sym_COLON, + STATE(2495), 2, + sym_comment, + sym_include, + ACTIONS(138), 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, @@ -207268,43 +204535,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_on_error_phrase_token1, - [180266] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [176148] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, 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, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1196), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2585), 2, + STATE(2496), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1202), 5, + sym__or_operator, + sym__and_operator, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207318,42 +204587,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180330] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [176211] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, 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, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1117), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2586), 2, + STATE(2497), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 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, @@ -207367,42 +204632,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180394] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [176270] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, 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, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1200), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2587), 2, + STATE(2498), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1214), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207416,45 +204684,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180458] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [176335] = 29, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(1113), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3026), 1, + sym_of, + STATE(3064), 1, + sym__pre_tuning, + STATE(3152), 1, + sym_where_clause, + STATE(3155), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3536), 1, + aux_sym_for_phrase_repeat2, + STATE(4198), 1, + sym_on_error_phrase, + STATE(4429), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5113), 1, + aux_sym_for_statement_repeat1, + STATE(5119), 1, + sym_on_stop_phrase, + STATE(6027), 1, + sym_body, + STATE(2499), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [176428] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + anon_sym_LPAREN, + STATE(2515), 1, + sym_function_arguments, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(2500), 2, + sym_comment, + sym_include, + ACTIONS(89), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2588), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -207465,45 +204788,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180522] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [176479] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2667), 1, + sym__namecolon, + STATE(2221), 1, + aux_sym_object_access_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(1208), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + STATE(2501), 2, + sym_comment, + sym_include, + ACTIONS(89), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2589), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -207514,42 +204831,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180586] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [176530] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, 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, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1192), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2590), 2, + STATE(2502), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1129), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207563,42 +204884,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180650] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [176595] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, 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, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1125), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2591), 2, + STATE(2503), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1218), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207612,41 +204934,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180714] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [176660] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, 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, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2592), 2, + STATE(2504), 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, + ACTIONS(3888), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207660,35 +204984,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180776] = 7, - ACTIONS(3), 1, + [176725] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - sym__namedot, - ACTIONS(150), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2593), 2, - sym_comment, - sym_include, - ACTIONS(152), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2505), 2, + sym_comment, + sym_include, + ACTIONS(1222), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 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, @@ -207699,31 +205034,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_do_block_token1, - aux_sym_widget_field_token1, - [180824] = 8, + [176790] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, - sym_identifier, - ACTIONS(3921), 1, - aux_sym_input_expression_token2, - STATE(2913), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2752), 1, + sym__namecolon, + STATE(2385), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2594), 2, + STATE(2506), 2, sym_comment, sym_include, - ACTIONS(1354), 24, + ACTIONS(93), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -207742,27 +205075,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, - [180874] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [176841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2595), 2, + STATE(2507), 2, sym_comment, sym_include, - ACTIONS(138), 3, + ACTIONS(106), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(140), 25, + ACTIONS(108), 26, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -207783,67 +205118,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [180920] = 5, - ACTIONS(3), 1, + [176888] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(3779), 1, - sym__escaped_string, - STATE(2596), 2, - sym_comment, - sym_include, - ACTIONS(3777), 28, + ACTIONS(75), 1, 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, - [180964] = 8, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_comment, + sym_include, + ACTIONS(1226), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [176953] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3923), 1, - sym_identifier, - STATE(2869), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(3890), 1, + sym__namedoublecolon, + ACTIONS(114), 2, sym__or_operator, sym__and_operator, - STATE(2597), 2, + STATE(2509), 3, sym_comment, sym_include, - ACTIONS(1579), 24, + aux_sym_member_access_repeat1, + ACTIONS(116), 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, @@ -207864,26 +205209,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [181014] = 6, + anon_sym_NO_DASHERROR, + [177002] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2598), 2, + STATE(2510), 2, sym_comment, sym_include, - ACTIONS(142), 3, + ACTIONS(106), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(144), 25, + ACTIONS(108), 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, @@ -207903,37 +205251,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [181060] = 7, - ACTIONS(3), 1, + [177049] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_NO_DASHERROR, - STATE(2599), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2511), 2, sym_comment, sym_include, - ACTIONS(391), 3, - sym__namecolon, + ACTIONS(1230), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [177114] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(393), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2512), 2, + sym_comment, + sym_include, + ACTIONS(1234), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 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, @@ -207944,30 +205351,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, - [181108] = 8, + [177179] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2736), 1, + ACTIONS(2762), 1, sym__namecolon, - STATE(1976), 1, + STATE(2380), 1, aux_sym_object_access_repeat1, - ACTIONS(85), 2, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2600), 2, + STATE(2513), 2, sym_comment, sym_include, - ACTIONS(87), 24, + ACTIONS(93), 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, @@ -207987,29 +205394,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - [181158] = 8, + [177230] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2732), 1, - anon_sym_LPAREN, - STATE(2611), 1, - sym_function_arguments, - ACTIONS(85), 2, + ACTIONS(2742), 1, + sym__namecolon, + STATE(2434), 1, + aux_sym_object_access_repeat1, + ACTIONS(91), 2, sym__or_operator, sym__and_operator, - STATE(2601), 2, + STATE(2514), 2, sym_comment, sym_include, - ACTIONS(87), 24, + ACTIONS(93), 26, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -208028,27 +205435,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_scope_tuning_token1, - [181208] = 6, + aux_sym_include_argument_token1, + [177279] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2602), 2, + ACTIONS(3893), 1, + aux_sym_function_call_token1, + STATE(2515), 2, sym_comment, sym_include, - ACTIONS(115), 3, + ACTIONS(166), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(117), 25, + ACTIONS(168), 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, @@ -208067,31 +205475,131 @@ static 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, - [181254] = 9, - ACTIONS(3), 1, + [177328] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(3928), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(734), 1, + sym__comparison_operator, + STATE(744), 1, + sym__multiplicative_operator, + STATE(745), 1, + sym__additive_operator, + STATE(746), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2516), 2, + sym_comment, + sym_include, + ACTIONS(204), 5, sym__or_operator, sym__and_operator, - STATE(2603), 2, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [177391] = 17, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(3864), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(3895), 1, + aux_sym_when_expression_token1, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + STATE(5588), 1, + sym_when_expression, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2517), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [177460] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2518), 2, sym_comment, sym_include, - ACTIONS(1354), 23, + ACTIONS(106), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(108), 27, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -208110,31 +205618,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_include_argument_token1, + [177505] = 29, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, aux_sym_of_token1, - aux_sym_on_statement_token1, - [181306] = 8, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3023), 1, + sym_of, + STATE(3045), 1, + sym__pre_tuning, + STATE(3145), 1, + aux_sym_for_phrase_repeat1, + STATE(3170), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3508), 1, + aux_sym_for_phrase_repeat2, + STATE(4159), 1, + sym_on_error_phrase, + STATE(4445), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5033), 1, + aux_sym_for_statement_repeat1, + STATE(5058), 1, + sym_on_stop_phrase, + STATE(5877), 1, + sym_body, + STATE(2519), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [177598] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2734), 1, - sym__namedot, - STATE(2530), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(134), 2, + ACTIONS(2669), 1, + sym__namedoublecolon, + STATE(2509), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, sym__or_operator, sym__and_operator, - STATE(2604), 2, + STATE(2520), 2, sym_comment, sym_include, - ACTIONS(136), 24, + ACTIONS(146), 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, @@ -208153,45 +205723,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_when_expression_token1, aux_sym_scope_tuning_token1, - [181356] = 14, - ACTIONS(67), 1, + anon_sym_NO_DASHERROR, + [177649] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(2697), 1, + sym__namedot, + STATE(2494), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(132), 2, + sym__or_operator, + sym__and_operator, + STATE(2521), 2, + sym_comment, + sym_include, + ACTIONS(134), 25, 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(2405), 2, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2605), 2, - sym_comment, - sym_include, - ACTIONS(230), 4, - sym__or_operator, - sym__and_operator, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2409), 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, @@ -208202,29 +205767,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181418] = 8, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [177700] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2738), 1, - sym__namedoublecolon, - STATE(2523), 1, - aux_sym_member_access_repeat1, - ACTIONS(119), 2, - sym__or_operator, - sym__and_operator, - STATE(2606), 2, + STATE(2522), 2, sym_comment, sym_include, - ACTIONS(121), 24, + ACTIONS(110), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(112), 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, @@ -208243,46 +205806,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_when_expression_token1, aux_sym_scope_tuning_token1, - [181468] = 15, - ACTIONS(67), 1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [177747] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1094), 2, + ACTIONS(3897), 1, + aux_sym_function_call_token1, + STATE(2523), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1125), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + ACTIONS(168), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2607), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -208293,25 +205850,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181532] = 5, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [177796] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2608), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2667), 1, sym__namecolon, + STATE(2221), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(140), 26, + STATE(2524), 2, + sym_comment, + sym_include, + ACTIONS(73), 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, @@ -208330,47 +205892,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, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [181576] = 15, - ACTIONS(67), 1, + [177847] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1094), 2, + ACTIONS(2711), 1, + sym__namedoublecolon, + STATE(2490), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, sym__or_operator, sym__and_operator, - ACTIONS(1192), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + STATE(2525), 2, + sym_comment, + sym_include, + ACTIONS(146), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2609), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -208381,45 +205936,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181640] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [177898] = 29, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(1094), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3020), 1, + sym_of, + STATE(3050), 1, + sym__pre_tuning, + STATE(3164), 1, + sym_where_clause, + STATE(3167), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3501), 1, + aux_sym_for_phrase_repeat2, + STATE(4184), 1, + sym_on_error_phrase, + STATE(4403), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5054), 1, + aux_sym_for_statement_repeat1, + STATE(5056), 1, + sym_on_stop_phrase, + STATE(5715), 1, + sym_body, + STATE(2526), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [177991] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, + sym__namedoublecolon, + ACTIONS(114), 2, sym__or_operator, sym__and_operator, - ACTIONS(1208), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + STATE(2527), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2610), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -208430,28 +206042,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181704] = 7, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [178040] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3930), 1, - aux_sym_function_call_token1, - STATE(2611), 2, + STATE(2528), 2, sym_comment, sym_include, - ACTIONS(156), 3, + ACTIONS(140), 3, sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(158), 24, + ACTIONS(142), 26, 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, @@ -208470,27 +206082,31 @@ static 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, - [181752] = 7, + aux_sym_function_call_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [178087] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3932), 1, + ACTIONS(3902), 1, sym__namedot, - ACTIONS(150), 2, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(2612), 2, + STATE(2529), 3, sym_comment, sym_include, - ACTIONS(152), 25, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 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, @@ -208509,48 +206125,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [181800] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [178136] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(1094), 2, + ACTIONS(2742), 1, + sym__namecolon, + STATE(2443), 1, + aux_sym_object_access_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(1113), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + STATE(2530), 2, + sym_comment, + sym_include, + ACTIONS(89), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2613), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -208561,45 +206167,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181864] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [178184] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1094), 2, + ACTIONS(2760), 1, + sym__namedot, + STATE(2618), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - ACTIONS(1200), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + STATE(2531), 2, + sym_comment, + sym_include, + ACTIONS(138), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2614), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -208610,45 +206209,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181928] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [178234] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(1094), 2, + ACTIONS(3905), 1, + sym__namedoublecolon, + ACTIONS(114), 2, sym__or_operator, sym__and_operator, - ACTIONS(1117), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + STATE(2532), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2615), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -208659,21 +206250,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181992] = 6, + aux_sym_scope_tuning_token1, + [178282] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3934), 1, - sym__namedot, - ACTIONS(108), 2, - sym__or_operator, - sym__and_operator, - STATE(2616), 3, + ACTIONS(3908), 1, + anon_sym_NO_DASHERROR, + STATE(2533), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 25, + ACTIONS(647), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(649), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208699,42 +206291,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [182038] = 15, - ACTIONS(67), 1, + [178328] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3800), 1, + sym__escaped_string, + STATE(2534), 2, + sym_comment, + sym_include, + ACTIONS(3798), 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, + [178372] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2535), 2, + sym_comment, + sym_include, + ACTIONS(148), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(150), 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, + [178418] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(589), 1, + STATE(706), 1, sym__logical_operator, - STATE(590), 1, + STATE(707), 1, sym__additive_operator, - STATE(591), 1, + STATE(708), 1, sym__multiplicative_operator, - STATE(592), 1, + STATE(709), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1196), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + ACTIONS(1133), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2617), 2, + STATE(2536), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208748,38 +206419,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182102] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [178482] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(589), 1, + STATE(706), 1, sym__logical_operator, - STATE(590), 1, + STATE(707), 1, sym__additive_operator, - STATE(591), 1, + STATE(708), 1, sym__multiplicative_operator, - STATE(592), 1, + STATE(709), 1, sym__comparison_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(2618), 2, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2537), 2, sym_comment, sym_include, - ACTIONS(1121), 19, + ACTIONS(1202), 4, sym__or_operator, sym__and_operator, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208793,34 +206467,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_when_expression_token1, - [182160] = 5, - ACTIONS(3), 1, + [178544] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - STATE(2619), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + STATE(2538), 2, sym_comment, sym_include, - ACTIONS(142), 3, - sym__namecolon, + ACTIONS(1204), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 21, sym__or_operator, sym__and_operator, - ACTIONS(144), 26, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + anon_sym_COLON, 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, @@ -208831,38 +206510,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_include_argument_token1, - anon_sym_NO_DASHERROR, - [182204] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + [178598] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(589), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(706), 1, sym__logical_operator, - STATE(590), 1, + STATE(707), 1, sym__additive_operator, - STATE(591), 1, + STATE(708), 1, sym__multiplicative_operator, - STATE(592), 1, + STATE(709), 1, sym__comparison_operator, - STATE(2620), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 21, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(2539), 2, + sym_comment, + sym_include, + ACTIONS(1210), 19, sym__or_operator, sym__and_operator, - anon_sym_STAR, - sym__terminator, + 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, @@ -208876,42 +206556,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, - [182258] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + [178656] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(589), 1, + STATE(706), 1, sym__logical_operator, - STATE(590), 1, + STATE(707), 1, sym__additive_operator, - STATE(591), 1, + STATE(708), 1, sym__multiplicative_operator, - STATE(592), 1, + STATE(709), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1214), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2621), 2, + STATE(2540), 2, sym_comment, sym_include, - ACTIONS(1212), 4, - sym__or_operator, - sym__and_operator, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208925,42 +206606,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182320] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [178720] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(589), 1, + STATE(706), 1, sym__logical_operator, - STATE(590), 1, + STATE(707), 1, sym__additive_operator, - STATE(591), 1, + STATE(708), 1, sym__multiplicative_operator, - STATE(592), 1, + STATE(709), 1, sym__comparison_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(1204), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2405), 2, + ACTIONS(1129), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2622), 2, + STATE(2541), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208974,37 +206655,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182384] = 8, + [178784] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2734), 1, - sym__namedot, - STATE(2530), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(123), 2, - sym__or_operator, - sym__and_operator, - STATE(2623), 2, + ACTIONS(3804), 1, + sym__escaped_string, + STATE(2542), 2, sym_comment, sym_include, - ACTIONS(125), 24, - anon_sym_SLASH, + ACTIONS(3802), 28, + anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, - anon_sym_COMMA, + 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, + [178828] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(706), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1218), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2543), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -209015,28 +206743,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_scope_tuning_token1, - [182434] = 6, + [178892] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3937), 1, - sym__namedoublecolon, - ACTIONS(127), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2624), 3, + STATE(2544), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 25, + ACTIONS(1595), 24, + anon_sym_COLON, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209055,26 +206783,31 @@ static 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, - [182480] = 5, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [178942] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2625), 2, - sym_comment, - sym_include, - ACTIONS(115), 3, - sym__namecolon, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3913), 1, + aux_sym_input_expression_token2, + STATE(2697), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(117), 26, + STATE(2545), 2, + sym_comment, + sym_include, + ACTIONS(1377), 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, @@ -209093,35 +206826,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, - anon_sym_NO_DASHERROR, - [182524] = 6, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [178994] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2626), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, - sym__namecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(140), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1226), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2546), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -209132,30 +206877,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_scope_tuning_token1, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [182570] = 8, + [179058] = 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, + ACTIONS(2752), 1, + sym__namecolon, + STATE(2390), 1, + aux_sym_object_access_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - STATE(2627), 2, + STATE(2547), 2, sym_comment, sym_include, - ACTIONS(1579), 24, - anon_sym_COLON, + ACTIONS(89), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209174,76 +206917,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_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [182620] = 6, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [179108] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2628), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(144), 25, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 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_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, - STATE(2629), 2, + STATE(2548), 2, sym_comment, sym_include, - ACTIONS(115), 3, - sym__namecolon, + ACTIONS(204), 4, sym__or_operator, sym__and_operator, - ACTIONS(117), 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, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2425), 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, @@ -209254,26 +206967,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_scope_tuning_token1, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [182712] = 7, + [179170] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3940), 1, - sym__namedoublecolon, - ACTIONS(127), 2, - sym__or_operator, - sym__and_operator, - STATE(2630), 3, + STATE(2549), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(129), 24, + ACTIONS(152), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(154), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -209296,28 +207004,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, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [182760] = 6, + [179216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2631), 2, + STATE(2550), 2, sym_comment, sym_include, - ACTIONS(108), 3, - sym__namedot, + ACTIONS(148), 3, + sym__namedoublecolon, sym__or_operator, sym__and_operator, - ACTIONS(110), 25, + ACTIONS(150), 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, @@ -209336,28 +207045,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, - aux_sym_scope_tuning_token1, - [182806] = 9, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [179262] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3943), 1, + ACTIONS(2469), 1, sym_identifier, - ACTIONS(3946), 1, + ACTIONS(3916), 1, aux_sym_input_expression_token2, - STATE(2672), 1, + STATE(35), 1, sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2632), 2, + STATE(2551), 2, sym_comment, sym_include, - ACTIONS(1354), 23, + ACTIONS(1377), 23, anon_sym_SLASH, anon_sym_STAR, anon_sym_COMMA, @@ -209379,27 +207088,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, - [182858] = 6, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [179314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(198), 2, - sym__or_operator, - sym__and_operator, - STATE(2633), 2, + STATE(2552), 2, sym_comment, sym_include, - ACTIONS(200), 25, + ACTIONS(121), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(123), 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, @@ -209418,35 +207128,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, - [182903] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [179360] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(218), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2634), 2, - sym_comment, - sym_include, - ACTIONS(220), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1234), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2553), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -209457,43 +207179,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, - [182948] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [179424] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3949), 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, + STATE(706), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1222), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2635), 2, + STATE(2554), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209507,101 +207228,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183011] = 27, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [179488] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - 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(510), 1, + STATE(706), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1226), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2637), 2, + STATE(2555), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209615,41 +207277,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183161] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [179552] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(706), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2638), 2, + ACTIONS(3918), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(2556), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209663,44 +207326,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183224] = 15, - ACTIONS(67), 1, + [179616] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3955), 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, + STATE(2557), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(158), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2639), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -209711,44 +207364,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183287] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [179662] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3957), 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, + ACTIONS(3920), 1, + sym__namedot, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2558), 2, + sym_comment, + sym_include, + ACTIONS(162), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2640), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -209759,41 +207404,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183350] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [179710] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3959), 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, + STATE(706), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1230), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2641), 2, + STATE(2559), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209807,44 +207456,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183413] = 15, - ACTIONS(67), 1, + [179774] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3961), 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, + ACTIONS(2742), 1, + sym__namecolon, + STATE(2443), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2560), 2, + sym_comment, + sym_include, + ACTIONS(73), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2642), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -209855,44 +207496,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183476] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [179822] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3963), 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, + ACTIONS(2764), 1, + sym__namedoublecolon, + STATE(2532), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2561), 2, + sym_comment, + sym_include, + ACTIONS(146), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2643), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -209903,41 +207538,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183539] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [179872] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3965), 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, + STATE(706), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1234), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2644), 2, + STATE(2562), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209951,44 +207588,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183602] = 15, - ACTIONS(67), 1, + [179936] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(3922), 1, + aux_sym_function_call_token1, + STATE(2563), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(168), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2645), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -209999,41 +207628,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183665] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [179984] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3969), 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, + STATE(706), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(707), 1, + sym__additive_operator, + STATE(708), 1, + sym__multiplicative_operator, + STATE(709), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2646), 2, + STATE(2564), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(204), 4, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210047,44 +207677,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183728] = 15, - ACTIONS(67), 1, + [180046] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3971), 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, + STATE(2565), 2, + sym_comment, + sym_include, + ACTIONS(152), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(154), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2647), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -210095,25 +207715,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183791] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [180092] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(2740), 1, + sym__namedot, + STATE(2579), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - STATE(2648), 2, + STATE(2566), 2, sym_comment, sym_include, - ACTIONS(176), 25, + ACTIONS(138), 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, @@ -210132,106 +207757,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, - [183836] = 27, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [180140] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(2750), 1, + sym__namedot, + STATE(2603), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(136), 2, + sym__or_operator, + sym__and_operator, + STATE(2567), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(138), 24, anon_sym_SLASH, - ACTIONS(3973), 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, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2650), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -210242,41 +207798,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183986] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [180190] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3975), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1234), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2651), 2, + STATE(2568), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210290,44 +207849,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184049] = 15, - ACTIONS(67), 1, + [180254] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3977), 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, + ACTIONS(2738), 1, + anon_sym_LPAREN, + STATE(2617), 1, + sym_function_arguments, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2569), 2, + sym_comment, + sym_include, + ACTIONS(89), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2652), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -210338,41 +207889,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184112] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [180302] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3979), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1230), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2653), 2, + STATE(2570), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210386,20 +207939,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184175] = 6, + [180366] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(214), 2, - sym__or_operator, - sym__and_operator, - STATE(2654), 2, + STATE(2571), 2, sym_comment, sym_include, - ACTIONS(216), 25, + ACTIONS(152), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(154), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -210425,70 +207979,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, 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(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3981), 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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2655), 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, - [184283] = 6, + [180412] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(186), 2, + ACTIONS(3924), 1, + sym_identifier, + STATE(2716), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2656), 2, + STATE(2572), 2, sym_comment, sym_include, - ACTIONS(188), 25, + ACTIONS(1595), 24, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, anon_sym_COMMA, aux_sym_input_expression_token2, @@ -210512,41 +208021,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [184328] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [180462] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1226), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2657), 2, + STATE(2573), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210560,25 +208070,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184391] = 6, + [180526] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(238), 2, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2658), 2, + STATE(2574), 2, sym_comment, sym_include, - ACTIONS(240), 25, + ACTIONS(1595), 24, + 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, @@ -210597,46 +208109,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_do_block_token1, - aux_sym_widget_field_token1, - [184436] = 15, - ACTIONS(67), 1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [180576] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3985), 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, + STATE(2575), 2, + sym_comment, + sym_include, + ACTIONS(128), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(130), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2659), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -210647,24 +208149,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184499] = 6, + aux_sym_include_argument_token1, + anon_sym_NO_DASHERROR, + [180620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(226), 2, - sym__or_operator, - sym__and_operator, - STATE(2660), 2, + STATE(2576), 2, sym_comment, sym_include, - ACTIONS(228), 25, + ACTIONS(148), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(150), 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, @@ -210685,85 +208191,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [184544] = 27, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [180666] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1230), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2577), 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, - [184631] = 6, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [180730] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(2740), 1, + sym__namedot, + STATE(2579), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - STATE(2662), 2, + STATE(2578), 2, sym_comment, sym_include, - ACTIONS(224), 25, + ACTIONS(104), 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, @@ -210782,88 +208280,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, - 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(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(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(2663), 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, - [184763] = 6, + aux_sym_include_argument_token1, + [180778] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(178), 2, + ACTIONS(2740), 1, + sym__namedot, + STATE(2581), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(132), 2, sym__or_operator, sym__and_operator, - STATE(2664), 2, + STATE(2579), 2, sym_comment, sym_include, - ACTIONS(180), 25, + ACTIONS(134), 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, @@ -210882,22 +208321,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, - aux_sym_scope_tuning_token1, - [184808] = 6, + aux_sym_include_argument_token1, + [180826] = 6, 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(2665), 2, + STATE(2580), 2, sym_comment, sym_include, - ACTIONS(192), 25, + ACTIONS(121), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(123), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -210923,24 +208362,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [184853] = 6, + [180872] = 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(3927), 1, + sym__namedot, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(2666), 2, + STATE(2581), 3, sym_comment, sym_include, - ACTIONS(220), 25, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 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, @@ -210959,23 +208401,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_when_expression_token1, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [184898] = 6, + aux_sym_include_argument_token1, + [180918] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(210), 2, + ACTIONS(3930), 1, + sym__namedot, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - STATE(2667), 2, + STATE(2582), 2, sym_comment, sym_include, - ACTIONS(212), 25, + ACTIONS(162), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -211001,24 +208443,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [184943] = 6, + [180966] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(190), 2, + ACTIONS(2760), 1, + sym__namedot, + STATE(2618), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - STATE(2668), 2, + STATE(2583), 2, sym_comment, sym_include, - ACTIONS(192), 25, + ACTIONS(104), 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, @@ -211037,23 +208484,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, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [184988] = 6, + [181016] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(206), 2, - sym__or_operator, - sym__and_operator, - STATE(2669), 2, + STATE(2584), 2, sym_comment, sym_include, - ACTIONS(208), 25, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -211079,41 +208525,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [185033] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [181062] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3987), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2670), 2, + STATE(2585), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(204), 4, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211127,44 +208573,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185096] = 15, - ACTIONS(67), 1, + [181124] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3989), 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, + ACTIONS(3932), 1, + sym__namedoublecolon, + ACTIONS(114), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2586), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2671), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211175,25 +208612,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185159] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181172] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(134), 2, + ACTIONS(2748), 1, + anon_sym_LPAREN, + STATE(2601), 1, + sym_function_arguments, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - STATE(2672), 2, + STATE(2587), 2, sym_comment, sym_include, - ACTIONS(136), 25, + ACTIONS(89), 24, 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, @@ -211212,43 +208654,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, - [185204] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181222] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(3991), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2673), 2, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2588), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211262,25 +208705,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185267] = 5, + [181286] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2674), 2, - sym_comment, - sym_include, - ACTIONS(146), 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2752), 1, sym__namecolon, + STATE(2390), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(148), 25, + STATE(2589), 2, + sym_comment, + sym_include, + ACTIONS(73), 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, @@ -211299,105 +208745,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, - [185310] = 27, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181336] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(3937), 1, + sym_identifier, + ACTIONS(3940), 1, + aux_sym_input_expression_token2, + STATE(2919), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(2590), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1377), 23, anon_sym_SLASH, - ACTIONS(3993), 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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2676), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211408,44 +208789,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185460] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [181388] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3995), 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, + ACTIONS(3942), 1, + anon_sym_NO_DASHERROR, + STATE(2591), 2, + sym_comment, + sym_include, + ACTIONS(647), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(649), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2677), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211456,92 +208830,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185523] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [181436] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3997), 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(2678), 2, + ACTIONS(3830), 1, + sym__escaped_string, + STATE(2592), 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, - [185586] = 15, - ACTIONS(67), 1, + ACTIONS(3828), 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, + [181480] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(3999), 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, + ACTIONS(3944), 1, + sym__namedoublecolon, + ACTIONS(114), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2593), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(116), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2679), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211552,44 +208909,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185649] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [181526] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2758), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_function_arguments, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2594), 2, + sym_comment, + sym_include, + ACTIONS(89), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2680), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211600,44 +208951,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185712] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [181576] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(396), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(2762), 1, + sym__namecolon, + STATE(2381), 1, + aux_sym_object_access_repeat1, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2595), 2, + sym_comment, + sym_include, + ACTIONS(89), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2681), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211648,44 +208993,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185775] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [181626] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4005), 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, + ACTIONS(3947), 1, + anon_sym_NO_DASHERROR, + STATE(2596), 2, + sym_comment, + sym_include, + ACTIONS(647), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(649), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2682), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211696,20 +209033,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185838] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [181674] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(186), 2, + ACTIONS(2754), 1, + sym__namedoublecolon, + STATE(2586), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, sym__or_operator, sym__and_operator, - STATE(2683), 2, + STATE(2597), 2, sym_comment, sym_include, - ACTIONS(188), 25, + ACTIONS(146), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -211732,47 +209075,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_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [185883] = 15, - ACTIONS(67), 1, + [181724] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4007), 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, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3952), 1, + aux_sym_input_expression_token2, + STATE(2997), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2598), 2, + sym_comment, + sym_include, + ACTIONS(1377), 23, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2684), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211783,41 +209118,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185946] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181776] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4009), 1, - sym__terminator, - STATE(492), 1, - sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, - sym__additive_operator, - STATE(510), 1, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1222), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2685), 2, + STATE(2599), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211831,44 +209169,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186009] = 15, - ACTIONS(67), 1, + [181840] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4011), 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, + ACTIONS(2762), 1, + sym__namecolon, + STATE(2381), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2600), 2, + sym_comment, + sym_include, + ACTIONS(73), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2686), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211879,44 +209210,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186072] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [181890] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4013), 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, + ACTIONS(3954), 1, + aux_sym_function_call_token1, + STATE(2601), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(168), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2687), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -211927,41 +209250,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186135] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181938] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4015), 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, + STATE(736), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1133), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2688), 2, + STATE(2602), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211975,20 +209301,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186198] = 6, + [182002] = 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(2750), 1, + sym__namedot, + STATE(2606), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(132), 2, sym__or_operator, sym__and_operator, - STATE(2689), 2, + STATE(2603), 2, sym_comment, sym_include, - ACTIONS(216), 25, + ACTIONS(134), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -212011,44 +209341,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_scope_tuning_token1, anon_sym_NO_DASHERROR, - [186243] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [182052] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4017), 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, + STATE(736), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2690), 2, + STATE(2604), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1202), 4, + sym__or_operator, + sym__and_operator, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212062,24 +209391,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186306] = 6, + [182114] = 5, 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(2691), 2, + STATE(2605), 2, sym_comment, sym_include, - ACTIONS(152), 25, + ACTIONS(128), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(130), 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, @@ -212098,23 +209428,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, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [186351] = 6, + aux_sym_include_argument_token1, + aux_sym_function_call_token1, + [182158] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(3956), 1, + sym__namedot, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(2692), 2, + STATE(2606), 3, sym_comment, sym_include, - ACTIONS(172), 25, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -212137,44 +209469,83 @@ static 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, - [186396] = 15, - ACTIONS(67), 1, + [182206] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2607), 2, + sym_comment, + sym_include, + ACTIONS(140), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(142), 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, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [182250] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4019), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2693), 2, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2608), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212188,35 +209559,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186459] = 7, - ACTIONS(3), 1, + [182314] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4021), 1, - anon_sym_NO_DASHERROR, - STATE(2694), 2, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + STATE(2609), 2, sym_comment, sym_include, - ACTIONS(391), 3, - sym__namecolon, + ACTIONS(1204), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 21, sym__or_operator, sym__and_operator, - ACTIONS(393), 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, @@ -212227,36 +209601,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_scope_tuning_token1, - [186506] = 7, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + [182368] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, - sym__namedot, - ACTIONS(150), 2, - sym__or_operator, - sym__and_operator, - STATE(2695), 2, - sym_comment, - sym_include, - ACTIONS(152), 24, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(736), 1, + sym__logical_operator, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + STATE(2610), 2, + sym_comment, + sym_include, + ACTIONS(1210), 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, @@ -212267,34 +209647,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_scope_tuning_token1, - [186553] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + [182426] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(123), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(400), 1, + sym__logical_operator, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2696), 2, + ACTIONS(1133), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2611), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [182490] = 14, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(400), 1, + sym__logical_operator, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2612), 2, + sym_comment, + sym_include, + ACTIONS(1202), 4, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2425), 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, @@ -212305,43 +209746,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, - [186598] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [182552] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4025), 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, + STATE(736), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1214), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2697), 2, + STATE(2613), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212355,41 +209795,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186661] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [182616] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4027), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + STATE(2614), 2, + sym_comment, + sym_include, + ACTIONS(1204), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1206), 21, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2698), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212403,25 +209838,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186724] = 6, + aux_sym_when_expression_token1, + [182670] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(3959), 1, + sym_identifier, + STATE(2677), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2699), 2, + STATE(2615), 2, sym_comment, sym_include, - ACTIONS(184), 25, + ACTIONS(1595), 24, 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, @@ -212440,27 +209878,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_do_block_token1, - aux_sym_widget_field_token1, - [186769] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [182720] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(65), 2, + STATE(2616), 2, + sym_comment, + sym_include, + ACTIONS(110), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - STATE(2700), 2, + ACTIONS(112), 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, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [182764] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3962), 1, + aux_sym_function_call_token1, + STATE(2617), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(166), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(168), 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, @@ -212479,27 +209959,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, - [186814] = 6, + aux_sym_include_argument_token1, + [182810] = 8, 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(146), 3, - sym__namecolon, + ACTIONS(2760), 1, + sym__namedot, + STATE(2621), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(132), 2, sym__or_operator, sym__and_operator, - ACTIONS(148), 24, + STATE(2618), 2, + sym_comment, + sym_include, + ACTIONS(134), 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, @@ -212519,42 +210002,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [186859] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [182860] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4029), 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, + STATE(736), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1129), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2702), 2, + STATE(2619), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212568,41 +210051,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186922] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [182924] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4031), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2703), 2, + STATE(2620), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 19, + 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, @@ -212616,44 +210096,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186985] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + [182982] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4033), 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, + ACTIONS(3964), 1, + sym__namedot, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2621), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2704), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -212664,41 +210137,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187048] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [183030] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1218), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2705), 2, + STATE(2622), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212712,25 +210187,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187111] = 6, + [183094] = 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(2744), 1, + sym__namedoublecolon, + STATE(2593), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, sym__or_operator, sym__and_operator, - STATE(2706), 2, + STATE(2623), 2, sym_comment, sym_include, - ACTIONS(208), 25, + ACTIONS(146), 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, @@ -212749,27 +210227,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, - [187156] = 6, + aux_sym_include_argument_token1, + [183142] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(202), 2, + ACTIONS(3967), 1, + sym__namedot, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - STATE(2707), 2, + STATE(2624), 2, sym_comment, sym_include, - ACTIONS(204), 25, + ACTIONS(162), 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, @@ -212788,46 +210267,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, - [187201] = 15, - ACTIONS(67), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [183190] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(2750), 1, + sym__namedot, + STATE(2603), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2625), 2, + sym_comment, + sym_include, + ACTIONS(104), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2708), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -212838,44 +210309,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187264] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [183240] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4039), 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, + STATE(2626), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(158), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2709), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -212886,44 +210349,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187327] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [183286] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(396), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + STATE(2627), 2, + sym_comment, + sym_include, + ACTIONS(121), 3, + sym__namedot, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(123), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2710), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -212934,41 +210388,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187390] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [183332] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4043), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1214), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2711), 2, + STATE(2628), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212982,41 +210440,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187453] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [183396] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4045), 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, + STATE(400), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(401), 1, + sym__additive_operator, + STATE(416), 1, + sym__multiplicative_operator, + STATE(418), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1129), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2712), 2, + STATE(2629), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213030,44 +210489,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187516] = 15, - ACTIONS(67), 1, + [183460] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2630), 2, + sym_comment, + sym_include, + ACTIONS(110), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(112), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2713), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213078,44 +210527,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187579] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [183506] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2631), 2, + sym_comment, + sym_include, + ACTIONS(128), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(130), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2714), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213126,44 +210566,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187642] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [183552] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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, + STATE(2632), 2, + sym_comment, + sym_include, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(142), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2715), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213174,44 +210607,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187705] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [183598] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + STATE(2633), 2, + sym_comment, + sym_include, + ACTIONS(128), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(130), 25, anon_sym_SLASH, - ACTIONS(4053), 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, + 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, - ACTIONS(1094), 2, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [183644] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3969), 1, + sym_identifier, + ACTIONS(3972), 1, + aux_sym_input_expression_token2, + STATE(2957), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2634), 2, + sym_comment, + sym_include, + ACTIONS(1377), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2716), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213222,41 +210690,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187768] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [183694] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4055), 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, + STATE(736), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1218), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2717), 2, + STATE(2635), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213270,25 +210740,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187831] = 6, + [183758] = 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, - STATE(2718), 2, + STATE(2636), 2, sym_comment, sym_include, - ACTIONS(248), 25, + ACTIONS(110), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(112), 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, @@ -213307,24 +210778,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, - [187876] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [183804] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(242), 2, + ACTIONS(3974), 1, + sym_identifier, + STATE(2896), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2719), 2, + STATE(2637), 2, sym_comment, sym_include, - ACTIONS(244), 25, + ACTIONS(1595), 24, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, sym__terminator, anon_sym_COMMA, @@ -213348,104 +210822,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [187921] = 27, - ACTIONS(67), 1, + [183854] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(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(2720), 2, + STATE(2638), 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, - [188008] = 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(4057), 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, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(142), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2721), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213456,44 +210860,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188071] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [183900] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4059), 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, + STATE(2639), 2, + sym_comment, + sym_include, + ACTIONS(110), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(112), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2722), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213504,44 +210899,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188134] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + anon_sym_NO_DASHERROR, + [183944] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(2640), 2, + sym_comment, + sym_include, + ACTIONS(128), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(130), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2723), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213552,41 +210939,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188197] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [183990] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4063), 1, - sym__terminator, - STATE(492), 1, - sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, - sym__additive_operator, - STATE(510), 1, + STATE(736), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(737), 1, + sym__additive_operator, + STATE(738), 1, + sym__multiplicative_operator, + STATE(739), 1, + sym__comparison_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(1222), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2724), 2, + STATE(2641), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213600,44 +210990,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188260] = 15, - ACTIONS(67), 1, + [184054] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4065), 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, + STATE(2642), 2, + sym_comment, + sym_include, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(142), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2725), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213648,44 +211027,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188323] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + anon_sym_NO_DASHERROR, + [184098] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4067), 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, + STATE(2643), 2, + sym_comment, + sym_include, + ACTIONS(140), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(142), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2726), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -213696,20 +211066,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188386] = 6, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [184144] = 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, - STATE(2727), 2, + STATE(2644), 2, sym_comment, sym_include, - ACTIONS(248), 25, + ACTIONS(110), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(112), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -213732,44 +211106,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_scope_tuning_token1, + aux_sym_function_call_token1, anon_sym_NO_DASHERROR, - [188431] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184190] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4069), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + STATE(812), 1, sym__comparison_operator, - STATE(961), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(814), 1, sym__additive_operator, - STATE(963), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2728), 2, + STATE(2645), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(204), 3, + sym__or_operator, + sym__and_operator, + aux_sym_output_stream_statement_token1, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213783,41 +211156,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188494] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184251] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4071), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(3977), 1, + anon_sym_RPAREN, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2729), 2, + STATE(2646), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213831,34 +211204,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188557] = 6, - ACTIONS(3), 1, + [184314] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2730), 2, - sym_comment, - sym_include, - ACTIONS(162), 3, - sym__namedoublecolon, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(3979), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(164), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2647), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -213869,34 +211252,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_scope_tuning_token1, - [188602] = 5, - ACTIONS(3), 1, + [184377] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - STATE(2731), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - sym__namedot, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(3981), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(110), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2648), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -213907,42 +211300,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, - [188645] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184440] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4073), 1, + ACTIONS(3983), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2732), 2, + STATE(2649), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213956,41 +211348,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188708] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184503] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4075), 1, - anon_sym_RPAREN, - STATE(492), 1, + ACTIONS(3985), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(494), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(509), 1, + STATE(949), 1, sym__additive_operator, - STATE(510), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2733), 2, + STATE(2650), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214004,41 +211396,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188771] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184566] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4077), 1, - anon_sym_RBRACK, - STATE(492), 1, + ACTIONS(3987), 1, + anon_sym_RPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(494), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(509), 1, + STATE(965), 1, sym__additive_operator, - STATE(510), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2734), 2, + STATE(2651), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214052,41 +211444,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188834] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184629] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4079), 1, + ACTIONS(3989), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2735), 2, + STATE(2652), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214100,41 +211492,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188897] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184692] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4081), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(3991), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2736), 2, + STATE(2653), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214148,20 +211540,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188960] = 6, + [184755] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(242), 2, + ACTIONS(184), 2, sym__or_operator, sym__and_operator, - STATE(2737), 2, + STATE(2654), 2, sym_comment, sym_include, - ACTIONS(244), 25, + ACTIONS(186), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -214187,44 +211579,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [189005] = 15, - ACTIONS(67), 1, + [184800] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(510), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(196), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2655), 2, + sym_comment, + sym_include, + ACTIONS(198), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2738), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -214235,66 +211615,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [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, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [184845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2740), 2, + STATE(2656), 2, sym_comment, sym_include, - ACTIONS(162), 3, + ACTIONS(148), 3, sym__namedoublecolon, sym__or_operator, sym__and_operator, - ACTIONS(164), 24, + ACTIONS(150), 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, @@ -214313,94 +211655,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [189162] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [184888] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4089), 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, + ACTIONS(180), 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(2741), 2, + 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, - [189225] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(182), 25, 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, - ACTIONS(2405), 2, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2742), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -214411,22 +211693,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189288] = 7, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [184933] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4093), 1, + ACTIONS(3993), 1, sym_identifier, - STATE(2941), 1, + STATE(2985), 1, sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2743), 2, + STATE(2658), 2, sym_comment, sym_include, - ACTIONS(1579), 24, + ACTIONS(1595), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -214451,41 +211735,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [189335] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [184980] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4096), 1, + ACTIONS(3996), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2744), 2, + STATE(2659), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214499,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, - [189398] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [185043] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4098), 1, + ACTIONS(3998), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2745), 2, + STATE(2660), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214547,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, - [189461] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [185106] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4100), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4000), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2746), 2, + STATE(2661), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214595,93 +211879,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189524] = 27, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [185169] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4002), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2662), 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, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [185232] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4004), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2748), 2, - sym_comment, - sym_include, - ACTIONS(152), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2663), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -214692,35 +211975,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, - [189656] = 6, - ACTIONS(3), 1, + [185295] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4006), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2749), 2, - sym_comment, - sym_include, - ACTIONS(172), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2664), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -214731,43 +212023,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, - [189701] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [185358] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4102), 1, - anon_sym_RPAREN, - STATE(492), 1, + ACTIONS(4008), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(494), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(509), 1, + STATE(949), 1, sym__additive_operator, - STATE(510), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2750), 2, + STATE(2665), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214781,25 +212071,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189764] = 5, + [185421] = 8, 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, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - ACTIONS(164), 25, + STATE(2666), 2, + sym_comment, + sym_include, + ACTIONS(1595), 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, @@ -214818,41 +212110,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, - [189807] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [185470] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(960), 1, + ACTIONS(4010), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2752), 2, + STATE(2667), 2, sym_comment, sym_include, - ACTIONS(1212), 3, - sym__or_operator, - sym__and_operator, - aux_sym_else_statement_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214866,41 +212160,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189868] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [185533] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4104), 1, + ACTIONS(4012), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2753), 2, + STATE(2668), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -214914,44 +212208,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189931] = 15, - ACTIONS(67), 1, + [185596] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(4106), 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, + ACTIONS(176), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2669), 2, + sym_comment, + sym_include, + ACTIONS(178), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2754), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -214962,41 +212244,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189994] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [185641] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4108), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4014), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2755), 2, + STATE(2670), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215010,41 +212295,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190057] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [185704] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4110), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4016), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2756), 2, + STATE(2671), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215058,27 +212343,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190120] = 9, + [185767] = 6, 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(4112), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(180), 2, sym__or_operator, sym__and_operator, - STATE(2757), 2, + STATE(2672), 2, sym_comment, sym_include, - ACTIONS(1354), 22, + ACTIONS(182), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, sym__terminator, anon_sym_PLUS, @@ -215100,44 +212380,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [190171] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [185812] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(510), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(176), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2673), 2, + sym_comment, + sym_include, + ACTIONS(178), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2758), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -215148,66 +212419,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190234] = 9, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [185857] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(172), 2, + sym__or_operator, + sym__and_operator, + STATE(2674), 2, sym_comment, sym_include, - 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(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2760), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(168), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(174), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, @@ -215227,30 +212457,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, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [190330] = 9, + [185902] = 6, 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(4126), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(184), 2, sym__or_operator, sym__and_operator, - STATE(2761), 2, + STATE(2675), 2, sym_comment, sym_include, - ACTIONS(1354), 22, + ACTIONS(186), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215270,42 +212497,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_output_stream_statement_token1, - [190381] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [185947] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4128), 1, - anon_sym_RPAREN, - STATE(492), 1, + ACTIONS(4018), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2762), 2, + STATE(2676), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215319,25 +212547,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190444] = 6, + [186010] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(230), 2, + ACTIONS(102), 2, sym__or_operator, sym__and_operator, - STATE(2763), 2, + STATE(2677), 2, sym_comment, sym_include, - ACTIONS(232), 25, + ACTIONS(104), 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, @@ -215356,36 +212583,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, - [190489] = 7, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [186055] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4130), 1, - sym__namedot, - ACTIONS(150), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4020), 1, + anon_sym_LPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2764), 2, - sym_comment, - sym_include, - ACTIONS(152), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2678), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -215396,66 +212634,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [190536] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, + [186118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(246), 2, + ACTIONS(220), 2, sym__or_operator, sym__and_operator, - STATE(2766), 2, + STATE(2679), 2, sym_comment, sym_include, - ACTIONS(248), 25, + ACTIONS(222), 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, @@ -215476,41 +212672,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [190626] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [186163] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4134), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4022), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(961), 1, - sym__multiplicative_operator, - STATE(962), 1, + STATE(615), 1, sym__additive_operator, - STATE(963), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2767), 2, + STATE(2680), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215524,25 +212721,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190689] = 6, + [186226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2768), 2, + STATE(2681), 2, sym_comment, sym_include, - ACTIONS(108), 3, + ACTIONS(121), 3, sym__namedot, sym__or_operator, sym__and_operator, - ACTIONS(110), 24, + ACTIONS(123), 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, @@ -215562,42 +212760,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [190734] = 15, - ACTIONS(67), 1, + [186271] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2682), 2, + sym_comment, + sym_include, + 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, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_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, + [186314] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4136), 1, - sym__terminator, - STATE(492), 1, + ACTIONS(4024), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2769), 2, + STATE(2683), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215611,41 +212846,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190797] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [186377] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1204), 1, - aux_sym_output_stream_statement_token1, - STATE(827), 1, + ACTIONS(4026), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(828), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(949), 1, sym__additive_operator, - STATE(830), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2770), 2, + STATE(2684), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215659,26 +212894,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190860] = 6, + [186440] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4138), 1, - sym__namedot, - ACTIONS(150), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(228), 2, sym__or_operator, sym__and_operator, - STATE(2771), 2, + STATE(2685), 2, sym_comment, sym_include, - ACTIONS(152), 25, + ACTIONS(230), 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, @@ -215697,145 +212931,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, - [190905] = 26, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [186485] = 27, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, + ACTIONS(3858), 1, aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3060), 1, + STATE(3027), 1, sym_of, - STATE(3091), 1, + STATE(3055), 1, sym__pre_tuning, - STATE(3180), 1, + STATE(3087), 1, sym_where_clause, - STATE(3184), 1, + STATE(3088), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3887), 1, + STATE(3534), 1, aux_sym_for_phrase_repeat2, - STATE(4598), 1, + STATE(4113), 1, sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4792), 1, + STATE(4535), 1, sym_on_quit_phrase, - STATE(5720), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(4916), 1, sym_on_stop_phrase, - ACTIONS(4140), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(2772), 2, + STATE(5963), 1, + sym_body, + STATE(2686), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [190990] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [186572] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4142), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4028), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2773), 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, - [191053] = 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(4144), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, - sym__or_operator, - sym__and_operator, - STATE(2774), 2, + STATE(2687), 2, sym_comment, sym_include, - ACTIONS(1354), 22, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + ACTIONS(2425), 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, @@ -215846,140 +213041,101 @@ static 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, - [191104] = 26, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [186635] = 27, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, + ACTIONS(3858), 1, aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3064), 1, + STATE(3038), 1, sym_of, - STATE(3125), 1, + STATE(3052), 1, sym__pre_tuning, - STATE(3185), 1, - aux_sym_for_phrase_repeat1, - STATE(3190), 1, + STATE(3120), 1, sym_where_clause, - STATE(3271), 1, + STATE(3121), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3841), 1, + STATE(3571), 1, aux_sym_for_phrase_repeat2, - STATE(4580), 1, + STATE(4186), 1, sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4735), 1, + STATE(4375), 1, sym_on_quit_phrase, - STATE(5583), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4813), 1, + aux_sym_for_statement_repeat1, + STATE(4816), 1, sym_on_stop_phrase, - ACTIONS(4146), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(2775), 2, + STATE(5815), 1, + sym_body, + STATE(2688), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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(174), 2, - sym__or_operator, - sym__and_operator, - STATE(2776), 2, - sym_comment, - sym_include, - ACTIONS(176), 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, - [191234] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [186722] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4148), 1, + ACTIONS(4030), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2777), 2, + STATE(2689), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -215993,32 +213149,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191297] = 6, - ACTIONS(3), 1, + [186785] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(178), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4032), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2778), 2, - sym_comment, - sym_include, - ACTIONS(180), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2690), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -216029,84 +213197,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [191342] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [186848] = 15, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - 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(4150), 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, - [191391] = 14, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(827), 1, + ACTIONS(4034), 1, + anon_sym_LPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(828), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(965), 1, sym__additive_operator, - STATE(830), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2780), 2, + STATE(2691), 2, sym_comment, sym_include, - ACTIONS(1212), 3, - sym__or_operator, - sym__and_operator, - aux_sym_output_stream_statement_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216120,41 +213245,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191452] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [186911] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1204), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4036), 1, + anon_sym_RPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(394), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(965), 1, sym__additive_operator, - STATE(396), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2781), 2, + STATE(2692), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216168,43 +213293,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191515] = 14, - ACTIONS(67), 1, + [186974] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(4040), 1, + sym__escaped_string, + STATE(2693), 2, + sym_comment, + sym_include, + ACTIONS(4038), 27, 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(2782), 2, + 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, + [187017] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2694), 2, sym_comment, sym_include, - ACTIONS(1212), 3, + ACTIONS(121), 3, + sym__namedot, sym__or_operator, sym__and_operator, - aux_sym_if_statement_token2, - ACTIONS(2409), 13, + ACTIONS(123), 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, @@ -216215,38 +213368,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191576] = 10, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [187062] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(188), 2, + sym__or_operator, + sym__and_operator, + STATE(2695), 2, sym_comment, sym_include, - ACTIONS(1214), 3, + ACTIONS(190), 25, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1216), 20, - sym__or_operator, - sym__and_operator, + 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, @@ -216257,41 +213407,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_if_statement_token2, - [191629] = 12, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [187107] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 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(1119), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2784), 2, - sym_comment, - sym_include, - ACTIONS(1121), 18, + ACTIONS(4042), 1, + sym__namedot, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, + STATE(2696), 2, + sym_comment, + sym_include, + ACTIONS(162), 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, @@ -216302,45 +213447,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_if_statement_token2, - [191686] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [187152] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(396), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2697), 2, + sym_comment, + sym_include, + ACTIONS(138), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2785), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -216351,44 +213485,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191749] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [187197] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - ACTIONS(1117), 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, + STATE(2698), 2, + sym_comment, + sym_include, + ACTIONS(152), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(154), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2786), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -216399,41 +213524,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191812] = 15, - ACTIONS(67), 1, + aux_sym_include_argument_token1, + [187240] = 26, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3077), 1, + sym_of, + STATE(3111), 1, + sym__pre_tuning, + STATE(3186), 1, + aux_sym_for_phrase_repeat1, + STATE(3191), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3891), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4636), 1, + sym_on_error_phrase, + STATE(5068), 1, + sym_on_quit_phrase, + STATE(5822), 1, + sym_on_stop_phrase, + ACTIONS(4044), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(2699), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [187325] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1200), 1, + ACTIONS(4046), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2787), 2, + STATE(2700), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216447,41 +213632,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191875] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [187388] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1113), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4048), 1, + anon_sym_RPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(394), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(965), 1, sym__additive_operator, - STATE(396), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2788), 2, + STATE(2701), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216495,35 +213680,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191938] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [187451] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(827), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4050), 1, + anon_sym_RBRACK, + STATE(942), 1, sym__comparison_operator, - STATE(828), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(965), 1, sym__additive_operator, - STATE(830), 1, + STATE(984), 1, sym__logical_operator, - STATE(2789), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 20, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(2702), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216537,42 +213728,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, - [191991] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [187514] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1208), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(394), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(965), 1, sym__additive_operator, - STATE(396), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2790), 2, + STATE(2703), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216586,41 +213776,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192054] = 15, - ACTIONS(67), 1, + [187577] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4056), 1, + aux_sym_variable_tuning_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2704), 2, + sym_comment, + sym_include, + ACTIONS(4054), 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, + [187626] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1192), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4058), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2791), 2, + STATE(2705), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216634,22 +213865,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192117] = 6, + [187689] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(242), 2, + ACTIONS(4060), 1, + sym_identifier, + STATE(3017), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - STATE(2792), 2, + STATE(2706), 2, sym_comment, sym_include, - ACTIONS(244), 25, + ACTIONS(1595), 23, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, sym__terminator, anon_sym_PLUS, @@ -216670,44 +213904,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_scope_tuning_token1, anon_sym_NO_DASHERROR, - [192162] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [187738] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1125), 1, + ACTIONS(4063), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2793), 2, + STATE(2707), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216721,43 +213954,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192225] = 14, - ACTIONS(67), 1, + [187801] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(172), 2, + sym__or_operator, + sym__and_operator, + STATE(2708), 2, + sym_comment, + sym_include, + ACTIONS(174), 25, 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, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, 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, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -216768,24 +213991,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192286] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [187846] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(123), 2, + ACTIONS(244), 2, sym__or_operator, sym__and_operator, - STATE(2795), 2, + STATE(2709), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(246), 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, @@ -216806,38 +214032,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [192331] = 12, - ACTIONS(67), 1, + [187891] = 27, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3033), 1, + sym_of, + STATE(3051), 1, + sym__pre_tuning, + STATE(3107), 1, + sym_where_clause, + STATE(3124), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3555), 1, + aux_sym_for_phrase_repeat2, + STATE(4221), 1, + sym_on_error_phrase, + STATE(4331), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4792), 1, + aux_sym_for_statement_repeat1, + STATE(4798), 1, + sym_on_stop_phrase, + STATE(6024), 1, + sym_body, + STATE(2710), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [187978] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(827), 1, + ACTIONS(1133), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, sym__comparison_operator, - STATE(828), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(814), 1, sym__additive_operator, - STATE(830), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1119), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2796), 2, - sym_comment, - sym_include, - ACTIONS(1121), 18, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2711), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216851,42 +214140,101 @@ static 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, - [192388] = 15, - ACTIONS(67), 1, + [188041] = 27, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3042), 1, + sym_of, + STATE(3046), 1, + sym__pre_tuning, + STATE(3084), 1, + sym_where_clause, + STATE(3097), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3552), 1, + aux_sym_for_phrase_repeat2, + STATE(4104), 1, + sym_on_error_phrase, + STATE(4521), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4937), 1, + aux_sym_for_statement_repeat1, + STATE(4943), 1, + sym_on_stop_phrase, + STATE(6125), 1, + sym_body, + STATE(2712), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [188128] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4154), 1, - anon_sym_RBRACK, - STATE(492), 1, + ACTIONS(4065), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2797), 2, + STATE(2713), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -216900,24 +214248,133 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192451] = 6, - ACTIONS(3), 1, + [188191] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(182), 2, - sym__or_operator, - sym__and_operator, - STATE(2798), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4067), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2714), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [188254] = 27, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3030), 1, + sym_of, + STATE(3053), 1, + sym__pre_tuning, + STATE(3108), 1, + sym_where_clause, + STATE(3112), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3560), 1, + aux_sym_for_phrase_repeat2, + STATE(4150), 1, + sym_on_error_phrase, + STATE(4400), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5127), 1, + aux_sym_for_statement_repeat1, + STATE(5128), 1, + sym_on_stop_phrase, + STATE(5781), 1, + sym_body, + STATE(2715), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [188341] = 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(2716), 2, sym_comment, sym_include, - ACTIONS(184), 25, + ACTIONS(104), 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, @@ -216936,47 +214393,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [192496] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [188386] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(830), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(4069), 1, + anon_sym_NO_DASHERROR, + STATE(2717), 2, + sym_comment, + sym_include, + ACTIONS(647), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(649), 23, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2799), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -216987,44 +214434,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192559] = 15, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [188433] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(396), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(4071), 1, + sym_identifier, + STATE(2938), 1, + sym_qualified_name, + ACTIONS(1597), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2718), 2, + sym_comment, + sym_include, + ACTIONS(1595), 23, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2800), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -217035,41 +214475,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192622] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [188482] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4158), 1, - anon_sym_LPAREN, - STATE(492), 1, + ACTIONS(4074), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2801), 2, + STATE(2719), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217083,41 +214524,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192685] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [188545] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4160), 1, + ACTIONS(4076), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2802), 2, + STATE(2720), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217131,44 +214572,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192748] = 15, - ACTIONS(67), 1, + [188608] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(510), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(204), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2721), 2, + sym_comment, + sym_include, + ACTIONS(206), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2803), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -217179,44 +214609,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192811] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [188653] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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(830), 1, - sym__logical_operator, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 2, + STATE(2722), 2, + sym_comment, + sym_include, + ACTIONS(121), 3, + sym__namedot, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(123), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2804), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -217227,41 +214648,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192874] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [188696] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4164), 1, - anon_sym_RBRACK, - STATE(492), 1, + ACTIONS(4078), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2805), 2, + STATE(2723), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217275,33 +214697,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [192937] = 6, - ACTIONS(3), 1, + [188759] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(85), 2, - sym__or_operator, - sym__and_operator, - STATE(2806), 2, - sym_comment, - sym_include, - ACTIONS(87), 25, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(812), 1, + sym__comparison_operator, + STATE(813), 1, + sym__multiplicative_operator, + STATE(814), 1, + sym__additive_operator, + STATE(815), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2724), 2, + sym_comment, + sym_include, + ACTIONS(1202), 3, + sym__or_operator, + sym__and_operator, + aux_sym_output_stream_statement_token1, + ACTIONS(2425), 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, @@ -217312,43 +214744,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, - [192982] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [188820] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1200), 1, - aux_sym_output_stream_statement_token1, - STATE(827), 1, + ACTIONS(4080), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(828), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(949), 1, sym__additive_operator, - STATE(830), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2807), 2, + STATE(2725), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217362,41 +214792,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193045] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [188883] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4166), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4082), 1, + anon_sym_RBRACK, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2808), 2, + STATE(2726), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217410,41 +214840,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193108] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [188946] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4168), 1, + ACTIONS(4084), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2809), 2, + STATE(2727), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217458,33 +214888,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193171] = 6, - ACTIONS(3), 1, + [189009] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(65), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4086), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2810), 2, - sym_comment, - sym_include, - ACTIONS(71), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2728), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -217495,35 +214936,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_scope_tuning_token1, - [193216] = 6, - ACTIONS(3), 1, + [189072] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(206), 2, - sym__or_operator, - sym__and_operator, - STATE(2811), 2, + STATE(812), 1, + sym__comparison_operator, + STATE(813), 1, + sym__multiplicative_operator, + STATE(814), 1, + sym__additive_operator, + STATE(815), 1, + sym__logical_operator, + STATE(2729), 2, sym_comment, sym_include, - ACTIONS(208), 25, + ACTIONS(1204), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 20, + 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, @@ -217534,103 +214978,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, - aux_sym_scope_tuning_token1, - [193261] = 27, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_output_stream_statement_token1, + [189125] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1113), 1, - aux_sym_output_stream_statement_token1, - STATE(827), 1, + ACTIONS(4088), 1, + anon_sym_RPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(828), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(965), 1, sym__additive_operator, - STATE(830), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2813), 2, + STATE(2730), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217644,41 +215027,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193411] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [189188] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4170), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + STATE(812), 1, sym__comparison_operator, - STATE(961), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(814), 1, sym__additive_operator, - STATE(963), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2814), 2, + STATE(2731), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 18, + sym__or_operator, + sym__and_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217692,25 +215071,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193474] = 6, + aux_sym_output_stream_statement_token1, + [189245] = 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(244), 2, sym__or_operator, sym__and_operator, - STATE(2815), 2, + STATE(2732), 2, sym_comment, sym_include, - ACTIONS(172), 25, + ACTIONS(246), 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, @@ -217729,46 +215109,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, - aux_sym_scope_tuning_token1, - [193519] = 15, - ACTIONS(67), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [189290] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + STATE(2733), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(158), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2816), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -217779,26 +215149,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193582] = 6, + aux_sym_scope_tuning_token1, + [189335] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2817), 2, - sym_comment, - sym_include, - ACTIONS(146), 3, - sym__namecolon, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(148), 24, + STATE(2734), 2, + sym_comment, + sym_include, + ACTIONS(73), 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, @@ -217817,26 +215187,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_scope_tuning_token1, - [193627] = 5, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [189380] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2818), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__namecolon, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - ACTIONS(168), 25, + STATE(2735), 2, + sym_comment, + sym_include, + ACTIONS(162), 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, @@ -217855,42 +215226,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, - [193670] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [189425] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4172), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(1214), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, sym__comparison_operator, - STATE(394), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(814), 1, sym__additive_operator, - STATE(396), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2819), 2, + STATE(2736), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -217904,25 +215276,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193733] = 6, + [189488] = 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(200), 2, sym__or_operator, sym__and_operator, - STATE(2820), 2, + STATE(2737), 2, sym_comment, sym_include, - ACTIONS(204), 25, + ACTIONS(202), 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, @@ -217943,20 +215314,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [193778] = 6, + anon_sym_NO_DASHERROR, + [189533] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1129), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, + sym__comparison_operator, + STATE(813), 1, + sym__multiplicative_operator, + STATE(814), 1, + sym__additive_operator, + STATE(815), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2738), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [189596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(238), 2, + ACTIONS(188), 2, sym__or_operator, sym__and_operator, - STATE(2821), 2, + STATE(2739), 2, sym_comment, sym_include, - ACTIONS(240), 25, + ACTIONS(190), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -217982,33 +215402,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [193823] = 6, - ACTIONS(3), 1, + [189641] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1218), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, + sym__comparison_operator, + STATE(813), 1, + sym__multiplicative_operator, + STATE(814), 1, + sym__additive_operator, + STATE(815), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2822), 2, - sym_comment, - sym_include, - ACTIONS(224), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2740), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -218019,43 +215450,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, - [193868] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [189704] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1208), 1, + ACTIONS(1222), 1, aux_sym_output_stream_statement_token1, - STATE(827), 1, + STATE(812), 1, sym__comparison_operator, - STATE(828), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(814), 1, sym__additive_operator, - STATE(830), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2823), 2, + STATE(2741), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218069,20 +215498,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [193931] = 6, + [189767] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(85), 2, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - STATE(2824), 2, + STATE(2742), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(138), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -218108,20 +215537,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [193976] = 6, + [189812] = 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(87), 2, sym__or_operator, sym__and_operator, - STATE(2825), 2, + STATE(2743), 2, sym_comment, sym_include, - ACTIONS(228), 25, + ACTIONS(89), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -218147,41 +215576,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [194021] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [189857] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4174), 1, - anon_sym_RBRACK, - STATE(492), 1, + ACTIONS(1226), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, sym__comparison_operator, - STATE(494), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(509), 1, + STATE(814), 1, sym__additive_operator, - STATE(510), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2826), 2, + STATE(2744), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218195,33 +215624,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194084] = 6, - ACTIONS(3), 1, + [189920] = 27, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(238), 2, - sym__or_operator, - sym__and_operator, - STATE(2827), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3026), 1, + sym_of, + STATE(3064), 1, + sym__pre_tuning, + STATE(3152), 1, + sym_where_clause, + STATE(3155), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3536), 1, + aux_sym_for_phrase_repeat2, + STATE(4198), 1, + sym_on_error_phrase, + STATE(4429), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5113), 1, + aux_sym_for_statement_repeat1, + STATE(5119), 1, + sym_on_stop_phrase, + STATE(6027), 1, + sym_body, + STATE(2745), 2, sym_comment, sym_include, - ACTIONS(240), 25, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [190007] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(4090), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2746), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -218232,43 +215732,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_scope_tuning_token1, - [194129] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [190070] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4176), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(1230), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, sym__comparison_operator, - STATE(394), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(814), 1, sym__additive_operator, - STATE(396), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2828), 2, + STATE(2747), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218282,85 +215780,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [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, + [190133] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(85), 2, + ACTIONS(204), 2, sym__or_operator, sym__and_operator, - STATE(2830), 2, + STATE(2748), 2, sym_comment, sym_include, - ACTIONS(87), 25, + ACTIONS(206), 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, @@ -218381,25 +215818,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [194324] = 6, + anon_sym_NO_DASHERROR, + [190178] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(230), 2, + ACTIONS(87), 2, sym__or_operator, sym__and_operator, - STATE(2831), 2, + STATE(2749), 2, sym_comment, sym_include, - ACTIONS(232), 25, + ACTIONS(89), 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, @@ -218420,41 +215857,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [194369] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [190223] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4178), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(1234), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, sym__comparison_operator, - STATE(394), 1, + STATE(813), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(814), 1, sym__additive_operator, - STATE(396), 1, + STATE(815), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2832), 2, + STATE(2750), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218468,32 +215906,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194432] = 6, - ACTIONS(3), 1, + [190286] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(230), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4092), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2833), 2, - sym_comment, - sym_include, - ACTIONS(232), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2751), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -218504,44 +215954,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [194477] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [190349] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4180), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4094), 1, + sym__terminator, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2834), 2, + STATE(2752), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218555,41 +216002,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194540] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [190412] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4182), 1, + ACTIONS(4096), 1, anon_sym_RPAREN, - STATE(492), 1, + STATE(942), 1, sym__comparison_operator, - STATE(494), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(509), 1, + STATE(965), 1, sym__additive_operator, - STATE(510), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2835), 2, + STATE(2753), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218603,44 +216050,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194603] = 15, - ACTIONS(67), 1, + [190475] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(216), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2754), 2, + sym_comment, + sym_include, + ACTIONS(218), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2836), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -218651,41 +216086,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194666] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [190520] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1192), 1, - aux_sym_output_stream_statement_token1, - STATE(827), 1, + ACTIONS(4098), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(828), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(829), 1, + STATE(949), 1, sym__additive_operator, - STATE(830), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2837), 2, + STATE(2755), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218699,40 +216137,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194729] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [190583] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(960), 1, + ACTIONS(4100), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2405), 2, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2838), 2, + STATE(2756), 2, sym_comment, sym_include, - ACTIONS(230), 3, - sym__or_operator, - sym__and_operator, - aux_sym_else_statement_token1, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218746,41 +216185,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194790] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [190646] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1125), 1, - aux_sym_output_stream_statement_token1, - STATE(827), 1, + ACTIONS(4102), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(828), 1, - sym__multiplicative_operator, - STATE(829), 1, + STATE(615), 1, sym__additive_operator, - STATE(830), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2839), 2, + STATE(2757), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218794,25 +216233,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194853] = 6, + [190709] = 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(228), 2, sym__or_operator, sym__and_operator, - STATE(2840), 2, + STATE(2758), 2, sym_comment, sym_include, - ACTIONS(180), 25, + ACTIONS(230), 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, @@ -218831,35 +216270,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, - [194898] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [190754] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(134), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4104), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2841), 2, - sym_comment, - sym_include, - ACTIONS(136), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2759), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -218870,43 +216320,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_scope_tuning_token1, - [194943] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [190817] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1125), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4106), 1, + anon_sym_LPAREN, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2842), 2, + STATE(2760), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -218920,175 +216368,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195006] = 6, - ACTIONS(3), 1, + [190880] = 27, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(210), 2, - sym__or_operator, - sym__and_operator, - STATE(2843), 2, - sym_comment, - sym_include, - ACTIONS(212), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, 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, - [195051] = 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(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, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2844), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3023), 1, + sym_of, + STATE(3045), 1, + sym__pre_tuning, + STATE(3145), 1, + aux_sym_for_phrase_repeat1, + STATE(3170), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3508), 1, + aux_sym_for_phrase_repeat2, + STATE(4159), 1, + sym_on_error_phrase, + STATE(4445), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5033), 1, + aux_sym_for_statement_repeat1, + STATE(5058), 1, + sym_on_stop_phrase, + STATE(5877), 1, + sym_body, + STATE(2761), 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_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [195112] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [190967] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4186), 1, - sym__terminator, - STATE(492), 1, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2845), 2, + STATE(2762), 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, - [195175] = 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(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, + ACTIONS(204), 3, 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(2846), 2, - sym_comment, - sym_include, - ACTIONS(2409), 13, + aux_sym_if_statement_token2, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219102,41 +216475,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195238] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [191028] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4188), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4108), 1, + anon_sym_RPAREN, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2847), 2, + STATE(2763), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219150,41 +216523,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195301] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [191091] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1208), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4110), 1, + anon_sym_RBRACK, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2848), 2, + STATE(2764), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219198,27 +216571,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195364] = 8, + [191154] = 6, 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, + ACTIONS(216), 2, sym__or_operator, sym__and_operator, - STATE(2849), 2, + STATE(2765), 2, sym_comment, sym_include, - ACTIONS(1579), 23, + ACTIONS(218), 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, @@ -219237,26 +216608,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_of_token1, - aux_sym_on_statement_token1, - [195413] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [191199] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(65), 2, + ACTIONS(184), 2, sym__or_operator, sym__and_operator, - STATE(2850), 2, + STATE(2766), 2, sym_comment, sym_include, - ACTIONS(71), 25, + ACTIONS(186), 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, @@ -219277,42 +216649,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [195458] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [191244] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4190), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4112), 1, + anon_sym_LPAREN, + STATE(942), 1, sym__comparison_operator, - STATE(394), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(965), 1, sym__additive_operator, - STATE(396), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2851), 2, + STATE(2767), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219326,41 +216697,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195521] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [191307] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1113), 1, + ACTIONS(4114), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2852), 2, + STATE(2768), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219374,20 +216745,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195584] = 6, + [191370] = 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(2853), 2, + STATE(2769), 2, sym_comment, sym_include, - ACTIONS(196), 25, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219410,44 +216782,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_scope_tuning_token1, anon_sym_NO_DASHERROR, - [195629] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [191415] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1200), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + ACTIONS(4116), 1, + sym__terminator, + STATE(942), 1, sym__comparison_operator, STATE(961), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(965), 1, sym__additive_operator, - STATE(963), 1, + STATE(984), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2854), 2, + STATE(2770), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219461,25 +216832,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195692] = 6, + [191478] = 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(192), 2, sym__or_operator, sym__and_operator, - STATE(2855), 2, + STATE(2771), 2, sym_comment, sym_include, - ACTIONS(200), 25, + ACTIONS(194), 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, @@ -219500,32 +216870,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [195737] = 6, - ACTIONS(3), 1, + anon_sym_NO_DASHERROR, + [191523] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(198), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4118), 1, + anon_sym_RPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2856), 2, - sym_comment, - sym_include, - ACTIONS(200), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2772), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -219536,28 +216919,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, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [195782] = 6, + [191586] = 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(248), 2, sym__or_operator, sym__and_operator, - STATE(2857), 2, + STATE(2773), 2, sym_comment, sym_include, - ACTIONS(196), 25, + ACTIONS(250), 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, @@ -219576,34 +216956,94 @@ static 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, - [195827] = 6, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [191631] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(202), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4120), 1, + sym__terminator, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2858), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2774), 2, sym_comment, sym_include, - ACTIONS(204), 25, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [191694] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(4122), 1, + anon_sym_RPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2775), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -219614,37 +217054,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, - aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [195872] = 6, - ACTIONS(3), 1, + [191757] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(2859), 2, - sym_comment, - sym_include, - ACTIONS(108), 3, - sym__namedot, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4124), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(110), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2776), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -219655,42 +217102,82 @@ static 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, - [195917] = 15, - ACTIONS(67), 1, + [191820] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4128), 1, + aux_sym_variable_tuning_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2777), 2, + sym_comment, + sym_include, + ACTIONS(4126), 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, + [191869] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4192), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(4130), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2860), 2, + STATE(2778), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219704,24 +217191,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195980] = 6, + [191932] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(134), 2, - sym__or_operator, - sym__and_operator, - STATE(2861), 2, + STATE(2779), 2, sym_comment, sym_include, - ACTIONS(136), 25, + ACTIONS(152), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(154), 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, @@ -219740,44 +217229,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, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [196025] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [191977] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1117), 1, + ACTIONS(4132), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2862), 2, + STATE(2780), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219791,74 +217278,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196088] = 5, - ACTIONS(3), 1, + [192040] = 27, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(4196), 1, - sym__escaped_string, - STATE(2863), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3020), 1, + sym_of, + STATE(3050), 1, + sym__pre_tuning, + STATE(3164), 1, + sym_where_clause, + STATE(3167), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3501), 1, + aux_sym_for_phrase_repeat2, + STATE(4184), 1, + sym_on_error_phrase, + STATE(4403), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5054), 1, + aux_sym_for_statement_repeat1, + STATE(5056), 1, + sym_on_stop_phrase, + STATE(5715), 1, + sym_body, + STATE(2781), 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, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [192127] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4198), 1, - sym_identifier, - STATE(3006), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4134), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2864), 2, - sym_comment, - sym_include, - ACTIONS(1579), 23, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2782), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -219869,21 +217386,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [192190] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3601), 1, + aux_sym_variable_definition_token4, + STATE(2783), 2, + sym_comment, + sym_include, + ACTIONS(4136), 26, + aux_sym_temp_table_expression_token1, + aux_sym_dataset_expression_token1, aux_sym_scope_tuning_token1, - [196180] = 6, + 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, + [192235] = 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(248), 2, sym__or_operator, sym__and_operator, - STATE(2865), 2, + STATE(2784), 2, sym_comment, sym_include, - ACTIONS(212), 25, + ACTIONS(250), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219909,25 +217464,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [196225] = 6, + [192280] = 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(160), 2, sym__or_operator, sym__and_operator, - STATE(2866), 2, + STATE(2785), 2, sym_comment, sym_include, - ACTIONS(184), 25, + ACTIONS(162), 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, @@ -219948,41 +217502,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [196270] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [192325] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1196), 1, + ACTIONS(4138), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2867), 2, + STATE(2786), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -219996,37 +217551,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196333] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [192388] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - STATE(960), 1, + ACTIONS(4140), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(961), 1, - sym__multiplicative_operator, - STATE(962), 1, + STATE(615), 1, sym__additive_operator, - STATE(963), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1119), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 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, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2787), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220040,21 +217599,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_else_statement_token1, - [196390] = 6, + [192451] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(123), 2, + ACTIONS(192), 2, sym__or_operator, sym__and_operator, - STATE(2869), 2, + STATE(2788), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(194), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -220080,25 +217638,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [196435] = 6, + [192496] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4142), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2789), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [192559] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(4144), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2870), 2, + STATE(2790), 2, sym_comment, sym_include, - ACTIONS(176), 25, + ACTIONS(1377), 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, @@ -220118,36 +217728,41 @@ 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, - [196480] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [192610] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(960), 1, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4146), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - STATE(2871), 2, - sym_comment, - sym_include, - ACTIONS(1214), 3, - anon_sym_SLASH, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1216), 20, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(2791), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220161,26 +217776,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_else_statement_token1, - [196533] = 6, + [192673] = 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(212), 2, sym__or_operator, sym__and_operator, - STATE(2872), 2, + STATE(2792), 2, sym_comment, sym_include, - ACTIONS(216), 25, + ACTIONS(214), 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, @@ -220201,25 +217814,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [196578] = 6, + anon_sym_NO_DASHERROR, + [192718] = 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(67), 2, sym__or_operator, sym__and_operator, - STATE(2873), 2, + STATE(2793), 2, sym_comment, sym_include, - ACTIONS(188), 25, + ACTIONS(73), 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, @@ -220240,25 +217853,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [196623] = 6, + anon_sym_NO_DASHERROR, + [192763] = 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(232), 2, sym__or_operator, sym__and_operator, - STATE(2874), 2, + STATE(2794), 2, sym_comment, sym_include, - ACTIONS(192), 25, + ACTIONS(234), 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, @@ -220279,41 +217892,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, aux_sym_scope_tuning_token1, - [196668] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [192808] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4201), 1, + ACTIONS(4148), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2875), 2, + STATE(2795), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220327,20 +217941,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196731] = 6, + [192871] = 6, 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(2876), 2, + STATE(2796), 2, sym_comment, sym_include, - ACTIONS(220), 25, + ACTIONS(148), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(150), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -220364,35 +217979,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, aux_sym_scope_tuning_token1, - [196776] = 6, - ACTIONS(3), 1, + [192916] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1133), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2877), 2, - sym_comment, - sym_include, - ACTIONS(224), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2797), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -220403,35 +218028,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, - aux_sym_scope_tuning_token1, - [196821] = 6, - ACTIONS(3), 1, + [192979] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(226), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4150), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2878), 2, - sym_comment, - sym_include, - ACTIONS(228), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2798), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -220442,35 +218076,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_scope_tuning_token1, - [196866] = 6, - ACTIONS(3), 1, + [193042] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(234), 2, - sym__or_operator, - sym__and_operator, - STATE(2879), 2, - sym_comment, - sym_include, - ACTIONS(236), 25, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2799), 2, + sym_comment, + sym_include, + ACTIONS(1202), 3, + sym__or_operator, + sym__and_operator, + aux_sym_else_statement_token1, + ACTIONS(2425), 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, @@ -220481,35 +218123,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, - aux_sym_scope_tuning_token1, - [196911] = 6, - ACTIONS(3), 1, + [193103] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(234), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4152), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2880), 2, - sym_comment, - sym_include, - ACTIONS(236), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2800), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -220520,35 +218171,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, - [196956] = 6, - ACTIONS(3), 1, + [193166] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(194), 2, - sym__or_operator, - sym__and_operator, - STATE(2881), 2, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + STATE(2801), 2, sym_comment, sym_include, - ACTIONS(196), 25, + ACTIONS(1204), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 20, + sym__or_operator, + sym__and_operator, 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, @@ -220559,43 +218213,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, - [197001] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_else_statement_token1, + [193219] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4203), 1, - aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2882), 2, + STATE(2802), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(1210), 18, + sym__or_operator, + sym__and_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220609,41 +218258,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197064] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_else_statement_token1, + [193276] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4205), 1, - anon_sym_LPAREN, - STATE(492), 1, + ACTIONS(4154), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2883), 2, + STATE(2803), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220657,41 +218307,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197127] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [193339] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(1204), 1, + ACTIONS(1214), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2884), 2, + STATE(2804), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220705,41 +218355,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197190] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [193402] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4207), 1, + ACTIONS(1129), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2885), 2, + STATE(2805), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220753,33 +218403,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197253] = 6, - ACTIONS(3), 1, + [193465] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1218), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2886), 2, - sym_comment, - sym_include, - ACTIONS(152), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2806), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -220790,103 +218451,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_scope_tuning_token1, - [197298] = 27, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [193528] = 15, 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(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(2483), 5, - aux_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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4209), 1, - aux_sym_if_statement_token2, - STATE(393), 1, + ACTIONS(1222), 1, + aux_sym_else_statement_token1, + STATE(947), 1, sym__comparison_operator, - STATE(394), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(395), 1, + STATE(949), 1, sym__additive_operator, - STATE(396), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2888), 2, + STATE(2807), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220900,80 +218499,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197448] = 6, - ACTIONS(3), 1, + [193591] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(234), 2, - sym__or_operator, - sym__and_operator, - STATE(2889), 2, - sym_comment, - sym_include, - ACTIONS(236), 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, - [197493] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4211), 1, + ACTIONS(1226), 1, aux_sym_else_statement_token1, - STATE(960), 1, + STATE(947), 1, sym__comparison_operator, - STATE(961), 1, + STATE(948), 1, sym__multiplicative_operator, - STATE(962), 1, + STATE(949), 1, sym__additive_operator, - STATE(963), 1, + STATE(950), 1, sym__logical_operator, - ACTIONS(1090), 2, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2890), 2, + STATE(2808), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -220987,44 +218547,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197556] = 15, - ACTIONS(67), 1, + [193654] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, - anon_sym_SLASH, - 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, + ACTIONS(236), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2809), 2, + sym_comment, + sym_include, + ACTIONS(238), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2891), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -221035,21 +218583,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197619] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [193699] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2892), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__namecolon, + ACTIONS(4156), 1, + sym__namedot, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - ACTIONS(168), 24, + STATE(2810), 2, + sym_comment, + sym_include, + ACTIONS(162), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -221074,44 +218626,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - [197664] = 15, - ACTIONS(67), 1, + [193746] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(192), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + STATE(2811), 2, + sym_comment, + sym_include, + ACTIONS(194), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2893), 2, - sym_comment, - sym_include, - ACTIONS(2409), 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, @@ -221122,89 +218663,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197727] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [193791] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, - ACTIONS(2405), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2894), 2, + ACTIONS(4160), 1, + aux_sym_using_statement_token2, + ACTIONS(4164), 1, + aux_sym_image_phrase_token4, + ACTIONS(4162), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(4166), 2, + aux_sym_image_phrase_token5, + aux_sym_image_phrase_token6, + STATE(2812), 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, - [197790] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4158), 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, + [193842] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4219), 1, + ACTIONS(4168), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2895), 2, + STATE(2813), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -221218,41 +218755,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197853] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [193905] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4221), 1, - anon_sym_RPAREN, - STATE(492), 1, + ACTIONS(4170), 1, + aux_sym_if_statement_token2, + STATE(388), 1, sym__comparison_operator, - STATE(494), 1, - sym__multiplicative_operator, - STATE(509), 1, + STATE(615), 1, sym__additive_operator, - STATE(510), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2896), 2, + STATE(2814), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -221266,27 +218803,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197916] = 8, + [193968] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_identifier, - STATE(2953), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(196), 2, sym__or_operator, sym__and_operator, - STATE(2897), 2, + STATE(2815), 2, sym_comment, sym_include, - ACTIONS(1579), 23, + ACTIONS(198), 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, @@ -221305,43 +218840,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [197965] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [194013] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1086), 1, + ACTIONS(1105), 1, anon_sym_SLASH, - ACTIONS(4226), 1, + ACTIONS(4172), 1, aux_sym_if_statement_token2, - STATE(393), 1, + STATE(388), 1, sym__comparison_operator, - STATE(394), 1, - sym__multiplicative_operator, - STATE(395), 1, + STATE(615), 1, sym__additive_operator, - STATE(396), 1, + STATE(704), 1, sym__logical_operator, - ACTIONS(1090), 2, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1094), 2, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - ACTIONS(2405), 2, + ACTIONS(2421), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2407), 2, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2898), 2, + STATE(2816), 2, sym_comment, sym_include, - ACTIONS(2409), 13, + ACTIONS(2425), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -221355,24 +218890,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [198028] = 6, + [194076] = 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(200), 2, sym__or_operator, sym__and_operator, - STATE(2899), 2, + STATE(2817), 2, sym_comment, sym_include, - ACTIONS(224), 24, + ACTIONS(202), 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, @@ -221391,77 +218927,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [198072] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4228), 1, - sym__terminator, - 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, - 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(2900), 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, - [198142] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [194121] = 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(208), 2, sym__or_operator, sym__and_operator, - STATE(2901), 2, + STATE(2818), 2, sym_comment, sym_include, - ACTIONS(180), 24, + ACTIONS(210), 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, @@ -221480,34 +218966,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [198186] = 5, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [194166] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1230), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2902), 2, - sym_comment, - sym_include, - ACTIONS(87), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2819), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221518,25 +219016,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, - [198228] = 5, + [194229] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(230), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(220), 2, sym__or_operator, sym__and_operator, - STATE(2903), 2, + STATE(2820), 2, sym_comment, sym_include, - ACTIONS(232), 25, + ACTIONS(222), 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, @@ -221555,33 +219053,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_include_argument_token1, - [198270] = 5, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [194274] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(170), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1234), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2904), 2, - sym_comment, - sym_include, - ACTIONS(172), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2821), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221592,25 +219103,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_include_argument_token1, - [198312] = 5, + [194337] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(206), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(244), 2, sym__or_operator, sym__and_operator, - STATE(2905), 2, + STATE(2822), 2, sym_comment, sym_include, - ACTIONS(208), 25, + ACTIONS(246), 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, @@ -221629,33 +219139,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_include_argument_token1, - [198354] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [194382] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 2, - sym__or_operator, - sym__and_operator, - STATE(2906), 2, - sym_comment, - sym_include, - ACTIONS(71), 25, - anon_sym_SLASH, + ACTIONS(75), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2823), 2, + sym_comment, + sym_include, + ACTIONS(204), 3, + sym__or_operator, + sym__and_operator, + aux_sym_else_statement_token1, + ACTIONS(2425), 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, @@ -221666,84 +219189,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, - [198396] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [194443] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(134), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4174), 1, + aux_sym_output_stream_statement_token1, + STATE(812), 1, + sym__comparison_operator, + STATE(813), 1, + sym__multiplicative_operator, + STATE(814), 1, + sym__additive_operator, + STATE(815), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2908), 2, - sym_comment, - sym_include, - ACTIONS(136), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2824), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221754,34 +219237,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [198510] = 6, - ACTIONS(3), 1, + [194506] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(210), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4176), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2909), 2, - sym_comment, - sym_include, - ACTIONS(212), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2825), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221792,30 +219285,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [198554] = 9, + [194569] = 6, 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(4254), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(240), 2, sym__or_operator, sym__and_operator, - STATE(2910), 2, + STATE(2826), 2, sym_comment, sym_include, - ACTIONS(1354), 21, + ACTIONS(242), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -221834,33 +219321,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_else_statement_token1, - [198604] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [194614] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(178), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4178), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2911), 2, - sym_comment, - sym_include, - ACTIONS(180), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2827), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221871,33 +219372,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, - [198646] = 6, - ACTIONS(3), 1, + [194677] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(198), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4180), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2912), 2, - sym_comment, - sym_include, - ACTIONS(200), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2828), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221908,26 +219420,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [198690] = 5, + [194740] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(134), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(4182), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, sym__or_operator, sym__and_operator, - STATE(2913), 2, + STATE(2829), 2, sym_comment, sym_include, - ACTIONS(136), 25, + ACTIONS(1377), 22, + anon_sym_COLON, 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, @@ -221946,33 +219461,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_include_argument_token1, - [198732] = 6, - ACTIONS(3), 1, + aux_sym_on_error_phrase_token1, + [194791] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(194), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1133), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2914), 2, - sym_comment, - sym_include, - ACTIONS(196), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2830), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -221983,26 +219510,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, - [198776] = 5, + [194854] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(210), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4184), 1, + sym__namedot, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - STATE(2915), 2, + STATE(2831), 2, sym_comment, sym_include, - ACTIONS(212), 25, + ACTIONS(162), 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, @@ -222021,36 +219548,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_include_argument_token1, - [198818] = 8, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [194901] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2916), 2, - sym_comment, - sym_include, - ACTIONS(1579), 22, - anon_sym_COLON, + ACTIONS(1105), 1, anon_sym_SLASH, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2832), 2, + sym_comment, + sym_include, + ACTIONS(1202), 3, + sym__or_operator, + sym__and_operator, + aux_sym_if_statement_token2, + ACTIONS(2425), 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, @@ -222061,33 +219597,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_on_error_phrase_token1, - [198866] = 6, - ACTIONS(3), 1, + [194962] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(230), 2, - sym__or_operator, - sym__and_operator, - STATE(2917), 2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + STATE(2833), 2, sym_comment, sym_include, - ACTIONS(232), 24, + ACTIONS(1204), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1206), 20, + 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, @@ -222098,86 +219639,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [198910] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_if_statement_token2, + [195015] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(242), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4186), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2919), 2, - sym_comment, - sym_include, - ACTIONS(244), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2834), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222188,37 +219688,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_scope_tuning_token1, - [199024] = 9, - ACTIONS(3), 1, + [195078] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4188), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2920), 2, - sym_comment, - sym_include, - ACTIONS(1354), 21, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2835), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222229,26 +219736,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_output_stream_statement_token1, - [199074] = 6, + [195141] = 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(228), 2, sym__or_operator, sym__and_operator, - STATE(2921), 2, + STATE(2836), 2, sym_comment, sym_include, - ACTIONS(180), 24, + ACTIONS(230), 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, @@ -222267,135 +219772,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, - [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, + anon_sym_NO_DASHERROR, + [195186] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(85), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4190), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2924), 2, - sym_comment, - sym_include, - ACTIONS(87), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2837), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222406,37 +219823,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [199302] = 8, - ACTIONS(3), 1, + [195249] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1581), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4192), 1, + sym__terminator, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2925), 2, - sym_comment, - sym_include, - ACTIONS(1579), 22, - anon_sym_SLASH, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2838), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222447,34 +219871,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, - [199350] = 6, - ACTIONS(3), 1, + [195312] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4194), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2926), 2, - sym_comment, - sym_include, - ACTIONS(176), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2839), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222485,33 +219919,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_scope_tuning_token1, - [199394] = 5, - ACTIONS(3), 1, + [195375] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(198), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4196), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2927), 2, - sym_comment, - sym_include, - ACTIONS(200), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2840), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222522,25 +219967,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, - [199436] = 5, + [195438] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(242), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(224), 2, sym__or_operator, sym__and_operator, - STATE(2928), 2, + STATE(2841), 2, sym_comment, sym_include, - ACTIONS(244), 25, + ACTIONS(226), 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, @@ -222559,33 +220004,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_include_argument_token1, - [199478] = 5, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [195483] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(194), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4198), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2929), 2, - sym_comment, - sym_include, - ACTIONS(196), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2842), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222596,33 +220054,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, - [199520] = 6, - ACTIONS(3), 1, + [195546] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4200), 1, + anon_sym_RPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2930), 2, - sym_comment, - sym_include, - ACTIONS(184), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2843), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222633,85 +220102,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [199564] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [195609] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(238), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4202), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2932), 2, - sym_comment, - sym_include, - ACTIONS(240), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2844), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222722,76 +220150,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [199678] = 10, - ACTIONS(3), 1, + [195672] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, - sym_identifier, - ACTIONS(2561), 1, - aux_sym_class_type_token1, - ACTIONS(2569), 1, - sym__escaped_string, - STATE(2933), 2, - sym_comment, - sym_include, - 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(238), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4204), 1, + anon_sym_RPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2934), 2, - sym_comment, - sym_include, - ACTIONS(240), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2845), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222802,33 +220198,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, - [199772] = 6, - ACTIONS(3), 1, + [195735] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4206), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2935), 2, - sym_comment, - sym_include, - ACTIONS(176), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2846), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222839,76 +220246,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [199816] = 10, - ACTIONS(3), 1, + [195798] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, - sym_identifier, - ACTIONS(2561), 1, - aux_sym_class_type_token1, - ACTIONS(2569), 1, - sym__escaped_string, - STATE(2936), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(2847), 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(214), 2, + ACTIONS(1210), 18, sym__or_operator, sym__and_operator, - STATE(2937), 2, - sym_comment, - sym_include, - ACTIONS(216), 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, @@ -222919,34 +220290,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [199912] = 5, - ACTIONS(3), 1, + aux_sym_if_statement_token2, + [195855] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(182), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1214), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2938), 2, - sym_comment, - sym_include, - ACTIONS(184), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2848), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -222957,62 +220339,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, - [199954] = 5, - ACTIONS(3), 1, + [195918] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(4266), 1, - sym__escaped_string, - STATE(2939), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4208), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2849), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [195981] = 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(67), 2, sym__or_operator, sym__and_operator, - STATE(2940), 2, + STATE(2850), 2, sym_comment, sym_include, - ACTIONS(188), 24, + ACTIONS(73), 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, @@ -223031,26 +220424,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, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200040] = 5, + [196026] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(212), 2, sym__or_operator, sym__and_operator, - STATE(2941), 2, + STATE(2851), 2, sym_comment, sym_include, - ACTIONS(125), 25, + ACTIONS(214), 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, @@ -223069,33 +220463,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, - [200082] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [196071] = 27, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(174), 2, - sym__or_operator, - sym__and_operator, - STATE(2942), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3022), 1, + sym_of, + STATE(3065), 1, + sym__pre_tuning, + STATE(3165), 1, + aux_sym_for_phrase_repeat1, + STATE(3166), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3578), 1, + aux_sym_for_phrase_repeat2, + STATE(4188), 1, + sym_on_error_phrase, + STATE(4326), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5042), 1, + aux_sym_for_statement_repeat1, + STATE(5048), 1, + sym_on_stop_phrase, + STATE(5979), 1, + sym_body, + STATE(2852), 2, sym_comment, sym_include, - ACTIONS(176), 25, - anon_sym_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [196158] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4210), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2853), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223106,25 +220573,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, - [200124] = 6, + [196221] = 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(212), 2, sym__or_operator, sym__and_operator, - STATE(2943), 2, + STATE(2854), 2, sym_comment, sym_include, - ACTIONS(192), 24, + ACTIONS(214), 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, @@ -223143,26 +220610,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200168] = 5, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [196266] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(214), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(248), 2, sym__or_operator, sym__and_operator, - STATE(2944), 2, + STATE(2855), 2, sym_comment, sym_include, - ACTIONS(216), 25, + ACTIONS(250), 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, @@ -223181,33 +220649,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_include_argument_token1, - [200210] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [196311] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(186), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4212), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2945), 2, - sym_comment, - sym_include, - ACTIONS(188), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2856), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223218,25 +220699,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, - [200252] = 5, + [196374] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(190), 2, - sym__or_operator, - sym__and_operator, - STATE(2946), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2857), 2, sym_comment, sym_include, - ACTIONS(192), 25, + ACTIONS(152), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(154), 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, @@ -223255,33 +220736,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_include_argument_token1, - [200294] = 6, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [196419] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4214), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2947), 2, - sym_comment, - sym_include, - ACTIONS(172), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2858), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223292,34 +220786,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200338] = 5, - ACTIONS(3), 1, + [196482] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(218), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4216), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2948), 2, - sym_comment, - sym_include, - ACTIONS(220), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2859), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223330,33 +220834,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, - [200380] = 5, - ACTIONS(3), 1, + [196545] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(222), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4174), 1, + sym__terminator, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2949), 2, - sym_comment, - sym_include, - ACTIONS(224), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2860), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223367,25 +220882,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, - [200422] = 5, + [196608] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(226), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(216), 2, sym__or_operator, sym__and_operator, - STATE(2950), 2, + STATE(2861), 2, sym_comment, sym_include, - ACTIONS(228), 25, + ACTIONS(218), 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, @@ -223404,21 +220919,82 @@ static 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, - [200464] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [196653] = 27, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3040), 1, + sym_of, + STATE(3049), 1, + sym__pre_tuning, + STATE(3110), 1, + aux_sym_for_phrase_repeat1, + STATE(3113), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3530), 1, + aux_sym_for_phrase_repeat2, + STATE(4174), 1, + sym_on_error_phrase, + STATE(4433), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5152), 1, + aux_sym_for_statement_repeat1, + STATE(5153), 1, + sym_on_stop_phrase, + STATE(5581), 1, + sym_body, + STATE(2862), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [196740] = 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(87), 2, sym__or_operator, sym__and_operator, - STATE(2951), 2, + STATE(2863), 2, sym_comment, sym_include, - ACTIONS(200), 24, + ACTIONS(89), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -223442,21 +221018,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, aux_sym_scope_tuning_token1, - [200508] = 6, + [196785] = 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(204), 2, sym__or_operator, sym__and_operator, - STATE(2952), 2, + STATE(2864), 2, sym_comment, sym_include, - ACTIONS(204), 24, + ACTIONS(206), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -223480,33 +221057,94 @@ static 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, - [200552] = 6, - ACTIONS(3), 1, + [196830] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(123), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4218), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2953), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2865), 2, sym_comment, sym_include, - ACTIONS(125), 24, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [196893] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(4220), 1, + anon_sym_RPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2866), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223517,26 +221155,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200596] = 6, + [196956] = 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(240), 2, sym__or_operator, sym__and_operator, - STATE(2954), 2, + STATE(2867), 2, sym_comment, sym_include, - ACTIONS(228), 24, + ACTIONS(242), 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, @@ -223555,26 +221192,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200640] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [197001] = 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(236), 2, sym__or_operator, sym__and_operator, - STATE(2955), 2, + STATE(2868), 2, sym_comment, sym_include, - ACTIONS(208), 24, + ACTIONS(238), 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, @@ -223593,26 +221231,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200684] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [197046] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(234), 2, + ACTIONS(232), 2, sym__or_operator, sym__and_operator, - STATE(2956), 2, + STATE(2869), 2, sym_comment, sym_include, - ACTIONS(236), 24, + ACTIONS(234), 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, @@ -223631,34 +221270,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200728] = 5, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [197091] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(246), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4222), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2957), 2, - sym_comment, - sym_include, - ACTIONS(248), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2870), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223669,33 +221320,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_include_argument_token1, - [200770] = 5, - ACTIONS(3), 1, + [197154] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(150), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4224), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2958), 2, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2871), 2, sym_comment, sym_include, - ACTIONS(152), 25, - anon_sym_SLASH, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [197217] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1129), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2872), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223706,25 +221416,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, - [200812] = 6, + [197280] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(65), 2, + ACTIONS(136), 2, sym__or_operator, sym__and_operator, - STATE(2959), 2, + STATE(2873), 2, sym_comment, sym_include, - ACTIONS(71), 24, + ACTIONS(138), 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, @@ -223743,35 +221453,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, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [200856] = 6, - ACTIONS(3), 1, + [197325] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(65), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4226), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2960), 2, - sym_comment, - sym_include, - ACTIONS(71), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2874), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -223782,21 +221503,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, - [200900] = 6, + [197388] = 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(188), 2, sym__or_operator, sym__and_operator, - STATE(2961), 2, + STATE(2875), 2, sym_comment, sym_include, - ACTIONS(208), 24, + ACTIONS(190), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -223820,185 +221540,153 @@ static 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, - [200944] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [197433] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4228), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2876), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [197496] = 26, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3078), 1, + sym_of, + STATE(3096), 1, + sym__pre_tuning, + STATE(3179), 1, + aux_sym_for_phrase_repeat1, + STATE(3182), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3860), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4650), 1, + sym_on_error_phrase, + STATE(5142), 1, + sym_on_quit_phrase, + STATE(5658), 1, + sym_on_stop_phrase, + ACTIONS(4230), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(2877), 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, - [201084] = 18, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [197581] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(242), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4232), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2965), 2, - sym_comment, - sym_include, - ACTIONS(244), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2878), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224009,34 +221697,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [201196] = 6, - ACTIONS(3), 1, + [197644] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4234), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2966), 2, - sym_comment, - sym_include, - ACTIONS(152), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2879), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224047,35 +221745,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [201240] = 6, - ACTIONS(3), 1, + [197707] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4236), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2967), 2, - sym_comment, - sym_include, - ACTIONS(172), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2880), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224086,135 +221793,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_scope_tuning_token1, - [201284] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [197770] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4234), 1, - aux_sym_image_phrase_token1, + ACTIONS(1105), 1, + anon_sym_SLASH, 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(218), 2, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2970), 2, - sym_comment, - sym_include, - ACTIONS(220), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2881), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224225,30 +221841,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_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [201468] = 9, + [197833] = 6, 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(4311), 1, - aux_sym_input_expression_token2, - STATE(28), 1, - sym_qualified_name, - ACTIONS(1358), 2, + ACTIONS(208), 2, sym__or_operator, sym__and_operator, - STATE(2971), 2, + STATE(2882), 2, sym_comment, sym_include, - ACTIONS(1354), 21, + ACTIONS(210), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -224267,26 +221877,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, - [201518] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [197878] = 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, - STATE(2972), 2, + STATE(2883), 2, sym_comment, sym_include, - ACTIONS(248), 24, + ACTIONS(148), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(150), 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, @@ -224306,20 +221918,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - [201562] = 6, + anon_sym_NO_DASHERROR, + [197923] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(238), 2, + ACTIONS(180), 2, sym__or_operator, sym__and_operator, - STATE(2973), 2, + STATE(2884), 2, sym_comment, sym_include, - ACTIONS(240), 24, + ACTIONS(182), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -224343,123 +221956,70 @@ static 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, - [201606] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [197968] = 15, 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(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(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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4240), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2885), 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, - [201746] = 6, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [198031] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(85), 2, + ACTIONS(176), 2, sym__or_operator, sym__and_operator, - STATE(2976), 2, + STATE(2886), 2, sym_comment, sym_include, - ACTIONS(87), 24, + ACTIONS(178), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -224483,34 +222043,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, aux_sym_scope_tuning_token1, - [201790] = 6, - ACTIONS(3), 1, + [198076] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(230), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1218), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2977), 2, - sym_comment, - sym_include, - ACTIONS(232), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2887), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224521,187 +222093,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_scope_tuning_token1, - [201834] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [198139] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4234), 1, - aux_sym_image_phrase_token1, - ACTIONS(4238), 1, - aux_sym_size_phrase_token1, + ACTIONS(1105), 1, + anon_sym_SLASH, 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, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2888), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [198202] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(134), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4244), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2981), 2, - sym_comment, - sym_include, - ACTIONS(136), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2889), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224712,85 +222189,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_scope_tuning_token1, - [202088] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [198265] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(210), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4246), 1, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2983), 2, - sym_comment, - sym_include, - ACTIONS(212), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2890), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224801,34 +222237,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_scope_tuning_token1, - [202202] = 6, - ACTIONS(3), 1, + [198328] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1234), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2984), 2, - sym_comment, - sym_include, - ACTIONS(152), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2891), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224839,34 +222285,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_scope_tuning_token1, - [202246] = 6, - ACTIONS(3), 1, + [198391] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(234), 2, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4248), 1, + aux_sym_else_statement_token1, + STATE(947), 1, + sym__comparison_operator, + STATE(948), 1, + sym__multiplicative_operator, + STATE(949), 1, + sym__additive_operator, + STATE(950), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, sym__or_operator, sym__and_operator, - STATE(2985), 2, - sym_comment, - sym_include, - ACTIONS(236), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2421), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2892), 2, + sym_comment, + sym_include, + ACTIONS(2425), 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, @@ -224877,21 +222333,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, - [202290] = 6, + [198454] = 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(172), 2, sym__or_operator, sym__and_operator, - STATE(2986), 2, + STATE(2893), 2, sym_comment, sym_include, - ACTIONS(228), 24, + ACTIONS(174), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -224915,174 +222370,118 @@ static 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, - [202334] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [198499] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(1105), 1, + anon_sym_SLASH, 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, + anon_sym_RBRACK, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2894), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [198562] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(4252), 1, + anon_sym_RPAREN, + STATE(942), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(965), 1, + sym__additive_operator, + STATE(984), 1, + sym__logical_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2895), 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(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [198625] = 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(102), 2, sym__or_operator, sym__and_operator, - STATE(2990), 2, + STATE(2896), 2, sym_comment, sym_include, - ACTIONS(216), 24, + ACTIONS(104), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225106,21 +222505,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, aux_sym_scope_tuning_token1, - [202588] = 6, + [198670] = 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(220), 2, sym__or_operator, sym__and_operator, - STATE(2991), 2, + STATE(2897), 2, sym_comment, sym_include, - ACTIONS(188), 24, + ACTIONS(222), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225144,114 +222544,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, aux_sym_scope_tuning_token1, - [202632] = 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(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, - 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, + [198715] = 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(196), 2, sym__or_operator, sym__and_operator, - STATE(2994), 2, + STATE(2898), 2, sym_comment, sym_include, - ACTIONS(192), 24, + ACTIONS(198), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225275,25 +222583,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, aux_sym_scope_tuning_token1, - [202798] = 6, + [198760] = 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(200), 2, sym__or_operator, sym__and_operator, - STATE(2995), 2, + STATE(2899), 2, sym_comment, sym_include, - ACTIONS(204), 24, + ACTIONS(202), 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, @@ -225312,26 +222622,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, aux_sym_scope_tuning_token1, - anon_sym_NO_DASHERROR, - [202842] = 5, + [198805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(202), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(208), 2, sym__or_operator, sym__and_operator, - STATE(2996), 2, + STATE(2900), 2, sym_comment, sym_include, - ACTIONS(204), 25, + ACTIONS(210), 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, @@ -225350,25 +222661,75 @@ static 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, - [202884] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [198850] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1230), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2901), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [198913] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(234), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(232), 2, sym__or_operator, sym__and_operator, - STATE(2997), 2, + STATE(2902), 2, sym_comment, sym_include, - ACTIONS(236), 25, + ACTIONS(234), 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, @@ -225387,21 +222748,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, - [202926] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [198958] = 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(236), 2, sym__or_operator, sym__and_operator, - STATE(2998), 2, + STATE(2903), 2, sym_comment, sym_include, - ACTIONS(196), 24, + ACTIONS(238), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225425,27 +222787,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, aux_sym_scope_tuning_token1, - [202970] = 8, + [199003] = 6, 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, + ACTIONS(240), 2, sym__or_operator, sym__and_operator, - STATE(2999), 2, + STATE(2904), 2, sym_comment, sym_include, - ACTIONS(1579), 22, + ACTIONS(242), 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, @@ -225465,21 +222827,21 @@ 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, - [203018] = 6, + aux_sym_scope_tuning_token1, + [199048] = 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(224), 2, sym__or_operator, sym__and_operator, - STATE(3000), 2, + STATE(2905), 2, sym_comment, sym_include, - ACTIONS(220), 24, + ACTIONS(226), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225503,105 +222865,151 @@ static 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, - [203062] = 10, + [199093] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2557), 1, + ACTIONS(2469), 1, sym_identifier, - ACTIONS(2561), 1, - aux_sym_class_type_token1, - ACTIONS(2569), 1, - sym__escaped_string, - STATE(3001), 2, + ACTIONS(4254), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(2906), 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(1377), 22, + 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_when_expression_token1, + aux_sym_output_stream_statement_token1, + [199144] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1222), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2907), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [199207] = 6, 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, + ACTIONS(224), 2, + sym__or_operator, + sym__and_operator, + STATE(2908), 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(226), 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, + [199252] = 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(160), 2, sym__or_operator, sym__and_operator, - STATE(3003), 2, + STATE(2909), 2, sym_comment, sym_include, - ACTIONS(184), 24, + ACTIONS(162), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225625,21 +223033,70 @@ static 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, - [203210] = 6, + [199297] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(1105), 1, + anon_sym_SLASH, + ACTIONS(1226), 1, + aux_sym_if_statement_token2, + STATE(388), 1, + sym__comparison_operator, + STATE(615), 1, + sym__additive_operator, + STATE(704), 1, + sym__logical_operator, + STATE(898), 1, + sym__multiplicative_operator, + ACTIONS(1109), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2421), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2423), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2910), 2, + sym_comment, + sym_include, + ACTIONS(2425), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [199360] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(246), 2, + ACTIONS(192), 2, sym__or_operator, sym__and_operator, - STATE(3004), 2, + STATE(2911), 2, sym_comment, sym_include, - ACTIONS(248), 24, + ACTIONS(194), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225664,20 +223121,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [203254] = 6, + [199404] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(240), 2, + sym__or_operator, + sym__and_operator, + STATE(2912), 2, + sym_comment, + sym_include, + ACTIONS(242), 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, + [199446] = 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(216), 2, sym__or_operator, sym__and_operator, - STATE(3005), 2, + STATE(2913), 2, sym_comment, sym_include, - ACTIONS(224), 24, + ACTIONS(218), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225702,20 +223196,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - [203298] = 6, + [199490] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(123), 2, + ACTIONS(248), 2, sym__or_operator, sym__and_operator, - STATE(3006), 2, + STATE(2914), 2, sym_comment, sym_include, - ACTIONS(125), 24, + ACTIONS(250), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -225740,26 +223234,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - [203342] = 8, + [199534] = 6, 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, + ACTIONS(180), 2, sym__or_operator, sym__and_operator, - STATE(3007), 2, + STATE(2915), 2, sym_comment, sym_include, - ACTIONS(1579), 21, + ACTIONS(182), 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, @@ -225778,138 +223271,115 @@ static 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, - [203389] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [199578] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4256), 1, + sym__terminator, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + STATE(2994), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2916), 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, - [203468] = 25, - ACTIONS(67), 1, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [199648] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(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, + ACTIONS(184), 2, + sym__or_operator, + sym__and_operator, + STATE(2917), 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(186), 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, + [199692] = 6, 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, + ACTIONS(188), 2, sym__or_operator, sym__and_operator, - STATE(3010), 2, + STATE(2918), 2, sym_comment, sym_include, - ACTIONS(1579), 21, + ACTIONS(190), 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, @@ -225928,189 +223398,152 @@ static 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, - [203596] = 25, - ACTIONS(67), 1, + aux_sym_scope_tuning_token1, + [199736] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(3053), 1, - sym__pre_tuning, - STATE(3144), 1, - sym_where_clause, - STATE(3145), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3550), 1, - aux_sym_for_phrase_repeat2, - STATE(4154), 1, - sym_on_error_phrase, - STATE(4353), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5053), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, - sym_on_stop_phrase, - STATE(5939), 1, - sym_body, - STATE(3011), 2, + ACTIONS(136), 2, + sym__or_operator, + sym__and_operator, + STATE(2919), 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, - [203677] = 25, - ACTIONS(67), 1, + ACTIONS(138), 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, + [199780] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(176), 2, + sym__or_operator, + sym__and_operator, + STATE(2920), 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(178), 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, + [199824] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4280), 1, + sym__terminator, + STATE(2926), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2921), 2, sym_comment, sym_include, - 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, - [203827] = 8, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [199894] = 6, 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, + ACTIONS(160), 2, sym__or_operator, sym__and_operator, - STATE(3014), 2, + STATE(2922), 2, sym_comment, sym_include, - ACTIONS(1579), 21, + ACTIONS(162), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -226129,219 +223562,565 @@ static 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, - [203874] = 5, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [199938] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4282), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2923), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [200008] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - sym__escaped_string, - STATE(3015), 2, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(2924), 2, sym_comment, sym_include, - ACTIONS(4333), 25, + ACTIONS(73), 25, + anon_sym_SLASH, anon_sym_LBRACE, + anon_sym_RBRACE, 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, - [203915] = 5, + 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, + [200050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4339), 1, - sym__escaped_string, - STATE(3016), 2, + ACTIONS(212), 2, + sym__or_operator, + sym__and_operator, + STATE(2925), 2, sym_comment, sym_include, - ACTIONS(4337), 25, + ACTIONS(214), 25, + anon_sym_SLASH, anon_sym_LBRACE, + anon_sym_RBRACE, 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, - [203956] = 25, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [200092] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4284), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2926), 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, - [204037] = 5, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [200162] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4343), 1, - sym__escaped_string, - STATE(3018), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(2927), 2, sym_comment, sym_include, - ACTIONS(4341), 25, + ACTIONS(1595), 22, + 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_when_expression_token1, + aux_sym_output_stream_statement_token1, + [200210] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(204), 2, + sym__or_operator, + sym__and_operator, + STATE(2928), 2, + sym_comment, + sym_include, + ACTIONS(206), 24, + anon_sym_SLASH, 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, + 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, - 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, - [204078] = 5, + [200254] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - sym__escaped_string, - STATE(3019), 2, + ACTIONS(248), 2, + sym__or_operator, + sym__and_operator, + STATE(2929), 2, sym_comment, sym_include, - ACTIONS(4345), 25, + ACTIONS(250), 25, + anon_sym_SLASH, anon_sym_LBRACE, + anon_sym_RBRACE, 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, - [204119] = 5, + 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, + [200296] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - sym__escaped_string, - STATE(3020), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(2930), 2, sym_comment, sym_include, - ACTIONS(4349), 25, - anon_sym_LBRACE, + ACTIONS(89), 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, + [200340] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4286), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2931), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [200410] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(232), 2, + sym__or_operator, + sym__and_operator, + STATE(2932), 2, + sym_comment, + sym_include, + ACTIONS(234), 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, + [200454] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4288), 1, + sym__terminator, + STATE(2931), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2933), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [200524] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(172), 2, + sym__or_operator, + sym__and_operator, + STATE(2934), 2, + sym_comment, + sym_include, + ACTIONS(174), 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, + [200568] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(212), 2, + sym__or_operator, + sym__and_operator, + STATE(2935), 2, + sym_comment, + sym_include, + ACTIONS(214), 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, + [200612] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4290), 1, + sym__escaped_string, + STATE(2936), 2, + sym_comment, + sym_include, + ACTIONS(1525), 26, + anon_sym_LBRACE, sym_identifier, sym_null_expression, aux_sym_boolean_literal_token1, @@ -226351,6 +224130,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, @@ -226366,5402 +224146,14514 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [204160] = 25, - ACTIONS(67), 1, + [200654] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(2937), 2, + sym_comment, + sym_include, + ACTIONS(73), 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, + [200698] = 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(2938), 2, + sym_comment, + sym_include, + ACTIONS(104), 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, + [200742] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(192), 2, + sym__or_operator, + sym__and_operator, + STATE(2939), 2, + sym_comment, + sym_include, + ACTIONS(194), 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, + [200784] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(220), 2, + sym__or_operator, + sym__and_operator, + STATE(2940), 2, + sym_comment, + sym_include, + ACTIONS(222), 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, + [200828] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(216), 2, + sym__or_operator, + sym__and_operator, + STATE(2941), 2, + sym_comment, + sym_include, + ACTIONS(218), 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, + [200870] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(196), 2, + sym__or_operator, + sym__and_operator, + STATE(2942), 2, + sym_comment, + sym_include, + ACTIONS(198), 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, + [200914] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(224), 2, + sym__or_operator, + sym__and_operator, + STATE(2943), 2, + sym_comment, + sym_include, + ACTIONS(226), 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, + [200958] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(2944), 2, + sym_comment, + sym_include, + ACTIONS(89), 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, + [201000] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(204), 2, + sym__or_operator, + sym__and_operator, + STATE(2945), 2, + sym_comment, + sym_include, + ACTIONS(206), 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, + [201042] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(200), 2, + sym__or_operator, + sym__and_operator, + STATE(2946), 2, + sym_comment, + sym_include, + ACTIONS(202), 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, + [201086] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(208), 2, + sym__or_operator, + sym__and_operator, + STATE(2947), 2, + sym_comment, + sym_include, + ACTIONS(210), 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, + [201130] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4292), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2948), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [201200] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(248), 2, + sym__or_operator, + sym__and_operator, + STATE(2949), 2, + sym_comment, + sym_include, + ACTIONS(250), 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, + [201244] = 18, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4294), 1, + sym__terminator, + ACTIONS(4302), 1, + aux_sym_image_phrase_token1, + ACTIONS(4308), 1, + aux_sym_size_phrase_token1, + ACTIONS(4314), 1, + aux_sym_button_tuning_token1, + ACTIONS(4323), 1, + aux_sym_button_tuning_token9, + ACTIONS(4326), 1, + aux_sym_button_tuning_token14, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4296), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4299), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4311), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + ACTIONS(4305), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4317), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + STATE(2950), 3, + sym_comment, + sym_include, + aux_sym_button_definition_repeat1, + ACTIONS(4320), 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, + [201312] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, + aux_sym_class_type_token1, + ACTIONS(2573), 1, + sym__escaped_string, + STATE(2951), 2, + sym_comment, + sym_include, + STATE(3569), 2, + sym_string_literal, + sym__type, + STATE(5144), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2563), 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, + [201364] = 6, + 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(2952), 2, + sym_comment, + sym_include, + ACTIONS(238), 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, + [201408] = 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(2953), 2, + sym_comment, + sym_include, + ACTIONS(242), 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, + [201452] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(224), 2, + sym__or_operator, + sym__and_operator, + STATE(2954), 2, + sym_comment, + sym_include, + ACTIONS(226), 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, + [201496] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4329), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2955), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [201566] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(212), 2, + sym__or_operator, + sym__and_operator, + STATE(2956), 2, + sym_comment, + sym_include, + ACTIONS(214), 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, + [201610] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(136), 2, + sym__or_operator, + sym__and_operator, + STATE(2957), 2, + sym_comment, + sym_include, + ACTIONS(138), 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, + [201652] = 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(2958), 2, + sym_comment, + sym_include, + ACTIONS(242), 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, + [201696] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(188), 2, + sym__or_operator, + sym__and_operator, + STATE(2959), 2, + sym_comment, + sym_include, + ACTIONS(190), 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, + [201738] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(160), 2, + sym__or_operator, + sym__and_operator, + STATE(2960), 2, + sym_comment, + sym_include, + ACTIONS(162), 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, + [201782] = 6, + 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(2961), 2, + sym_comment, + sym_include, + ACTIONS(238), 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, + [201826] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(232), 2, + sym__or_operator, + sym__and_operator, + STATE(2962), 2, + sym_comment, + sym_include, + ACTIONS(234), 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, + [201870] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(2963), 2, + sym_comment, + sym_include, + ACTIONS(73), 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, + [201914] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4331), 1, + sym__terminator, + STATE(2955), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2964), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [201984] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4333), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2965), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [202054] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(244), 2, + sym__or_operator, + sym__and_operator, + STATE(2966), 2, + sym_comment, + sym_include, + ACTIONS(246), 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, + [202098] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(184), 2, + sym__or_operator, + sym__and_operator, + STATE(2967), 2, + sym_comment, + sym_include, + ACTIONS(186), 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, + [202142] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(216), 2, + sym__or_operator, + sym__and_operator, + STATE(2968), 2, + sym_comment, + sym_include, + ACTIONS(218), 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, + [202186] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(228), 2, + sym__or_operator, + sym__and_operator, + STATE(2969), 2, + sym_comment, + sym_include, + ACTIONS(230), 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, + [202230] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(87), 2, + sym__or_operator, + sym__and_operator, + STATE(2970), 2, + sym_comment, + sym_include, + ACTIONS(89), 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, + [202274] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(180), 2, + sym__or_operator, + sym__and_operator, + STATE(2971), 2, + sym_comment, + sym_include, + ACTIONS(182), 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, + [202316] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(204), 2, + sym__or_operator, + sym__and_operator, + STATE(2972), 2, + sym_comment, + sym_include, + ACTIONS(206), 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, + [202360] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(176), 2, + sym__or_operator, + sym__and_operator, + STATE(2973), 2, + sym_comment, + sym_include, + ACTIONS(178), 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, + [202402] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(4335), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(2974), 2, + sym_comment, + sym_include, + ACTIONS(1377), 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_if_statement_token2, + [202452] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4337), 1, + sym__terminator, + STATE(2965), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2975), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [202522] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4339), 1, + sym__terminator, + STATE(2923), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2976), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [202592] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4341), 1, + sym__terminator, + STATE(2996), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2977), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [202662] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(244), 2, + sym__or_operator, + sym__and_operator, + STATE(2978), 2, + sym_comment, + sym_include, + ACTIONS(246), 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, + [202706] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4343), 1, + sym__terminator, + STATE(3013), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2979), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [202776] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, + aux_sym_class_type_token1, + ACTIONS(2573), 1, + sym__escaped_string, + STATE(2980), 2, + sym_comment, + sym_include, + STATE(3553), 2, + sym_string_literal, + sym__type, + STATE(5144), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2563), 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, + [202828] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(208), 2, + sym__or_operator, + sym__and_operator, + STATE(2981), 2, + sym_comment, + sym_include, + ACTIONS(210), 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, + [202872] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(172), 2, + sym__or_operator, + sym__and_operator, + STATE(2982), 2, + sym_comment, + sym_include, + ACTIONS(174), 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, + [202914] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, + aux_sym_class_type_token1, + ACTIONS(2573), 1, + sym__escaped_string, + STATE(2983), 2, + sym_comment, + sym_include, + STATE(3554), 2, + sym_string_literal, + sym__type, + STATE(5144), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2563), 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, + [202966] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(228), 2, + sym__or_operator, + sym__and_operator, + STATE(2984), 2, + sym_comment, + sym_include, + ACTIONS(230), 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, + [203010] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(102), 2, + sym__or_operator, + sym__and_operator, + STATE(2985), 2, + sym_comment, + sym_include, + ACTIONS(104), 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, + [203052] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(220), 2, + sym__or_operator, + sym__and_operator, + STATE(2986), 2, + sym_comment, + sym_include, + ACTIONS(222), 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, + [203094] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(200), 2, + sym__or_operator, + sym__and_operator, + STATE(2987), 2, + sym_comment, + sym_include, + ACTIONS(202), 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, + [203138] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(196), 2, + sym__or_operator, + sym__and_operator, + STATE(2988), 2, + sym_comment, + sym_include, + ACTIONS(198), 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, + [203180] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(200), 2, + sym__or_operator, + sym__and_operator, + STATE(2989), 2, + sym_comment, + sym_include, + ACTIONS(202), 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, + [203222] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(208), 2, + sym__or_operator, + sym__and_operator, + STATE(2990), 2, + sym_comment, + sym_include, + ACTIONS(210), 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, + [203264] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(192), 2, + sym__or_operator, + sym__and_operator, + STATE(2991), 2, + sym_comment, + sym_include, + ACTIONS(194), 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, + [203308] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(232), 2, + sym__or_operator, + sym__and_operator, + STATE(2992), 2, + sym_comment, + sym_include, + ACTIONS(234), 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, + [203350] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(236), 2, + sym__or_operator, + sym__and_operator, + STATE(2993), 2, + sym_comment, + sym_include, + ACTIONS(238), 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, + [203392] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4345), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2994), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [203462] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(224), 2, + sym__or_operator, + sym__and_operator, + STATE(2995), 2, + sym_comment, + sym_include, + ACTIONS(226), 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, + [203504] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4347), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2996), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [203574] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(136), 2, + sym__or_operator, + sym__and_operator, + STATE(2997), 2, + sym_comment, + sym_include, + ACTIONS(138), 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, + [203618] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, + aux_sym_class_type_token1, + ACTIONS(2573), 1, + sym__escaped_string, + STATE(2998), 2, + sym_comment, + sym_include, + STATE(3514), 2, + sym_string_literal, + sym__type, + STATE(5144), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2563), 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, + [203670] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(188), 2, + sym__or_operator, + sym__and_operator, + STATE(2999), 2, + sym_comment, + sym_include, + ACTIONS(190), 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, + [203714] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(3000), 2, + sym_comment, + sym_include, + ACTIONS(1595), 22, + 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, + [203762] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(244), 2, + sym__or_operator, + sym__and_operator, + STATE(3001), 2, + sym_comment, + sym_include, + ACTIONS(246), 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, + [203804] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(160), 2, + sym__or_operator, + sym__and_operator, + STATE(3002), 2, + sym_comment, + sym_include, + ACTIONS(162), 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, + [203846] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(184), 2, + sym__or_operator, + sym__and_operator, + STATE(3003), 2, + sym_comment, + sym_include, + ACTIONS(186), 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, + [203888] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(180), 2, + sym__or_operator, + sym__and_operator, + STATE(3004), 2, + sym_comment, + sym_include, + ACTIONS(182), 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, + [203932] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(196), 2, + sym__or_operator, + sym__and_operator, + STATE(3005), 2, + sym_comment, + sym_include, + ACTIONS(198), 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, + [203976] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(220), 2, + sym__or_operator, + sym__and_operator, + STATE(3006), 2, + sym_comment, + sym_include, + ACTIONS(222), 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, + [204020] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(4349), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(3007), 2, + sym_comment, + sym_include, + ACTIONS(1377), 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_else_statement_token1, + [204070] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4351), 1, + sym__terminator, + STATE(3018), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(3008), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [204140] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(176), 2, + sym__or_operator, + sym__and_operator, + STATE(3009), 2, + sym_comment, + sym_include, + ACTIONS(178), 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, + [204184] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(3010), 2, + sym_comment, + sym_include, + ACTIONS(1595), 22, + 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, + [204232] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2469), 1, + sym_identifier, + ACTIONS(4353), 1, + aux_sym_input_expression_token2, + STATE(35), 1, + sym_qualified_name, + ACTIONS(1381), 2, + sym__or_operator, + sym__and_operator, + STATE(3011), 2, + sym_comment, + sym_include, + ACTIONS(1377), 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, + [204282] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2561), 1, + sym_identifier, + ACTIONS(2565), 1, + aux_sym_class_type_token1, + ACTIONS(2573), 1, + sym__escaped_string, + STATE(3012), 2, + sym_comment, + sym_include, + STATE(3570), 2, + sym_string_literal, + sym__type, + STATE(5144), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2563), 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, + [204334] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4355), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(3013), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [204404] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(228), 2, + sym__or_operator, + sym__and_operator, + STATE(3014), 2, + sym_comment, + sym_include, + ACTIONS(230), 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, + [204446] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4357), 1, + sym__terminator, + STATE(2948), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(3015), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [204516] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(172), 2, + sym__or_operator, + sym__and_operator, + STATE(3016), 2, + sym_comment, + sym_include, + ACTIONS(174), 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, + [204560] = 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(3017), 2, + sym_comment, + sym_include, + ACTIONS(104), 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, + [204604] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4262), 1, + aux_sym_image_phrase_token1, + ACTIONS(4266), 1, + aux_sym_size_phrase_token1, + ACTIONS(4270), 1, + aux_sym_button_tuning_token1, + ACTIONS(4276), 1, + aux_sym_button_tuning_token9, + ACTIONS(4278), 1, + aux_sym_button_tuning_token14, + ACTIONS(4359), 1, + sym__terminator, + STATE(2950), 1, + aux_sym_button_definition_repeat1, + STATE(3070), 1, + sym_button_tuning, + STATE(3075), 1, + sym_size_phrase, + ACTIONS(4258), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4260), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4268), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(3018), 2, + sym_comment, + sym_include, + ACTIONS(4264), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4272), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4274), 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, + [204674] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3077), 1, + sym_of, + STATE(3111), 1, + sym__pre_tuning, + STATE(3186), 1, + aux_sym_for_phrase_repeat1, + STATE(3191), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3891), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4636), 1, + sym_on_error_phrase, + STATE(5068), 1, + sym_on_quit_phrase, + STATE(5822), 1, + sym_on_stop_phrase, + ACTIONS(4044), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3019), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204753] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3054), 1, + sym__pre_tuning, + STATE(3171), 1, + sym_where_clause, + STATE(3173), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3539), 1, + aux_sym_for_phrase_repeat2, + STATE(4107), 1, + sym_on_error_phrase, + STATE(4532), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5051), 1, + aux_sym_for_statement_repeat1, + STATE(5052), 1, + sym_on_stop_phrase, + STATE(5847), 1, + sym_body, + STATE(3020), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204834] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3078), 1, + sym_of, + STATE(3096), 1, + sym__pre_tuning, + STATE(3179), 1, + aux_sym_for_phrase_repeat1, + STATE(3182), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3860), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4650), 1, + sym_on_error_phrase, + STATE(5142), 1, + sym_on_quit_phrase, + STATE(5658), 1, + sym_on_stop_phrase, + ACTIONS(4230), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3021), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204913] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3061), 1, + sym__pre_tuning, + STATE(3153), 1, + sym_where_clause, + STATE(3154), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3533), 1, + aux_sym_for_phrase_repeat2, + STATE(4101), 1, + sym_on_error_phrase, + STATE(4497), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5030), 1, + aux_sym_for_statement_repeat1, + STATE(5032), 1, + sym_on_stop_phrase, + STATE(6007), 1, + sym_body, + STATE(3022), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204994] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3062), 1, + sym__pre_tuning, + STATE(3141), 1, + sym_where_clause, + STATE(3150), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3506), 1, + aux_sym_for_phrase_repeat2, + STATE(4249), 1, + sym_on_error_phrase, + STATE(4489), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5181), 1, + aux_sym_for_statement_repeat1, + STATE(5182), 1, + sym_on_stop_phrase, + STATE(6158), 1, + sym_body, + STATE(3023), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [205075] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4363), 1, + aux_sym_variable_tuning_token2, + STATE(3024), 2, + sym_comment, + sym_include, + ACTIONS(4361), 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, + [205118] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, + aux_sym_variable_tuning_token2, + STATE(3025), 2, + sym_comment, + sym_include, + ACTIONS(4126), 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, + [205161] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3069), 1, + sym__pre_tuning, + STATE(3160), 1, + aux_sym_for_phrase_repeat1, + STATE(3161), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3568), 1, + aux_sym_for_phrase_repeat2, + STATE(4243), 1, + sym_on_error_phrase, + STATE(4529), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5109), 1, + aux_sym_for_statement_repeat1, + STATE(5110), 1, + sym_on_stop_phrase, + STATE(5718), 1, + sym_body, + STATE(3026), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [205242] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3048), 1, + sym__pre_tuning, + STATE(3101), 1, + aux_sym_for_phrase_repeat1, + STATE(3103), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3510), 1, + aux_sym_for_phrase_repeat2, + STATE(4128), 1, + sym_on_error_phrase, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, + sym_on_stop_phrase, + STATE(5911), 1, + sym_body, + STATE(3027), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [205323] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3756), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3758), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3839), 1, + aux_sym_property_definition_token1, + ACTIONS(3841), 1, + aux_sym_event_definition_token1, + STATE(3212), 1, + aux_sym_property_definition_repeat1, + STATE(3266), 1, + sym_serialization_tuning, + STATE(3276), 1, + aux_sym_variable_definition_repeat1, + STATE(3298), 1, + aux_sym_event_definition_repeat1, + STATE(3310), 1, + sym_property_type, + STATE(3413), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3837), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3028), 2, + sym_comment, + sym_include, + STATE(3269), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [205392] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4367), 1, + sym__escaped_string, + STATE(3029), 2, + sym_comment, + sym_include, + ACTIONS(4365), 25, + 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, + [205433] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3056), 1, + sym__pre_tuning, + STATE(3132), 1, + aux_sym_for_phrase_repeat1, + STATE(3139), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3523), 1, + aux_sym_for_phrase_repeat2, + STATE(4260), 1, + sym_on_error_phrase, + STATE(4272), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, + sym_body, + STATE(3030), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [205514] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4371), 1, + sym__escaped_string, + STATE(3031), 2, + sym_comment, + sym_include, + ACTIONS(4369), 25, + 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, + [205555] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4375), 1, + sym__escaped_string, + STATE(3032), 2, + sym_comment, + sym_include, + ACTIONS(4373), 25, + 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, + [205596] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3058), 1, + sym__pre_tuning, + STATE(3135), 1, + aux_sym_for_phrase_repeat1, + STATE(3138), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3524), 1, + aux_sym_for_phrase_repeat2, + STATE(4256), 1, + sym_on_error_phrase, + STATE(4306), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(4783), 1, + sym_on_stop_phrase, + STATE(6124), 1, + sym_body, + STATE(3033), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [205677] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(3034), 2, + sym_comment, + sym_include, + ACTIONS(1595), 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_if_statement_token2, + [205724] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(3035), 2, + sym_comment, + sym_include, + ACTIONS(1595), 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_else_statement_token1, + [205771] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2487), 1, + sym_identifier, + STATE(30), 1, + sym_qualified_name, + ACTIONS(1597), 2, + sym__or_operator, + sym__and_operator, + STATE(3036), 2, + sym_comment, + sym_include, + ACTIONS(1595), 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, + [205818] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4056), 1, + aux_sym_variable_tuning_token2, + STATE(3037), 2, + sym_comment, + sym_include, + ACTIONS(4054), 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, + [205861] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3043), 1, + sym__pre_tuning, + STATE(3122), 1, + aux_sym_for_phrase_repeat1, + STATE(3123), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3563), 1, + aux_sym_for_phrase_repeat2, + STATE(4209), 1, + sym_on_error_phrase, + STATE(4346), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(4806), 1, + sym_on_stop_phrase, + STATE(5964), 1, + sym_body, + STATE(3038), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [205942] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4379), 1, + sym__escaped_string, + STATE(3039), 2, + sym_comment, + sym_include, + ACTIONS(4377), 25, + 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, + [205983] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3057), 1, + sym__pre_tuning, + STATE(3079), 1, + sym_where_clause, + STATE(3146), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3509), 1, + aux_sym_for_phrase_repeat2, + STATE(4163), 1, + sym_on_error_phrase, + STATE(4428), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, + sym_on_stop_phrase, + STATE(5752), 1, + sym_body, + STATE(3040), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206064] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4383), 1, + sym__escaped_string, + STATE(3041), 2, + sym_comment, + sym_include, + ACTIONS(4381), 25, + 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, + [206105] = 25, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3060), 1, + sym__pre_tuning, + STATE(3086), 1, + sym_where_clause, + STATE(3090), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3545), 1, + aux_sym_for_phrase_repeat2, + STATE(4111), 1, + sym_on_error_phrase, + STATE(4543), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4926), 1, + aux_sym_for_statement_repeat1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, + sym_body, + STATE(3042), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206186] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3126), 1, + aux_sym_for_phrase_repeat1, + STATE(3127), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3549), 1, + aux_sym_for_phrase_repeat2, + STATE(4223), 1, + sym_on_error_phrase, + STATE(4321), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4790), 1, + sym_on_stop_phrase, + STATE(4791), 1, + aux_sym_for_statement_repeat1, + STATE(6086), 1, + sym_body, + STATE(3043), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206264] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4385), 1, + sym_identifier, + ACTIONS(4389), 1, + aux_sym_class_type_token1, + STATE(2007), 1, + sym__type, + STATE(3044), 2, + sym_comment, + sym_include, + STATE(3025), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(4387), 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, + [206312] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3141), 1, + sym_where_clause, + STATE(3150), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3506), 1, + aux_sym_for_phrase_repeat2, + STATE(4249), 1, + sym_on_error_phrase, + STATE(4489), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5181), 1, + aux_sym_for_statement_repeat1, + STATE(5182), 1, + sym_on_stop_phrase, + STATE(6158), 1, + sym_body, + STATE(3045), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206390] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3086), 1, + sym_where_clause, + STATE(3090), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3545), 1, + aux_sym_for_phrase_repeat2, + STATE(4111), 1, + sym_on_error_phrase, + STATE(4543), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4926), 1, + aux_sym_for_statement_repeat1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, + sym_body, + STATE(3046), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206468] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3603), 1, + aux_sym_variable_definition_token4, + STATE(3047), 2, + sym_comment, + sym_include, + ACTIONS(4391), 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, + [206510] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3081), 1, + sym_where_clause, + STATE(3106), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3511), 1, + aux_sym_for_phrase_repeat2, + STATE(4142), 1, + sym_on_error_phrase, + STATE(4483), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4891), 1, + sym_on_stop_phrase, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, + sym_body, + STATE(3048), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206588] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3079), 1, + sym_where_clause, + STATE(3146), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3509), 1, + aux_sym_for_phrase_repeat2, + STATE(4163), 1, + sym_on_error_phrase, + STATE(4428), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, + sym_on_stop_phrase, + STATE(5752), 1, + sym_body, + STATE(3049), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206666] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3171), 1, + sym_where_clause, + STATE(3173), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3539), 1, + aux_sym_for_phrase_repeat2, + STATE(4107), 1, + sym_on_error_phrase, + STATE(4532), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5051), 1, + aux_sym_for_statement_repeat1, + STATE(5052), 1, + sym_on_stop_phrase, + STATE(5847), 1, + sym_body, + STATE(3050), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206744] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3135), 1, + aux_sym_for_phrase_repeat1, + STATE(3138), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3524), 1, + aux_sym_for_phrase_repeat2, + STATE(4256), 1, + sym_on_error_phrase, + STATE(4306), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(4783), 1, + sym_on_stop_phrase, + STATE(6124), 1, + sym_body, + STATE(3051), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206822] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3122), 1, + aux_sym_for_phrase_repeat1, + STATE(3123), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3563), 1, + aux_sym_for_phrase_repeat2, + STATE(4209), 1, + sym_on_error_phrase, + STATE(4346), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(4806), 1, + sym_on_stop_phrase, + STATE(5964), 1, + sym_body, + STATE(3052), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206900] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3132), 1, + aux_sym_for_phrase_repeat1, + STATE(3139), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3523), 1, + aux_sym_for_phrase_repeat2, + STATE(4260), 1, + sym_on_error_phrase, + STATE(4272), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, + sym_body, + STATE(3053), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206978] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3158), 1, + sym_where_clause, + STATE(3159), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3559), 1, + aux_sym_for_phrase_repeat2, + STATE(4139), 1, + sym_on_error_phrase, + STATE(4273), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5039), 1, + sym_on_stop_phrase, + STATE(5041), 1, + aux_sym_for_statement_repeat1, + STATE(5993), 1, + sym_body, + STATE(3054), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207056] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3101), 1, + aux_sym_for_phrase_repeat1, + STATE(3103), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3510), 1, + aux_sym_for_phrase_repeat2, + STATE(4128), 1, + sym_on_error_phrase, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, + sym_on_stop_phrase, + STATE(5911), 1, + sym_body, + STATE(3055), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207134] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3156), 1, + aux_sym_for_phrase_repeat1, + STATE(3157), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3546), 1, + aux_sym_for_phrase_repeat2, + STATE(4086), 1, + sym_on_error_phrase, + STATE(4491), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5111), 1, + sym_on_stop_phrase, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5844), 1, + sym_body, + STATE(3056), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207212] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3142), 1, + aux_sym_for_phrase_repeat1, + STATE(3143), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3541), 1, + aux_sym_for_phrase_repeat2, + STATE(4210), 1, + sym_on_error_phrase, + STATE(4279), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5059), 1, + sym_on_stop_phrase, + STATE(5060), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, + sym_body, + STATE(3057), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207290] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3147), 1, + aux_sym_for_phrase_repeat1, + STATE(3148), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3505), 1, + aux_sym_for_phrase_repeat2, + STATE(4192), 1, + sym_on_error_phrase, + STATE(4365), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4766), 1, + sym_on_stop_phrase, + STATE(4767), 1, + aux_sym_for_statement_repeat1, + STATE(6194), 1, + sym_body, + STATE(3058), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207368] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4395), 1, + aux_sym_using_statement_token2, + ACTIONS(4397), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3059), 2, + sym_comment, + sym_include, + ACTIONS(4393), 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, + [207412] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3098), 1, + aux_sym_for_phrase_repeat1, + STATE(3100), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3528), 1, + aux_sym_for_phrase_repeat2, + STATE(4125), 1, + sym_on_error_phrase, + STATE(4518), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4906), 1, + sym_on_stop_phrase, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(5946), 1, + sym_body, + STATE(3060), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207490] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3129), 1, + sym_where_clause, + STATE(3133), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3529), 1, + aux_sym_for_phrase_repeat2, + STATE(4252), 1, + sym_on_error_phrase, + STATE(4291), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5016), 1, + sym_on_stop_phrase, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(6051), 1, + sym_body, + STATE(3061), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207568] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3094), 1, + aux_sym_for_phrase_repeat1, + STATE(3095), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3562), 1, + aux_sym_for_phrase_repeat2, + STATE(4087), 1, + sym_on_error_phrase, + STATE(4469), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5140), 1, + sym_on_stop_phrase, + STATE(5141), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(3062), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207646] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4399), 1, + sym_identifier, + ACTIONS(4403), 1, + aux_sym_class_type_token1, + STATE(4989), 1, + sym__type, + STATE(3063), 2, + sym_comment, + sym_include, + STATE(3657), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(4401), 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, + [207694] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3160), 1, + aux_sym_for_phrase_repeat1, + STATE(3161), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3568), 1, + aux_sym_for_phrase_repeat2, + STATE(4243), 1, + sym_on_error_phrase, + STATE(4529), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5109), 1, + aux_sym_for_statement_repeat1, + STATE(5110), 1, + sym_on_stop_phrase, + STATE(5718), 1, + sym_body, + STATE(3064), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207772] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3153), 1, + sym_where_clause, + STATE(3154), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3533), 1, + aux_sym_for_phrase_repeat2, + STATE(4101), 1, + sym_on_error_phrase, + STATE(4497), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5030), 1, + aux_sym_for_statement_repeat1, + STATE(5032), 1, + sym_on_stop_phrase, + STATE(6007), 1, + sym_body, + STATE(3065), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207850] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4409), 1, + aux_sym_button_tuning_token15, + ACTIONS(4407), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3066), 2, + sym_comment, + sym_include, + ACTIONS(4405), 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, + [207894] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4411), 1, + sym_identifier, + ACTIONS(4413), 1, + aux_sym_class_type_token1, + STATE(2007), 1, + sym__type, + STATE(3067), 2, + sym_comment, + sym_include, + STATE(3657), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(4401), 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, + [207942] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4409), 1, + aux_sym_button_tuning_token2, + ACTIONS(4407), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3068), 2, + sym_comment, + sym_include, + ACTIONS(4405), 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, + [207986] = 24, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3169), 1, + sym_where_clause, + STATE(3172), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3522), 1, + aux_sym_for_phrase_repeat2, + STATE(4127), 1, + sym_on_error_phrase, + STATE(4340), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5104), 1, + sym_on_stop_phrase, + STATE(5105), 1, + aux_sym_for_statement_repeat1, + STATE(5572), 1, + sym_body, + STATE(3069), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208064] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4417), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3070), 2, + sym_comment, + sym_include, + ACTIONS(4415), 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, + [208105] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4421), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3071), 2, + sym_comment, + sym_include, + ACTIONS(4419), 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, + [208146] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2429), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3072), 2, + sym_comment, + sym_include, + ACTIONS(2427), 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, + [208187] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4425), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3073), 2, + sym_comment, + sym_include, + ACTIONS(4423), 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, + [208228] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4447), 1, + aux_sym_argument_mode_token3, + ACTIONS(4452), 1, + aux_sym_property_definition_token1, + ACTIONS(4454), 1, + aux_sym_event_definition_token1, + STATE(6757), 1, + sym_scope_tuning, + ACTIONS(4427), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + ACTIONS(4442), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(4449), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3074), 2, + sym_comment, + sym_include, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4431), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4437), 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, + [208287] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4407), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3075), 2, + sym_comment, + sym_include, + ACTIONS(4405), 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, + [208328] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4458), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3076), 2, + sym_comment, + sym_include, + ACTIONS(4456), 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, + [208369] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3168), 1, + sym__pre_tuning, + STATE(3199), 1, + aux_sym_for_phrase_repeat1, + STATE(3209), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3892), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4634), 1, + sym_on_error_phrase, + STATE(5047), 1, + sym_on_quit_phrase, + STATE(5974), 1, + sym_on_stop_phrase, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3077), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208442] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3131), 1, + sym__pre_tuning, + STATE(3177), 1, + aux_sym_for_phrase_repeat1, + STATE(3205), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3895), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4632), 1, + sym_on_error_phrase, + STATE(5098), 1, + sym_on_quit_phrase, + STATE(5818), 1, + sym_on_stop_phrase, + ACTIONS(4462), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3078), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208515] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3142), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3541), 1, + aux_sym_for_phrase_repeat2, + STATE(4210), 1, + sym_on_error_phrase, + STATE(4279), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5059), 1, + sym_on_stop_phrase, + STATE(5060), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, + sym_body, + STATE(3079), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208587] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4468), 1, + aux_sym__block_terminator_token1, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + STATE(1857), 1, + sym__block_terminator, + STATE(3432), 1, + sym_to_phrase, + STATE(3772), 1, + sym_while_phrase, + STATE(3870), 1, + sym_on_error_phrase, + STATE(3941), 1, + sym_on_quit_phrase, + STATE(4097), 1, + sym_on_stop_phrase, + STATE(4130), 1, + aux_sym_repeat_statement_repeat1, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5632), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3080), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [208663] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3109), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3520), 1, + aux_sym_for_phrase_repeat2, + STATE(4149), 1, + sym_on_error_phrase, + STATE(4470), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4879), 1, + sym_on_stop_phrase, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, + sym_body, + STATE(3081), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208735] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4476), 1, + aux_sym__block_terminator_token1, + STATE(3414), 1, + sym_to_phrase, + STATE(3684), 1, + sym_while_phrase, + STATE(3904), 1, + sym_on_error_phrase, + STATE(3943), 1, + sym_on_quit_phrase, + STATE(4070), 1, + sym_on_stop_phrase, + STATE(4073), 1, + aux_sym_repeat_statement_repeat1, + STATE(4789), 1, + sym__block_terminator, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5599), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3082), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [208811] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3572), 1, + aux_sym_for_phrase_repeat2, + STATE(4265), 1, + sym_on_error_phrase, + STATE(4300), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5045), 1, + sym_on_stop_phrase, + STATE(5046), 1, + aux_sym_for_statement_repeat1, + STATE(5977), 1, + sym_body, + STATE(3083), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208883] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3090), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3545), 1, + aux_sym_for_phrase_repeat2, + STATE(4111), 1, + sym_on_error_phrase, + STATE(4543), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4926), 1, + aux_sym_for_statement_repeat1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, + sym_body, + STATE(3084), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [208955] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3490), 1, + sym_to_phrase, + STATE(3597), 1, + aux_sym_do_block_repeat1, + STATE(3620), 1, + sym_while_phrase, + STATE(4285), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(5669), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3085), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(5696), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [209027] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3098), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3528), 1, + aux_sym_for_phrase_repeat2, + STATE(4125), 1, + sym_on_error_phrase, + STATE(4518), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4906), 1, + sym_on_stop_phrase, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(5946), 1, + sym_body, + STATE(3086), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209099] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3101), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3510), 1, + aux_sym_for_phrase_repeat2, + STATE(4128), 1, + sym_on_error_phrase, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, + sym_on_stop_phrase, + STATE(5911), 1, + sym_body, + STATE(3087), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209171] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3510), 1, + aux_sym_for_phrase_repeat2, + STATE(4128), 1, + sym_on_error_phrase, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, + sym_on_stop_phrase, + STATE(5911), 1, + sym_body, + STATE(3088), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209243] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3426), 1, + sym_to_phrase, + STATE(3758), 1, + aux_sym_do_block_repeat1, + STATE(3774), 1, + sym_while_phrase, + STATE(4416), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(6193), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3089), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(6116), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [209315] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3528), 1, + aux_sym_for_phrase_repeat2, + STATE(4125), 1, + sym_on_error_phrase, + STATE(4518), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4906), 1, + sym_on_stop_phrase, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(5946), 1, + sym_body, + STATE(3090), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209387] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4476), 1, + aux_sym__block_terminator_token1, + STATE(3486), 1, + sym_to_phrase, + STATE(3632), 1, + sym_while_phrase, + STATE(3923), 1, + sym_on_error_phrase, + STATE(3937), 1, + sym_on_quit_phrase, + STATE(4062), 1, + aux_sym_repeat_statement_repeat1, + STATE(4063), 1, + sym_on_stop_phrase, + STATE(4764), 1, + sym__block_terminator, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5531), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3091), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [209463] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4486), 1, + aux_sym__block_terminator_token1, + STATE(1962), 1, + sym__block_terminator, + STATE(3494), 1, + sym_to_phrase, + STATE(3673), 1, + sym_while_phrase, + STATE(3873), 1, + sym_on_error_phrase, + STATE(3992), 1, + sym_on_quit_phrase, + STATE(4207), 1, + aux_sym_repeat_statement_repeat1, + STATE(4255), 1, + sym_on_stop_phrase, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5854), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3092), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [209539] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3410), 1, + sym_to_phrase, + STATE(3652), 1, + aux_sym_do_block_repeat1, + STATE(3806), 1, + sym_while_phrase, + STATE(4508), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(6143), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3093), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(6127), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [209611] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3535), 1, + aux_sym_for_phrase_repeat2, + STATE(4060), 1, + sym_on_error_phrase, + STATE(4290), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5095), 1, + sym_on_stop_phrase, + STATE(5103), 1, + aux_sym_for_statement_repeat1, + STATE(5824), 1, + sym_body, + STATE(3094), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209683] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3083), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3535), 1, + aux_sym_for_phrase_repeat2, + STATE(4060), 1, + sym_on_error_phrase, + STATE(4290), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5095), 1, + sym_on_stop_phrase, + STATE(5103), 1, + aux_sym_for_statement_repeat1, + STATE(5824), 1, + sym_body, + STATE(3095), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209755] = 21, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3177), 1, + aux_sym_for_phrase_repeat1, + STATE(3205), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3895), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4632), 1, + sym_on_error_phrase, + STATE(5098), 1, + sym_on_quit_phrase, + STATE(5818), 1, + sym_on_stop_phrase, + ACTIONS(4462), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3096), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209825] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3545), 1, + aux_sym_for_phrase_repeat2, + STATE(4111), 1, + sym_on_error_phrase, + STATE(4543), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4926), 1, + aux_sym_for_statement_repeat1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, + sym_body, + STATE(3097), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_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] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3500), 1, + aux_sym_for_phrase_repeat2, + STATE(4138), 1, + sym_on_error_phrase, + STATE(4488), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4897), 1, + sym_on_stop_phrase, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(5889), 1, + sym_body, + STATE(3098), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [209969] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3430), 1, + sym_to_phrase, + STATE(3626), 1, + sym_while_phrase, + STATE(3638), 1, + aux_sym_do_block_repeat1, + STATE(4316), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(5551), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3099), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(5876), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [210041] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3104), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3500), 1, + aux_sym_for_phrase_repeat2, + STATE(4138), 1, + sym_on_error_phrase, + STATE(4488), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4897), 1, + sym_on_stop_phrase, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(5889), 1, + sym_body, + STATE(3100), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210113] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3511), 1, + aux_sym_for_phrase_repeat2, + STATE(4142), 1, + sym_on_error_phrase, + STATE(4483), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4891), 1, + sym_on_stop_phrase, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, + sym_body, + STATE(3101), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210185] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3573), 1, + aux_sym_for_phrase_repeat2, + STATE(4059), 1, + sym_on_error_phrase, + STATE(4504), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5093), 1, + sym_on_stop_phrase, + STATE(5094), 1, + aux_sym_for_statement_repeat1, + STATE(5555), 1, + sym_body, + STATE(3102), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210257] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3106), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3511), 1, + aux_sym_for_phrase_repeat2, + STATE(4142), 1, + sym_on_error_phrase, + STATE(4483), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4891), 1, + sym_on_stop_phrase, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, + sym_body, + STATE(3103), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210329] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3513), 1, + aux_sym_for_phrase_repeat2, + STATE(4147), 1, + sym_on_error_phrase, + STATE(4473), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4884), 1, + sym_on_stop_phrase, + STATE(4885), 1, + aux_sym_for_statement_repeat1, + STATE(5783), 1, + sym_body, + STATE(3104), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210401] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3411), 1, + sym_to_phrase, + STATE(3669), 1, + sym_while_phrase, + STATE(3709), 1, + aux_sym_do_block_repeat1, + STATE(4367), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(6156), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3105), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(6085), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [210473] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3520), 1, + aux_sym_for_phrase_repeat2, + STATE(4149), 1, + sym_on_error_phrase, + STATE(4470), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4879), 1, + sym_on_stop_phrase, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, + sym_body, + STATE(3106), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210545] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3135), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3524), 1, + aux_sym_for_phrase_repeat2, + STATE(4256), 1, + sym_on_error_phrase, + STATE(4306), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(4783), 1, + sym_on_stop_phrase, + STATE(6124), 1, + sym_body, + STATE(3107), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210617] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3132), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3523), 1, + aux_sym_for_phrase_repeat2, + STATE(4260), 1, + sym_on_error_phrase, + STATE(4272), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, + sym_body, + STATE(3108), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210689] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3532), 1, + aux_sym_for_phrase_repeat2, + STATE(4161), 1, + sym_on_error_phrase, + STATE(4443), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4869), 1, + sym_on_stop_phrase, + STATE(4870), 1, + aux_sym_for_statement_repeat1, + STATE(5753), 1, + sym_body, + STATE(3109), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210761] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3509), 1, + aux_sym_for_phrase_repeat2, + STATE(4163), 1, + sym_on_error_phrase, + STATE(4428), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, + sym_on_stop_phrase, + STATE(5752), 1, + sym_body, + STATE(3110), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210833] = 21, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3199), 1, + aux_sym_for_phrase_repeat1, + STATE(3209), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3892), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4634), 1, + sym_on_error_phrase, + STATE(5047), 1, + sym_on_quit_phrase, + STATE(5974), 1, + sym_on_stop_phrase, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3111), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210903] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3523), 1, + aux_sym_for_phrase_repeat2, + STATE(4260), 1, + sym_on_error_phrase, + STATE(4272), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, + sym_body, + STATE(3112), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [210975] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3146), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3509), 1, + aux_sym_for_phrase_repeat2, + STATE(4163), 1, + sym_on_error_phrase, + STATE(4428), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, + sym_on_stop_phrase, + STATE(5752), 1, + sym_body, + STATE(3113), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [211047] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3420), 1, + sym_to_phrase, + STATE(3587), 1, + sym_while_phrase, + STATE(3590), 1, + aux_sym_do_block_repeat1, + STATE(4393), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(5504), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3114), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(6084), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [211119] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4488), 1, + aux_sym__block_terminator_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(3423), 1, + sym_to_phrase, + STATE(3605), 1, + sym_while_phrase, + STATE(3929), 1, + sym_on_error_phrase, + STATE(4000), 1, + sym_on_quit_phrase, + STATE(4189), 1, + aux_sym_repeat_statement_repeat1, + STATE(4190), 1, + sym_on_stop_phrase, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6191), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3115), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [211195] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4486), 1, + aux_sym__block_terminator_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(3422), 1, + sym_to_phrase, + STATE(3715), 1, + sym_while_phrase, + STATE(3917), 1, + sym_on_error_phrase, + STATE(3958), 1, + sym_on_quit_phrase, + STATE(4216), 1, + aux_sym_repeat_statement_repeat1, + STATE(4218), 1, + sym_on_stop_phrase, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3116), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [211271] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 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, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3527), 1, + STATE(3531), 1, aux_sym_for_phrase_repeat2, - STATE(4064), 1, + STATE(4168), 1, sym_on_error_phrase, - STATE(4508), 1, + STATE(4432), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5111), 1, + STATE(4993), 1, sym_on_stop_phrase, - STATE(5112), 1, + STATE(4994), 1, aux_sym_for_statement_repeat1, - STATE(5760), 1, + STATE(6054), 1, sym_body, - STATE(3021), 2, + STATE(3117), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [211343] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4152), 1, - aux_sym_variable_tuning_token2, - STATE(3022), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3415), 1, + sym_to_phrase, + STATE(3783), 1, + aux_sym_do_block_repeat1, + STATE(3784), 1, + sym_while_phrase, + STATE(4500), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(6019), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3118), 2, sym_comment, sym_include, - ACTIONS(4150), 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, - [204284] = 24, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(6020), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [211415] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3429), 1, + sym_to_phrase, + STATE(3600), 1, + aux_sym_do_block_repeat1, + STATE(3602), 1, + sym_while_phrase, + STATE(4382), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(5625), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3119), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + STATE(6046), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [211487] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 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, + STATE(3122), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3887), 1, + STATE(3563), 1, aux_sym_for_phrase_repeat2, - STATE(4598), 1, + STATE(4209), 1, sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4792), 1, + STATE(4346), 1, sym_on_quit_phrase, - STATE(5720), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(4806), 1, sym_on_stop_phrase, - ACTIONS(4140), 2, + STATE(5964), 1, + sym_body, + STATE(3120), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [211559] = 22, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(3023), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3563), 1, + aux_sym_for_phrase_repeat2, + STATE(4209), 1, + sym_on_error_phrase, + STATE(4346), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(4806), 1, + sym_on_stop_phrase, + STATE(5964), 1, + sym_body, + STATE(3121), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [211631] = 22, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3549), 1, + aux_sym_for_phrase_repeat2, + STATE(4223), 1, + sym_on_error_phrase, + STATE(4321), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4790), 1, + sym_on_stop_phrase, + STATE(4791), 1, + aux_sym_for_statement_repeat1, + STATE(6086), 1, + sym_body, + STATE(3122), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [211703] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3039), 1, - sym__pre_tuning, - STATE(3102), 1, + STATE(3126), 1, aux_sym_for_phrase_repeat1, - STATE(3103), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3499), 1, + STATE(3549), 1, aux_sym_for_phrase_repeat2, - STATE(4252), 1, + STATE(4223), 1, sym_on_error_phrase, - STATE(4449), 1, + STATE(4321), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4857), 1, + STATE(4790), 1, sym_on_stop_phrase, - STATE(4862), 1, + STATE(4791), 1, aux_sym_for_statement_repeat1, - STATE(5831), 1, + STATE(6086), 1, sym_body, - STATE(3024), 2, + STATE(3123), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [211775] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4355), 1, - aux_sym_variable_tuning_token2, - STATE(3025), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3524), 1, + aux_sym_for_phrase_repeat2, + STATE(4256), 1, + sym_on_error_phrase, + STATE(4306), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(4783), 1, + sym_on_stop_phrase, + STATE(6124), 1, + sym_body, + STATE(3124), 2, sym_comment, sym_include, - ACTIONS(4353), 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, - [204487] = 25, - ACTIONS(67), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [211847] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4490), 1, + aux_sym__block_terminator_token1, + STATE(2274), 1, + sym__block_terminator, + STATE(3443), 1, + sym_to_phrase, + STATE(3651), 1, + sym_while_phrase, + STATE(3911), 1, + sym_on_error_phrase, + STATE(3965), 1, + sym_on_quit_phrase, + STATE(4253), 1, + sym_on_stop_phrase, + STATE(4258), 1, + aux_sym_repeat_statement_repeat1, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5804), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3125), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [211923] = 22, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3504), 1, + aux_sym_for_phrase_repeat2, + STATE(4206), 1, + sym_on_error_phrase, + STATE(4335), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4770), 1, + sym_on_stop_phrase, + STATE(4771), 1, + aux_sym_for_statement_repeat1, + STATE(6131), 1, + sym_body, + STATE(3126), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [211995] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3035), 1, - sym__pre_tuning, - STATE(3112), 1, - sym_where_clause, - STATE(3114), 1, + STATE(3140), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3551), 1, + STATE(3504), 1, aux_sym_for_phrase_repeat2, - STATE(4184), 1, + STATE(4206), 1, sym_on_error_phrase, STATE(4335), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5018), 1, - aux_sym_for_statement_repeat1, - STATE(5019), 1, + STATE(4770), 1, sym_on_stop_phrase, - STATE(5747), 1, + STATE(4771), 1, + aux_sym_for_statement_repeat1, + STATE(6131), 1, sym_body, - STATE(3026), 2, + STATE(3127), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [212067] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4488), 1, + aux_sym__block_terminator_token1, + STATE(1497), 1, + sym__block_terminator, + STATE(3434), 1, + sym_to_phrase, + STATE(3622), 1, + sym_while_phrase, + STATE(3925), 1, + sym_on_error_phrase, + STATE(3933), 1, + sym_on_quit_phrase, + STATE(4219), 1, + aux_sym_repeat_statement_repeat1, + STATE(4220), 1, + sym_on_stop_phrase, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6154), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3128), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [212143] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3041), 1, - sym__pre_tuning, - STATE(3079), 1, - sym_where_clause, - STATE(3083), 1, + STATE(3117), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3521), 1, + STATE(3575), 1, aux_sym_for_phrase_repeat2, - STATE(4080), 1, + STATE(4261), 1, sym_on_error_phrase, - STATE(4439), 1, + STATE(4463), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4893), 1, - aux_sym_for_statement_repeat1, - STATE(4896), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(5569), 1, + STATE(5003), 1, + aux_sym_for_statement_repeat1, + STATE(6049), 1, sym_body, - STATE(3027), 2, + STATE(3129), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [212215] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4087), 1, - aux_sym_variable_tuning_token2, - STATE(3028), 2, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4447), 1, + aux_sym_argument_mode_token3, + ACTIONS(4452), 1, + aux_sym_property_definition_token1, + ACTIONS(4454), 1, + aux_sym_event_definition_token1, + ACTIONS(4427), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + ACTIONS(4442), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(4449), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3130), 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, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4437), 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, - 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, - [204692] = 25, - ACTIONS(67), 1, + [212269] = 21, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3858), 1, + aux_sym_where_clause_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3203), 1, + aux_sym_for_phrase_repeat1, + STATE(3204), 1, + sym_where_clause, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3867), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4651), 1, + sym_on_error_phrase, + STATE(5049), 1, + sym_on_quit_phrase, + STATE(5967), 1, + sym_on_stop_phrase, + ACTIONS(4492), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3131), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [212339] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3048), 1, - sym__pre_tuning, - STATE(3087), 1, - sym_where_clause, - STATE(3092), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3500), 1, + STATE(3546), 1, aux_sym_for_phrase_repeat2, - STATE(4063), 1, + STATE(4086), 1, sym_on_error_phrase, - STATE(4529), 1, + STATE(4491), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4704), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(4757), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5544), 1, + STATE(5844), 1, sym_body, - STATE(3029), 2, + STATE(3132), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204773] = 25, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [212411] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3042), 1, - sym__pre_tuning, - STATE(3128), 1, - aux_sym_for_phrase_repeat1, - STATE(3131), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3507), 1, + STATE(3575), 1, aux_sym_for_phrase_repeat2, - STATE(4066), 1, + STATE(4261), 1, sym_on_error_phrase, - STATE(4514), 1, + STATE(4463), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5074), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(5079), 1, + STATE(5003), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(6049), 1, sym_body, - STATE(3030), 2, + STATE(3133), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204854] = 24, - ACTIONS(67), 1, + [212483] = 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(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4490), 1, + aux_sym__block_terminator_token1, + STATE(2215), 1, + sym__block_terminator, + STATE(3498), 1, + sym_to_phrase, + STATE(3696), 1, + sym_while_phrase, + STATE(3896), 1, + sym_on_error_phrase, + STATE(3960), 1, + sym_on_quit_phrase, + STATE(4228), 1, + aux_sym_repeat_statement_repeat1, + STATE(4232), 1, + sym_on_stop_phrase, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5642), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3134), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [212559] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3072), 1, - aux_sym_for_phrase_repeat1, - STATE(3108), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, STATE(3505), 1, aux_sym_for_phrase_repeat2, - STATE(4245), 1, + STATE(4192), 1, sym_on_error_phrase, - STATE(4453), 1, + STATE(4365), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4860), 1, + STATE(4766), 1, sym_on_stop_phrase, - STATE(4861), 1, + STATE(4767), 1, aux_sym_for_statement_repeat1, - STATE(5815), 1, + STATE(6194), 1, sym_body, - STATE(3031), 2, + STATE(3135), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204932] = 9, + [212631] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4357), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4464), 1, sym_identifier, - ACTIONS(4361), 1, - aux_sym_class_type_token1, - STATE(4960), 1, - sym__type, - STATE(3032), 2, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3497), 1, + sym_to_phrase, + STATE(3688), 1, + aux_sym_do_block_repeat1, + STATE(3694), 1, + sym_while_phrase, + STATE(4287), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(5636), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3136), 2, sym_comment, sym_include, - STATE(3626), 3, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(4359), 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, - [204980] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + sym_member_access, + STATE(5908), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [212703] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3079), 1, - sym_where_clause, - STATE(3083), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3521), 1, + STATE(3548), 1, aux_sym_for_phrase_repeat2, - STATE(4080), 1, + STATE(4234), 1, sym_on_error_phrase, - STATE(4439), 1, + STATE(4280), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4893), 1, - aux_sym_for_statement_repeat1, - STATE(4896), 1, + STATE(5009), 1, sym_on_stop_phrase, - STATE(5569), 1, + STATE(5010), 1, + aux_sym_for_statement_repeat1, + STATE(6045), 1, sym_body, - STATE(3033), 2, + STATE(3137), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205058] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [212775] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3147), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3505), 1, + aux_sym_for_phrase_repeat2, + STATE(4192), 1, + sym_on_error_phrase, + STATE(4365), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4766), 1, + sym_on_stop_phrase, + STATE(4767), 1, + aux_sym_for_statement_repeat1, + STATE(6194), 1, + sym_body, + STATE(3138), 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [212847] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3106), 1, - sym_where_clause, - STATE(3109), 1, + STATE(3156), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3559), 1, + STATE(3546), 1, aux_sym_for_phrase_repeat2, - STATE(4212), 1, + STATE(4086), 1, sym_on_error_phrase, - STATE(4321), 1, + STATE(4491), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5002), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(5004), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5678), 1, + STATE(5844), 1, sym_body, - STATE(3035), 2, + STATE(3139), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205180] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [212919] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, - aux_sym_button_tuning_token15, - ACTIONS(4365), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3036), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3518), 1, + aux_sym_for_phrase_repeat2, + STATE(4152), 1, + sym_on_error_phrase, + STATE(4447), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4760), 1, + sym_on_stop_phrase, + STATE(4761), 1, + aux_sym_for_statement_repeat1, + STATE(6189), 1, + sym_body, + STATE(3140), 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, - [205224] = 9, - ACTIONS(3), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [212991] = 22, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4369), 1, - sym_identifier, - ACTIONS(4373), 1, - aux_sym_class_type_token1, - STATE(1923), 1, - sym__type, - STATE(3037), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3094), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3562), 1, + aux_sym_for_phrase_repeat2, + STATE(4087), 1, + sym_on_error_phrase, + STATE(4469), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5140), 1, + sym_on_stop_phrase, + STATE(5141), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(3141), 2, sym_comment, sym_include, - STATE(3022), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(4371), 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, - [205272] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [213063] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3160), 1, - aux_sym_for_phrase_repeat1, - STATE(3161), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3527), 1, + STATE(3499), 1, aux_sym_for_phrase_repeat2, - STATE(4064), 1, + STATE(4119), 1, sym_on_error_phrase, - STATE(4508), 1, + STATE(4399), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5111), 1, + STATE(5031), 1, sym_on_stop_phrase, - STATE(5112), 1, + STATE(5035), 1, aux_sym_for_statement_repeat1, - STATE(5760), 1, + STATE(5992), 1, sym_body, - STATE(3038), 2, + STATE(3142), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205350] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213135] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3111), 1, + STATE(3144), 1, aux_sym_for_phrase_repeat1, - STATE(3113), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3528), 1, + STATE(3499), 1, aux_sym_for_phrase_repeat2, - STATE(4199), 1, + STATE(4119), 1, sym_on_error_phrase, - STATE(4462), 1, + STATE(4399), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(4894), 1, + STATE(5031), 1, sym_on_stop_phrase, - STATE(5770), 1, + STATE(5035), 1, + aux_sym_for_statement_repeat1, + STATE(5992), 1, sym_body, - STATE(3039), 2, + STATE(3143), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205428] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213207] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3102), 1, - aux_sym_for_phrase_repeat1, - STATE(3103), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3499), 1, + STATE(3516), 1, aux_sym_for_phrase_repeat2, - STATE(4252), 1, + STATE(4231), 1, sym_on_error_phrase, - STATE(4449), 1, + STATE(4481), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4857), 1, + STATE(4758), 1, sym_on_stop_phrase, - STATE(4862), 1, + STATE(4759), 1, aux_sym_for_statement_repeat1, - STATE(5831), 1, + STATE(5924), 1, sym_body, - STATE(3040), 2, + STATE(3144), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205506] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213279] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3146), 1, - sym_where_clause, - STATE(3154), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3498), 1, + STATE(3506), 1, aux_sym_for_phrase_repeat2, - STATE(4133), 1, + STATE(4249), 1, sym_on_error_phrase, - STATE(4255), 1, + STATE(4489), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4879), 1, - sym_on_stop_phrase, - STATE(4880), 1, + STATE(5181), 1, aux_sym_for_statement_repeat1, - STATE(5683), 1, + STATE(5182), 1, + sym_on_stop_phrase, + STATE(6158), 1, sym_body, - STATE(3041), 2, + STATE(3145), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205584] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213351] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3151), 1, - aux_sym_for_phrase_repeat1, - STATE(3158), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3515), 1, + STATE(3541), 1, aux_sym_for_phrase_repeat2, - STATE(4059), 1, + STATE(4210), 1, sym_on_error_phrase, - STATE(4509), 1, + STATE(4279), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5102), 1, - aux_sym_for_statement_repeat1, - STATE(5105), 1, + STATE(5059), 1, sym_on_stop_phrase, - STATE(5712), 1, + STATE(5060), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, sym_body, - STATE(3042), 2, + STATE(3146), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213423] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3069), 1, - sym_where_clause, - STATE(3138), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3563), 1, + STATE(3519), 1, aux_sym_for_phrase_repeat2, - STATE(4192), 1, + STATE(4148), 1, sym_on_error_phrase, - STATE(4307), 1, + STATE(4471), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4784), 1, + STATE(4756), 1, sym_on_stop_phrase, - STATE(4788), 1, + STATE(4757), 1, aux_sym_for_statement_repeat1, - STATE(5713), 1, + STATE(6186), 1, sym_body, - STATE(3043), 2, + STATE(3147), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205740] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213495] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3128), 1, + STATE(3151), 1, aux_sym_for_phrase_repeat1, - STATE(3131), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3507), 1, + STATE(3519), 1, aux_sym_for_phrase_repeat2, - STATE(4066), 1, + STATE(4148), 1, sym_on_error_phrase, - STATE(4514), 1, + STATE(4471), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5074), 1, + STATE(4756), 1, sym_on_stop_phrase, - STATE(5079), 1, + STATE(4757), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(6186), 1, sym_body, - STATE(3044), 2, + STATE(3148), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205818] = 9, + [213567] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4464), 1, sym_identifier, - ACTIONS(4377), 1, - aux_sym_class_type_token1, - STATE(1923), 1, - sym__type, - STATE(3045), 2, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + aux_sym_while_phrase_token1, + ACTIONS(4480), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4482), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4484), 1, + aux_sym_do_tuning_token1, + STATE(3419), 1, + sym_to_phrase, + STATE(3730), 1, + aux_sym_do_block_repeat1, + STATE(3738), 1, + sym_while_phrase, + STATE(4486), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5146), 1, + sym_object_access, + STATE(5574), 1, + sym_body, + STATE(6670), 1, + sym_assignment, + STATE(3149), 2, sym_comment, sym_include, - STATE(3626), 3, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(4359), 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, - [205866] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + sym_member_access, + STATE(5663), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [213639] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3096), 1, - sym_where_clause, - STATE(3097), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3517), 1, + STATE(3562), 1, aux_sym_for_phrase_repeat2, - STATE(4238), 1, + STATE(4087), 1, sym_on_error_phrase, - STATE(4436), 1, + STATE(4469), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4804), 1, + STATE(5140), 1, sym_on_stop_phrase, - STATE(4827), 1, + STATE(5141), 1, aux_sym_for_statement_repeat1, - STATE(5697), 1, + STATE(5662), 1, sym_body, - STATE(3046), 2, + STATE(3150), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205944] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213711] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2845), 1, - aux_sym_variable_definition_token4, - STATE(3047), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3542), 1, + aux_sym_for_phrase_repeat2, + STATE(4094), 1, + sym_on_error_phrase, + STATE(4542), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(4750), 1, + aux_sym_for_statement_repeat1, + STATE(6178), 1, + sym_body, + STATE(3151), 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [213783] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3077), 1, + STATE(3160), 1, aux_sym_for_phrase_repeat1, - STATE(3129), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3554), 1, + STATE(3568), 1, aux_sym_for_phrase_repeat2, - STATE(4124), 1, + STATE(4243), 1, sym_on_error_phrase, - STATE(4382), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4825), 1, + STATE(5109), 1, aux_sym_for_statement_repeat1, - STATE(4829), 1, + STATE(5110), 1, sym_on_stop_phrase, - STATE(5801), 1, + STATE(5718), 1, sym_body, - STATE(3048), 2, + STATE(3152), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206064] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213855] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3068), 1, + STATE(3133), 1, aux_sym_for_phrase_repeat1, - STATE(3157), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3523), 1, + STATE(3529), 1, aux_sym_for_phrase_repeat2, - STATE(4079), 1, + STATE(4252), 1, sym_on_error_phrase, - STATE(4468), 1, + STATE(4291), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5164), 1, - aux_sym_for_statement_repeat1, - STATE(5169), 1, + STATE(5016), 1, sym_on_stop_phrase, - STATE(5808), 1, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(6051), 1, sym_body, - STATE(3049), 2, + STATE(3153), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [213927] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3071), 1, - sym_where_clause, - STATE(3075), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3520), 1, + STATE(3529), 1, aux_sym_for_phrase_repeat2, - STATE(4224), 1, + STATE(4252), 1, sym_on_error_phrase, - STATE(4421), 1, + STATE(4291), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4785), 1, + STATE(5016), 1, sym_on_stop_phrase, - STATE(4789), 1, + STATE(5017), 1, aux_sym_for_statement_repeat1, - STATE(5947), 1, + STATE(6051), 1, sym_body, - STATE(3050), 2, + STATE(3154), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206220] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [213999] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3144), 1, - sym_where_clause, - STATE(3145), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3550), 1, + STATE(3568), 1, aux_sym_for_phrase_repeat2, - STATE(4154), 1, + STATE(4243), 1, sym_on_error_phrase, - STATE(4353), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5053), 1, + STATE(5109), 1, aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(5110), 1, sym_on_stop_phrase, - STATE(5939), 1, + STATE(5718), 1, sym_body, - STATE(3051), 2, + STATE(3155), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206298] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [214071] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3579), 1, + aux_sym_for_phrase_repeat2, + STATE(4122), 1, + sym_on_error_phrase, + STATE(4476), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5107), 1, + sym_on_stop_phrase, + STATE(5108), 1, + aux_sym_for_statement_repeat1, + STATE(5590), 1, + sym_body, + STATE(3156), 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [214143] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3116), 1, - sym_where_clause, - STATE(3117), 1, + STATE(3162), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3558), 1, + STATE(3579), 1, aux_sym_for_phrase_repeat2, - STATE(4176), 1, + STATE(4122), 1, sym_on_error_phrase, - STATE(4342), 1, + STATE(4476), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5024), 1, + STATE(5107), 1, sym_on_stop_phrase, - STATE(5038), 1, + STATE(5108), 1, aux_sym_for_statement_repeat1, - STATE(5798), 1, + STATE(5590), 1, sym_body, - STATE(3053), 2, + STATE(3157), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206420] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [214215] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3112), 1, - sym_where_clause, - STATE(3114), 1, + STATE(3137), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3551), 1, + STATE(3525), 1, aux_sym_for_phrase_repeat2, - STATE(4184), 1, + STATE(4239), 1, sym_on_error_phrase, - STATE(4335), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5018), 1, - aux_sym_for_statement_repeat1, - STATE(5019), 1, + STATE(5022), 1, sym_on_stop_phrase, - STATE(5747), 1, + STATE(5023), 1, + aux_sym_for_statement_repeat1, + STATE(6028), 1, sym_body, - STATE(3054), 2, + STATE(3158), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206498] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [214287] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3094), 1, - aux_sym_for_phrase_repeat1, - STATE(3099), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3504), 1, + STATE(3525), 1, aux_sym_for_phrase_repeat2, - STATE(4243), 1, + STATE(4239), 1, sym_on_error_phrase, - STATE(4256), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4841), 1, - aux_sym_for_statement_repeat1, - STATE(4851), 1, + STATE(5022), 1, sym_on_stop_phrase, - STATE(5865), 1, + STATE(5023), 1, + aux_sym_for_statement_repeat1, + STATE(6028), 1, sym_body, - STATE(3055), 2, + STATE(3159), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206576] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [214359] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3139), 1, - sym_where_clause, - STATE(3143), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3493), 1, + STATE(3522), 1, aux_sym_for_phrase_repeat2, - STATE(4151), 1, + STATE(4127), 1, sym_on_error_phrase, - STATE(4523), 1, + STATE(4340), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4869), 1, - aux_sym_for_statement_repeat1, - STATE(4870), 1, + STATE(5104), 1, sym_on_stop_phrase, - STATE(5764), 1, + STATE(5105), 1, + aux_sym_for_statement_repeat1, + STATE(5572), 1, sym_body, - STATE(3056), 2, + STATE(3160), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206654] = 24, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [214431] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3087), 1, - sym_where_clause, - STATE(3092), 1, + STATE(3172), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3500), 1, + STATE(3522), 1, aux_sym_for_phrase_repeat2, - STATE(4063), 1, + STATE(4127), 1, sym_on_error_phrase, - STATE(4529), 1, + STATE(4340), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4704), 1, + STATE(5104), 1, sym_on_stop_phrase, - STATE(4757), 1, + STATE(5105), 1, aux_sym_for_statement_repeat1, - STATE(5544), 1, + STATE(5572), 1, sym_body, - STATE(3057), 2, + STATE(3161), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [214503] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4389), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3058), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3521), 1, + aux_sym_for_phrase_repeat2, + STATE(4222), 1, + sym_on_error_phrase, + STATE(4298), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5101), 1, + sym_on_stop_phrase, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5565), 1, + sym_body, + STATE(3162), 2, sym_comment, sym_include, - ACTIONS(4387), 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, - [206773] = 15, - ACTIONS(67), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [214575] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4464), 1, + sym_identifier, + ACTIONS(4466), 1, + anon_sym_COLON, + ACTIONS(4468), 1, + aux_sym__block_terminator_token1, + ACTIONS(4470), 1, + aux_sym_while_phrase_token1, + ACTIONS(4472), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4474), 1, + aux_sym_on_error_phrase_token1, + STATE(1884), 1, + sym__block_terminator, + STATE(3406), 1, + sym_to_phrase, + STATE(3606), 1, + sym_while_phrase, + STATE(3931), 1, + sym_on_error_phrase, + STATE(3989), 1, + sym_on_quit_phrase, + STATE(4194), 1, + sym_on_stop_phrase, + STATE(4202), 1, + aux_sym_repeat_statement_repeat1, + STATE(5146), 1, + sym_object_access, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5602), 1, + sym_body, + STATE(6479), 1, + sym_assignment, + STATE(3163), 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, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5647), 2, + sym_qualified_name, + sym_member_access, + [214651] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3124), 1, - sym__pre_tuning, - STATE(3195), 1, - sym_where_clause, - STATE(3197), 1, + STATE(3173), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3842), 1, + STATE(3539), 1, aux_sym_for_phrase_repeat2, - STATE(4578), 1, + STATE(4107), 1, sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4727), 1, + STATE(4532), 1, sym_on_quit_phrase, - STATE(5574), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5051), 1, + aux_sym_for_statement_repeat1, + STATE(5052), 1, sym_on_stop_phrase, - ACTIONS(4420), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3060), 2, + STATE(5847), 1, + sym_body, + STATE(3164), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206905] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [214723] = 22, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2413), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3061), 2, - sym_comment, - sym_include, - 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, - 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, - [206946] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4424), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3062), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3533), 1, + aux_sym_for_phrase_repeat2, + STATE(4101), 1, + sym_on_error_phrase, + STATE(4497), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5030), 1, + aux_sym_for_statement_repeat1, + STATE(5032), 1, + sym_on_stop_phrase, + STATE(6007), 1, + sym_body, + STATE(3165), 2, sym_comment, sym_include, - ACTIONS(4422), 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, - [206987] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [214795] = 22, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4428), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3063), 2, - sym_comment, - sym_include, - ACTIONS(4426), 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, - [207028] = 22, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3067), 1, - sym__pre_tuning, - STATE(3174), 1, + STATE(3154), 1, aux_sym_for_phrase_repeat1, - STATE(3175), 1, - sym_where_clause, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3911), 1, + STATE(3533), 1, aux_sym_for_phrase_repeat2, - STATE(4603), 1, - sym_sort_clause, - STATE(4622), 1, + STATE(4101), 1, sym_on_error_phrase, - STATE(4935), 1, + STATE(4497), 1, sym_on_quit_phrase, - STATE(6073), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5030), 1, + aux_sym_for_statement_repeat1, + STATE(5032), 1, sym_on_stop_phrase, - ACTIONS(4430), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3064), 2, + STATE(6007), 1, + sym_body, + STATE(3166), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [214867] = 22, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4434), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3065), 2, - sym_comment, - sym_include, - ACTIONS(4432), 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, - [207142] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4365), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(3066), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3539), 1, + aux_sym_for_phrase_repeat2, + STATE(4107), 1, + sym_on_error_phrase, + STATE(4532), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5051), 1, + aux_sym_for_statement_repeat1, + STATE(5052), 1, + sym_on_stop_phrase, + STATE(5847), 1, + sym_body, + STATE(3167), 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, - [207183] = 21, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [214939] = 21, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, + ACTIONS(3858), 1, aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3172), 1, + STATE(3198), 1, sym_where_clause, - STATE(3196), 1, + STATE(3201), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3920), 1, + STATE(3899), 1, aux_sym_for_phrase_repeat2, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4627), 1, + STATE(4646), 1, sym_on_error_phrase, - STATE(5154), 1, + STATE(4777), 1, sym_on_quit_phrase, - STATE(5942), 1, + STATE(5954), 1, sym_on_stop_phrase, - ACTIONS(4436), 2, + ACTIONS(4494), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3067), 2, + STATE(3168), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207253] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [215009] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, - sym_using, - STATE(3283), 1, + STATE(3102), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, sym_query_tuning, - STATE(3516), 1, + STATE(3526), 1, aux_sym_for_phrase_repeat2, - STATE(4096), 1, + STATE(4165), 1, sym_on_error_phrase, - STATE(4434), 1, + STATE(4355), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(5162), 1, + STATE(5099), 1, sym_on_stop_phrase, - STATE(5163), 1, + STATE(5100), 1, aux_sym_for_statement_repeat1, - STATE(5857), 1, + STATE(5560), 1, sym_body, - STATE(3068), 2, + STATE(3169), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207325] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [215081] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, STATE(3150), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3545), 1, + STATE(3506), 1, aux_sym_for_phrase_repeat2, - STATE(4127), 1, + STATE(4249), 1, sym_on_error_phrase, - STATE(4339), 1, + STATE(4489), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4748), 1, + STATE(5181), 1, aux_sym_for_statement_repeat1, - STATE(4749), 1, + STATE(5182), 1, sym_on_stop_phrase, - STATE(5602), 1, + STATE(6158), 1, sym_body, - STATE(3069), 2, + STATE(3170), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207397] = 24, - ACTIONS(3), 1, + [215153] = 22, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(4438), 1, - sym_identifier, - ACTIONS(4440), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(3852), 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, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(3159), 1, + aux_sym_for_phrase_repeat1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3559), 1, + aux_sym_for_phrase_repeat2, + STATE(4139), 1, sym_on_error_phrase, - STATE(3939), 1, + STATE(4273), 1, sym_on_quit_phrase, - STATE(4050), 1, - aux_sym_repeat_statement_repeat1, - STATE(4090), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5039), 1, sym_on_stop_phrase, - STATE(4716), 1, - sym_object_access, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5780), 1, + STATE(5041), 1, + aux_sym_for_statement_repeat1, + STATE(5993), 1, sym_body, - STATE(6433), 1, - sym_assignment, - STATE(3070), 2, + STATE(3171), 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [215225] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3094), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3504), 1, + STATE(3526), 1, aux_sym_for_phrase_repeat2, - STATE(4243), 1, + STATE(4165), 1, sym_on_error_phrase, - STATE(4256), 1, + STATE(4355), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4841), 1, - aux_sym_for_statement_repeat1, - STATE(4851), 1, + STATE(5099), 1, sym_on_stop_phrase, - STATE(5865), 1, + STATE(5100), 1, + aux_sym_for_statement_repeat1, + STATE(5560), 1, sym_body, - STATE(3071), 2, + STATE(3172), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207545] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [215297] = 22, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3525), 1, + STATE(3559), 1, aux_sym_for_phrase_repeat2, - STATE(4216), 1, + STATE(4139), 1, sym_on_error_phrase, - STATE(4425), 1, + STATE(4273), 1, sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4853), 1, + STATE(5039), 1, sym_on_stop_phrase, - STATE(4854), 1, + STATE(5041), 1, aux_sym_for_statement_repeat1, - STATE(5856), 1, + STATE(5993), 1, sym_body, - STATE(3072), 2, + STATE(3173), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207617] = 22, + [215369] = 6, 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, + ACTIONS(4498), 1, + sym__escaped_string, + STATE(3174), 2, + sym_comment, + sym_include, + ACTIONS(4496), 20, 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, + 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, + [215408] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4136), 1, + sym__escaped_string, + STATE(3175), 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, + ACTIONS(3601), 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, + [215447] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4391), 1, + sym__escaped_string, + STATE(3176), 2, + sym_comment, + sym_include, + ACTIONS(3603), 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, + [215486] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3143), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3493), 1, + STATE(3867), 1, aux_sym_for_phrase_repeat2, - STATE(4151), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4651), 1, sym_on_error_phrase, - STATE(4523), 1, + STATE(5049), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4869), 1, - aux_sym_for_statement_repeat1, - STATE(4870), 1, + STATE(5967), 1, sym_on_stop_phrase, - STATE(5764), 1, - sym_body, - STATE(3074), 2, + ACTIONS(4492), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3177), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207761] = 22, - ACTIONS(67), 1, + [215550] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4500), 1, + sym__terminator, + ACTIONS(4508), 1, + aux_sym_input_stream_tuning_token9, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3178), 3, + sym_comment, + sym_include, + aux_sym_output_stream_statement_repeat1, + ACTIONS(4505), 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(4502), 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, + [215594] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3504), 1, + STATE(3895), 1, aux_sym_for_phrase_repeat2, - STATE(4243), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4632), 1, sym_on_error_phrase, - STATE(4256), 1, + STATE(5098), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4841), 1, - aux_sym_for_statement_repeat1, - STATE(4851), 1, + STATE(5818), 1, sym_on_stop_phrase, - STATE(5865), 1, - sym_body, - STATE(3075), 2, + ACTIONS(4462), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3179), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207833] = 22, - ACTIONS(67), 1, + [215658] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4511), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3180), 2, + sym_comment, + sym_include, + ACTIONS(2443), 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(2441), 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, + [215704] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4513), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3181), 2, + sym_comment, + sym_include, + ACTIONS(2443), 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(2441), 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, + [215750] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, - sym_using, - STATE(3283), 1, + STATE(3177), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, sym_query_tuning, - STATE(3520), 1, + STATE(3895), 1, aux_sym_for_phrase_repeat2, - STATE(4224), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4632), 1, sym_on_error_phrase, - STATE(4421), 1, + STATE(5098), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4785), 1, + STATE(5818), 1, sym_on_stop_phrase, - STATE(4789), 1, - aux_sym_for_statement_repeat1, - STATE(5947), 1, - sym_body, - STATE(3076), 2, + ACTIONS(4462), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3182), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207905] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [215814] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3501), 1, + STATE(3868), 1, aux_sym_for_phrase_repeat2, - STATE(4250), 1, + STATE(4591), 1, sym_on_error_phrase, - STATE(4455), 1, - sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4909), 1, + STATE(4710), 1, + sym_on_quit_phrase, + STATE(5703), 1, sym_on_stop_phrase, - STATE(5157), 1, - aux_sym_for_statement_repeat1, - STATE(5812), 1, - sym_body, - STATE(3077), 2, + ACTIONS(4515), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3183), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207977] = 24, - ACTIONS(3), 1, + [215878] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4517), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3184), 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, + ACTIONS(2443), 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(2441), 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, + [215924] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4525), 1, + aux_sym_button_definition_token1, + ACTIONS(4523), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3185), 2, + sym_comment, + sym_include, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4427), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4519), 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, + [215970] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3154), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3498), 1, + STATE(3892), 1, aux_sym_for_phrase_repeat2, - STATE(4133), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4634), 1, sym_on_error_phrase, - STATE(4255), 1, + STATE(5047), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4879), 1, + STATE(5974), 1, sym_on_stop_phrase, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5683), 1, - sym_body, - STATE(3079), 2, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3186), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208125] = 22, - ACTIONS(67), 1, + [216034] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4527), 1, + sym__namedot, + STATE(3197), 1, + aux_sym_qualified_name_repeat1, + STATE(3187), 2, + sym_comment, + sym_include, + ACTIONS(132), 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, + [216074] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4529), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3188), 2, + sym_comment, + sym_include, + ACTIONS(2443), 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(2441), 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, + [216120] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4531), 1, + aux_sym_button_definition_token1, + ACTIONS(4523), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3189), 2, + sym_comment, + sym_include, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4427), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4519), 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, + [216166] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4533), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3190), 2, + sym_comment, + sym_include, + ACTIONS(2443), 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(2441), 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, + [216212] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3075), 1, + STATE(3199), 1, aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3520), 1, + STATE(3892), 1, aux_sym_for_phrase_repeat2, - STATE(4224), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4634), 1, sym_on_error_phrase, - STATE(4421), 1, + STATE(5047), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4785), 1, + STATE(5974), 1, sym_on_stop_phrase, - STATE(4789), 1, - aux_sym_for_statement_repeat1, - STATE(5947), 1, - sym_body, - STATE(3080), 2, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3191), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208197] = 22, - ACTIONS(3), 1, + [216276] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4535), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3192), 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, + ACTIONS(2443), 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(2441), 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, + [216322] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4537), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3193), 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, + ACTIONS(2443), 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(2441), 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, + [216368] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4539), 1, + aux_sym_button_definition_token1, + ACTIONS(4523), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3194), 2, + sym_comment, + sym_include, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4427), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4519), 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, + [216414] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3498), 1, + STATE(3912), 1, aux_sym_for_phrase_repeat2, - STATE(4133), 1, + STATE(4561), 1, sym_on_error_phrase, - STATE(4255), 1, - sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4879), 1, + STATE(4728), 1, + sym_on_quit_phrase, + STATE(5790), 1, sym_on_stop_phrase, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5683), 1, - sym_body, - STATE(3083), 2, + ACTIONS(4541), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3195), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208417] = 24, - ACTIONS(3), 1, + [216478] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4543), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3196), 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, + ACTIONS(2443), 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(2441), 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, + [216524] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4545), 1, + sym__namedot, + STATE(3197), 3, 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, + aux_sym_qualified_name_repeat1, + ACTIONS(121), 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, + [216562] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, - sym_using, - STATE(3283), 1, + STATE(3183), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, sym_query_tuning, - STATE(3521), 1, + STATE(3894), 1, aux_sym_for_phrase_repeat2, - STATE(4080), 1, + STATE(4565), 1, sym_on_error_phrase, - STATE(4439), 1, - sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4893), 1, - aux_sym_for_statement_repeat1, - STATE(4896), 1, + STATE(4726), 1, + sym_on_quit_phrase, + STATE(5779), 1, sym_on_stop_phrase, - STATE(5569), 1, - sym_body, - STATE(3086), 2, + ACTIONS(4548), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3198), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208637] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [216626] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3077), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3554), 1, + STATE(3899), 1, aux_sym_for_phrase_repeat2, - STATE(4124), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4646), 1, sym_on_error_phrase, - STATE(4382), 1, + STATE(4777), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4825), 1, - aux_sym_for_statement_repeat1, - STATE(4829), 1, + STATE(5954), 1, sym_on_stop_phrase, - STATE(5801), 1, - sym_body, - STATE(3087), 2, + ACTIONS(4494), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3199), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208709] = 22, - ACTIONS(67), 1, + [216690] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4550), 1, + aux_sym_button_definition_token1, + ACTIONS(4523), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3200), 2, + sym_comment, + sym_include, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4427), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4519), 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, + [216736] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3083), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3521), 1, + STATE(3894), 1, aux_sym_for_phrase_repeat2, - STATE(4080), 1, + STATE(4565), 1, sym_on_error_phrase, - STATE(4439), 1, - sym_on_quit_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4893), 1, - aux_sym_for_statement_repeat1, - STATE(4896), 1, + STATE(4726), 1, + sym_on_quit_phrase, + STATE(5779), 1, sym_on_stop_phrase, - STATE(5569), 1, - sym_body, - STATE(3088), 2, + ACTIONS(4548), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3201), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208781] = 22, - ACTIONS(3), 1, + [216800] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4552), 1, + aux_sym_button_definition_token1, + ACTIONS(4523), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3202), 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, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4427), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4519), 9, 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, + 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, + [216846] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3821), 1, - aux_sym_where_clause_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3195), 1, - sym_where_clause, - STATE(3197), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3842), 1, + STATE(3907), 1, aux_sym_for_phrase_repeat2, - STATE(4578), 1, - sym_on_error_phrase, - STATE(4603), 1, + STATE(4592), 1, sym_sort_clause, - STATE(4727), 1, + STATE(4601), 1, + sym_on_error_phrase, + STATE(4804), 1, sym_on_quit_phrase, - STATE(5574), 1, + STATE(5991), 1, sym_on_stop_phrase, - ACTIONS(4420), 2, + ACTIONS(4554), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3091), 2, + STATE(3203), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208995] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [216910] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, - sym_using, - STATE(3283), 1, + STATE(3195), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, sym_query_tuning, - STATE(3554), 1, + STATE(3907), 1, aux_sym_for_phrase_repeat2, - STATE(4124), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4601), 1, sym_on_error_phrase, - STATE(4382), 1, + STATE(4804), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4825), 1, - aux_sym_for_statement_repeat1, - STATE(4829), 1, + STATE(5991), 1, sym_on_stop_phrase, - STATE(5801), 1, - sym_body, - STATE(3092), 2, + ACTIONS(4554), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3204), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [216974] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, - sym_using, - STATE(3283), 1, + STATE(3203), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, sym_query_tuning, - STATE(3499), 1, + STATE(3867), 1, aux_sym_for_phrase_repeat2, - STATE(4252), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4651), 1, sym_on_error_phrase, - STATE(4449), 1, + STATE(5049), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4857), 1, + STATE(5967), 1, sym_on_stop_phrase, - STATE(4862), 1, - aux_sym_for_statement_repeat1, - STATE(5831), 1, - sym_body, - STATE(3093), 2, + ACTIONS(4492), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3205), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209139] = 22, - ACTIONS(67), 1, + [217038] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4556), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3206), 2, + sym_comment, + sym_include, + ACTIONS(2443), 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(2441), 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, + [217084] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4558), 1, + sym__terminator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3246), 1, + sym_output_stream_tuning, + STATE(3207), 2, + sym_comment, + sym_include, + ACTIONS(2443), 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(2441), 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, + [217130] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4562), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(4564), 1, + aux_sym_input_stream_tuning_token11, + STATE(3208), 2, + sym_comment, + sym_include, + ACTIONS(4560), 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, + [217170] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, - ACTIONS(3825), 1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - STATE(3271), 1, - sym_using, - STATE(3283), 1, + STATE(3201), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3277), 1, + sym_using, + STATE(3474), 1, sym_query_tuning, - STATE(3491), 1, + STATE(3899), 1, aux_sym_for_phrase_repeat2, - STATE(4131), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4646), 1, sym_on_error_phrase, - STATE(4459), 1, + STATE(4777), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4885), 1, - aux_sym_for_statement_repeat1, - STATE(4887), 1, + STATE(5954), 1, sym_on_stop_phrase, - STATE(5794), 1, - sym_body, - STATE(3094), 2, + ACTIONS(4494), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3209), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209211] = 22, - ACTIONS(67), 1, + [217234] = 17, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4566), 1, + sym__terminator, + ACTIONS(4570), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4572), 1, + aux_sym_variable_tuning_token7, + ACTIONS(4574), 1, + aux_sym_variable_tuning_token8, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + STATE(3273), 1, + aux_sym_property_definition_repeat3, + STATE(3356), 1, + aux_sym_property_definition_repeat2, + STATE(3491), 1, + sym_property_tuning, + STATE(5917), 1, + sym_access_tuning, + ACTIONS(4568), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3210), 2, + sym_comment, + sym_include, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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, + [217293] = 17, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4570), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4572), 1, + aux_sym_variable_tuning_token7, + ACTIONS(4574), 1, + aux_sym_variable_tuning_token8, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4580), 1, + sym__terminator, + STATE(3218), 1, + aux_sym_property_definition_repeat2, + STATE(3272), 1, + aux_sym_property_definition_repeat3, + STATE(3491), 1, + sym_property_tuning, + STATE(5917), 1, + sym_access_tuning, + ACTIONS(4568), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3211), 2, + sym_comment, + sym_include, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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, + [217352] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4582), 1, + aux_sym_property_definition_token1, + STATE(3216), 1, + aux_sym_property_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3837), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3212), 2, + sym_comment, + sym_include, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + STATE(3373), 4, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + sym_property_type, + ACTIONS(3627), 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, + [217399] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4586), 1, + aux_sym_unary_expression_token2, + ACTIONS(4588), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4590), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4596), 1, + aux_sym_field_option_token1, + STATE(3221), 1, + aux_sym_field_definition_repeat1, + STATE(3262), 1, + sym_field_option, + ACTIONS(4594), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + STATE(3213), 2, + sym_comment, + sym_include, + ACTIONS(4584), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(4592), 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, + [217450] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3214), 2, + sym_comment, + sym_include, + ACTIONS(4598), 17, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + 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, - ACTIONS(3815), 1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + [217489] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3215), 2, + sym_comment, + sym_include, + ACTIONS(4600), 17, anon_sym_COLON, - ACTIONS(3817), 1, + sym__terminator, anon_sym_COMMA, - ACTIONS(3819), 1, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, + 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, - ACTIONS(3825), 1, aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + [217528] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4614), 1, + aux_sym_property_definition_token1, + ACTIONS(4608), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(4611), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3216), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat1, + ACTIONS(4602), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + STATE(3373), 4, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + sym_property_type, + ACTIONS(4605), 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, + [217573] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3217), 2, + sym_comment, + sym_include, + ACTIONS(121), 19, + sym__namedot, + 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, + [217608] = 17, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4570), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4572), 1, + aux_sym_variable_tuning_token7, + ACTIONS(4574), 1, + aux_sym_variable_tuning_token8, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4616), 1, + sym__terminator, STATE(3271), 1, + aux_sym_property_definition_repeat3, + STATE(3356), 1, + aux_sym_property_definition_repeat2, + STATE(3491), 1, + sym_property_tuning, + STATE(5917), 1, + sym_access_tuning, + ACTIONS(4568), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3218), 2, + sym_comment, + sym_include, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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, + [217667] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4523), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3219), 2, + sym_comment, + sym_include, + ACTIONS(4429), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4427), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4519), 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, + [217710] = 13, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4586), 1, + aux_sym_unary_expression_token2, + ACTIONS(4588), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4590), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4596), 1, + aux_sym_field_option_token1, + STATE(3213), 1, + aux_sym_field_definition_repeat1, + STATE(3262), 1, + sym_field_option, + ACTIONS(4594), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + STATE(3220), 2, + sym_comment, + sym_include, + ACTIONS(4618), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(4592), 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, + [217761] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4622), 1, + aux_sym_unary_expression_token2, + ACTIONS(4625), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4628), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4637), 1, + aux_sym_field_option_token1, + STATE(3262), 1, + sym_field_option, + ACTIONS(4634), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + ACTIONS(4620), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + STATE(3221), 3, + sym_comment, + sym_include, + aux_sym_field_definition_repeat1, + ACTIONS(4631), 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, + [217810] = 17, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4570), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4572), 1, + aux_sym_variable_tuning_token7, + ACTIONS(4574), 1, + aux_sym_variable_tuning_token8, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4640), 1, + sym__terminator, + STATE(3210), 1, + aux_sym_property_definition_repeat2, + STATE(3268), 1, + aux_sym_property_definition_repeat3, + STATE(3491), 1, + sym_property_tuning, + STATE(5917), 1, + sym_access_tuning, + ACTIONS(4568), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3222), 2, + sym_comment, + sym_include, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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, + [217869] = 18, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4642), 1, + sym__terminator, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3380), 1, + sym_of, + STATE(3386), 1, sym_query_tuning, - STATE(3530), 1, - aux_sym_for_phrase_repeat2, - STATE(4166), 1, - sym_on_error_phrase, - 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(3095), 2, + STATE(3488), 1, + sym__pre_tuning, + STATE(3599), 1, + aux_sym_for_phrase_repeat1, + STATE(3601), 1, + sym_where_clause, + STATE(3223), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209283] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [217929] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3138), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4646), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3563), 1, - aux_sym_for_phrase_repeat2, - STATE(4192), 1, - sym_on_error_phrase, - STATE(4307), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4784), 1, - sym_on_stop_phrase, - STATE(4788), 1, - aux_sym_for_statement_repeat1, - STATE(5713), 1, - sym_body, - STATE(3096), 2, + STATE(3389), 1, + sym_of, + STATE(3452), 1, + sym__pre_tuning, + STATE(3672), 1, + sym_where_clause, + STATE(3683), 1, + aux_sym_for_phrase_repeat1, + STATE(3224), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209355] = 22, - ACTIONS(67), 1, + [217989] = 17, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4648), 1, + anon_sym_COLON, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3284), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6302), 1, + sym_class_body, + STATE(3225), 2, + sym_comment, + sym_include, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [218047] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4662), 1, + aux_sym__block_terminator_token1, + ACTIONS(4664), 1, + aux_sym_variable_definition_token1, + ACTIONS(4666), 1, + aux_sym_variable_definition_token2, + ACTIONS(4668), 1, + aux_sym_method_definition_token1, + ACTIONS(4670), 1, + aux_sym_constructor_definition_token1, + ACTIONS(4672), 1, + aux_sym_destructor_definition_token1, + STATE(3233), 1, + aux_sym_class_body_repeat1, + STATE(3226), 2, + sym_comment, + sym_include, + STATE(4448), 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, + [218095] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4674), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3379), 1, + sym_of, + STATE(3386), 1, sym_query_tuning, - STATE(3563), 1, - aux_sym_for_phrase_repeat2, - STATE(4192), 1, - sym_on_error_phrase, - STATE(4307), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4784), 1, - sym_on_stop_phrase, - STATE(4788), 1, - aux_sym_for_statement_repeat1, - STATE(5713), 1, - sym_body, - STATE(3097), 2, + STATE(3473), 1, + sym__pre_tuning, + STATE(3703), 1, + sym_where_clause, + STATE(3706), 1, + aux_sym_for_phrase_repeat1, + STATE(3227), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209427] = 22, - ACTIONS(3), 1, + [218155] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4527), 1, + sym__namedot, + ACTIONS(4676), 1, + sym__terminator, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4680), 1, + aux_sym_function_call_token1, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + STATE(3187), 1, + aux_sym_qualified_name_repeat1, + STATE(3395), 1, + aux_sym_run_statement_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3556), 1, + sym_function_arguments, + STATE(3800), 1, + sym_run_tuning, + STATE(3228), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [218217] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4705), 1, + aux_sym_variable_definition_token4, + ACTIONS(4694), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + ACTIONS(4702), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3229), 3, + sym_comment, + sym_include, + aux_sym_variable_definition_repeat1, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(4696), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4699), 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, + [218261] = 19, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4527), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 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, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4707), 1, + sym__terminator, + ACTIONS(4709), 1, + aux_sym_function_call_token1, + STATE(3187), 1, + aux_sym_qualified_name_repeat1, + STATE(3402), 1, + aux_sym_run_statement_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3556), 1, + sym_function_arguments, + STATE(3800), 1, + sym_run_tuning, + STATE(3230), 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(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [218323] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3107), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4711), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3384), 1, + sym_of, + STATE(3386), 1, sym_query_tuning, - STATE(3491), 1, - aux_sym_for_phrase_repeat2, - STATE(4131), 1, - sym_on_error_phrase, - 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(3099), 2, + STATE(3461), 1, + sym__pre_tuning, + STATE(3793), 1, + aux_sym_for_phrase_repeat1, + STATE(3799), 1, + sym_where_clause, + STATE(3231), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209571] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [218383] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4713), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3562), 1, - aux_sym_for_phrase_repeat2, - STATE(4229), 1, - sym_on_error_phrase, - STATE(4290), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4983), 1, - sym_on_stop_phrase, - STATE(4984), 1, - aux_sym_for_statement_repeat1, - STATE(5652), 1, - sym_body, - STATE(3100), 2, + STATE(3387), 1, + sym_of, + STATE(3459), 1, + sym__pre_tuning, + STATE(3801), 1, + sym_where_clause, + STATE(3807), 1, + aux_sym_for_phrase_repeat1, + STATE(3232), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209643] = 24, - ACTIONS(3), 1, + [218443] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4664), 1, + aux_sym_variable_definition_token1, + ACTIONS(4666), 1, + aux_sym_variable_definition_token2, + ACTIONS(4668), 1, + aux_sym_method_definition_token1, + ACTIONS(4670), 1, + aux_sym_constructor_definition_token1, + ACTIONS(4672), 1, + aux_sym_destructor_definition_token1, + ACTIONS(4715), 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, + STATE(3254), 1, + aux_sym_class_body_repeat1, + STATE(3233), 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, + STATE(4448), 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, + [218491] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4717), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4719), 1, + aux_sym_variable_definition_token3, + ACTIONS(4721), 1, + aux_sym_variable_definition_token4, + STATE(3229), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3234), 2, + sym_comment, + sym_include, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [218539] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3528), 1, - aux_sym_for_phrase_repeat2, - STATE(4199), 1, - sym_on_error_phrase, - STATE(4462), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(4894), 1, - sym_on_stop_phrase, - STATE(5770), 1, - sym_body, - STATE(3102), 2, + ACTIONS(4723), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4725), 1, + aux_sym_variable_definition_token3, + ACTIONS(4727), 1, + aux_sym_variable_definition_token4, + STATE(3229), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3235), 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, - [209791] = 22, - ACTIONS(67), 1, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [218587] = 17, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4648), 1, + anon_sym_COLON, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3304), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6647), 1, + sym_class_body, + STATE(3236), 2, + sym_comment, + sym_include, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [218645] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3111), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4729), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3378), 1, + sym_of, + STATE(3386), 1, sym_query_tuning, - STATE(3528), 1, - aux_sym_for_phrase_repeat2, - STATE(4199), 1, - sym_on_error_phrase, - STATE(4462), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(4894), 1, - sym_on_stop_phrase, - STATE(5770), 1, - sym_body, - STATE(3103), 2, + STATE(3479), 1, + sym__pre_tuning, + STATE(3763), 1, + sym_where_clause, + STATE(3766), 1, + aux_sym_for_phrase_repeat1, + STATE(3237), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209863] = 24, - ACTIONS(3), 1, + [218705] = 17, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(4438), 1, - sym_identifier, - ACTIONS(4440), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4648), 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, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3285), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6456), 1, + sym_class_body, + STATE(3238), 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, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [218763] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4733), 1, + aux_sym_variable_definition_token3, + ACTIONS(4735), 1, + aux_sym_variable_definition_token4, + STATE(3229), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3239), 2, + sym_comment, + sym_include, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [218811] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4737), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3532), 1, - aux_sym_for_phrase_repeat2, - STATE(4148), 1, - sym_on_error_phrase, - STATE(4481), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4847), 1, - sym_on_stop_phrase, - STATE(4848), 1, - aux_sym_for_statement_repeat1, - STATE(5866), 1, - sym_body, - STATE(3105), 2, + STATE(3400), 1, + sym_of, + STATE(3408), 1, + sym__pre_tuning, + STATE(3693), 1, + sym_where_clause, + STATE(3712), 1, + aux_sym_for_phrase_repeat1, + STATE(3240), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [210011] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [218871] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3100), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4739), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3569), 1, - aux_sym_for_phrase_repeat2, - STATE(4223), 1, - sym_on_error_phrase, - STATE(4301), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4992), 1, - sym_on_stop_phrase, - STATE(4993), 1, - aux_sym_for_statement_repeat1, - STATE(5655), 1, - sym_body, - STATE(3106), 2, + STATE(3392), 1, + sym_of, + STATE(3403), 1, + sym__pre_tuning, + STATE(3840), 1, + aux_sym_for_phrase_repeat1, + STATE(3842), 1, + sym_where_clause, + STATE(3241), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [210083] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [218931] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3489), 1, - aux_sym_for_phrase_repeat2, - STATE(4168), 1, - sym_on_error_phrase, - 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(3107), 2, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3242), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4741), 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, - [210155] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [218969] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4527), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3105), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3525), 1, - aux_sym_for_phrase_repeat2, - STATE(4216), 1, - sym_on_error_phrase, - 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(3108), 2, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4743), 1, + sym__terminator, + ACTIONS(4745), 1, + aux_sym_function_call_token1, + STATE(3187), 1, + aux_sym_qualified_name_repeat1, + STATE(3401), 1, + aux_sym_run_statement_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3556), 1, + sym_function_arguments, + STATE(3800), 1, + sym_run_tuning, + STATE(3243), 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, - [210227] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [219031] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3569), 1, - aux_sym_for_phrase_repeat2, - STATE(4223), 1, - sym_on_error_phrase, - STATE(4301), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4992), 1, - sym_on_stop_phrase, - STATE(4993), 1, - aux_sym_for_statement_repeat1, - STATE(5655), 1, - sym_body, - STATE(3109), 2, + ACTIONS(4749), 1, + aux_sym_using_token1, + STATE(3247), 1, + aux_sym_using_repeat1, + STATE(3244), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4747), 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, - [210299] = 22, - ACTIONS(67), 1, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [219069] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4622), 1, + aux_sym_unary_expression_token2, + ACTIONS(4637), 1, + aux_sym_field_option_token1, + ACTIONS(4751), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4754), 1, + aux_sym_variable_tuning_token2, + STATE(3262), 1, + sym_field_option, + ACTIONS(4620), 2, + sym__terminator, + aux_sym_field_definition_token1, + ACTIONS(4634), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + STATE(3245), 3, + sym_comment, + sym_include, + aux_sym_field_definition_repeat1, + ACTIONS(4631), 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, + [219117] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3246), 2, + sym_comment, + sym_include, + ACTIONS(4757), 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, + [219151] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3553), 1, - aux_sym_for_phrase_repeat2, - STATE(4213), 1, - sym_on_error_phrase, - STATE(4319), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4998), 1, - sym_on_stop_phrase, - STATE(4999), 1, - aux_sym_for_statement_repeat1, - STATE(5669), 1, - sym_body, - STATE(3110), 2, + ACTIONS(4749), 1, + aux_sym_using_token1, + STATE(3256), 1, + aux_sym_using_repeat1, + STATE(3247), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + 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, - [210371] = 22, - ACTIONS(67), 1, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [219189] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4761), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4763), 1, + aux_sym_variable_definition_token3, + ACTIONS(4765), 1, + aux_sym_variable_definition_token4, + STATE(3229), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3248), 2, + sym_comment, + sym_include, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [219237] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4648), 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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3490), 1, - aux_sym_for_phrase_repeat2, - STATE(4155), 1, - sym_on_error_phrase, - STATE(4476), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4902), 1, - aux_sym_for_statement_repeat1, - STATE(4904), 1, - sym_on_stop_phrase, - STATE(5754), 1, - sym_body, - STATE(3111), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3305), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6878), 1, + sym_class_body, + STATE(3249), 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, - [210443] = 22, - ACTIONS(67), 1, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [219295] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4586), 1, + aux_sym_unary_expression_token2, + ACTIONS(4596), 1, + aux_sym_field_option_token1, + ACTIONS(4767), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4769), 1, + aux_sym_variable_tuning_token2, + STATE(3245), 1, + aux_sym_field_definition_repeat1, + STATE(3262), 1, + sym_field_option, + ACTIONS(4584), 2, + sym__terminator, + aux_sym_field_definition_token1, + ACTIONS(4594), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + STATE(3250), 2, + sym_comment, + sym_include, + ACTIONS(4592), 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, + [219345] = 19, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4527), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3109), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3559), 1, - aux_sym_for_phrase_repeat2, - STATE(4212), 1, - sym_on_error_phrase, - STATE(4321), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5002), 1, - sym_on_stop_phrase, - STATE(5004), 1, - aux_sym_for_statement_repeat1, - STATE(5678), 1, - sym_body, - STATE(3112), 2, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4771), 1, + sym__terminator, + ACTIONS(4773), 1, + aux_sym_function_call_token1, + STATE(3187), 1, + aux_sym_qualified_name_repeat1, + STATE(3397), 1, + aux_sym_run_statement_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3556), 1, + sym_function_arguments, + STATE(3800), 1, + sym_run_tuning, + STATE(3251), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [219407] = 19, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4527), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4775), 1, + sym__terminator, + ACTIONS(4777), 1, aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [210515] = 22, - ACTIONS(67), 1, + STATE(3187), 1, + aux_sym_qualified_name_repeat1, + STATE(3393), 1, + aux_sym_run_statement_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3556), 1, + sym_function_arguments, + STATE(3800), 1, + sym_run_tuning, + STATE(3252), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [219469] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3253), 2, + sym_comment, + sym_include, + ACTIONS(4560), 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, + [219503] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4779), 1, + aux_sym__block_terminator_token1, + ACTIONS(4781), 1, + aux_sym_variable_definition_token1, + ACTIONS(4784), 1, + aux_sym_variable_definition_token2, + ACTIONS(4787), 1, + aux_sym_method_definition_token1, + ACTIONS(4790), 1, + aux_sym_constructor_definition_token1, + ACTIONS(4793), 1, + aux_sym_destructor_definition_token1, + STATE(3254), 3, + sym_comment, + sym_include, + aux_sym_class_body_repeat1, + STATE(4448), 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, + [219549] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3115), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4796), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3490), 1, - aux_sym_for_phrase_repeat2, - STATE(4155), 1, - sym_on_error_phrase, - STATE(4476), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4902), 1, - aux_sym_for_statement_repeat1, - STATE(4904), 1, - sym_on_stop_phrase, - STATE(5754), 1, - sym_body, - STATE(3113), 2, + STATE(3399), 1, + sym_of, + STATE(3428), 1, + sym__pre_tuning, + STATE(3618), 1, + sym_where_clause, + STATE(3812), 1, + aux_sym_for_phrase_repeat1, + STATE(3255), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [210587] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [219609] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3559), 1, - aux_sym_for_phrase_repeat2, - STATE(4212), 1, - sym_on_error_phrase, - STATE(4321), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5002), 1, - sym_on_stop_phrase, - STATE(5004), 1, - aux_sym_for_statement_repeat1, - STATE(5678), 1, - sym_body, - STATE(3114), 2, + ACTIONS(4800), 1, + aux_sym_using_token1, + STATE(3256), 3, sym_comment, sym_include, - ACTIONS(2483), 5, + aux_sym_using_repeat1, + ACTIONS(4798), 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, - [210659] = 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(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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3494), 1, - aux_sym_for_phrase_repeat2, - STATE(4208), 1, - sym_on_error_phrase, - STATE(4480), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4911), 1, - aux_sym_for_statement_repeat1, - STATE(4913), 1, - sym_on_stop_phrase, - STATE(5749), 1, - sym_body, - STATE(3115), 2, + aux_sym_of_token1, + [219645] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4803), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4805), 1, + aux_sym_variable_definition_token3, + ACTIONS(4807), 1, + aux_sym_variable_definition_token4, + STATE(3229), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3257), 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, - [210731] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [219693] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3110), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3555), 1, - aux_sym_for_phrase_repeat2, - STATE(4193), 1, - sym_on_error_phrase, - STATE(4322), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5006), 1, - sym_on_stop_phrase, - STATE(5012), 1, - aux_sym_for_statement_repeat1, - STATE(5698), 1, - sym_body, - STATE(3116), 2, + ACTIONS(4586), 1, + aux_sym_unary_expression_token2, + ACTIONS(4596), 1, + aux_sym_field_option_token1, + ACTIONS(4767), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4769), 1, + aux_sym_variable_tuning_token2, + STATE(3250), 1, + aux_sym_field_definition_repeat1, + STATE(3262), 1, + sym_field_option, + ACTIONS(4594), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + ACTIONS(4618), 2, + sym__terminator, + aux_sym_field_definition_token1, + STATE(3258), 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, - [210803] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4592), 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, + [219743] = 18, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4809), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3555), 1, - aux_sym_for_phrase_repeat2, - STATE(4193), 1, - sym_on_error_phrase, - STATE(4322), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5006), 1, - sym_on_stop_phrase, - STATE(5012), 1, - aux_sym_for_statement_repeat1, - STATE(5698), 1, - sym_body, - STATE(3117), 2, + STATE(3398), 1, + sym_of, + STATE(3427), 1, + sym__pre_tuning, + STATE(3778), 1, + sym_where_clause, + STATE(3817), 1, + aux_sym_for_phrase_repeat1, + STATE(3259), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [210875] = 22, - ACTIONS(3), 1, + [219803] = 17, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(4438), 1, - sym_identifier, - ACTIONS(4440), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4648), 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, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3280), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6281), 1, + sym_class_body, + STATE(3260), 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, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [219861] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(2493), 1, + aux_sym_variable_tuning_token2, + STATE(3261), 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, + ACTIONS(2491), 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, + [219896] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4813), 1, + aux_sym_variable_tuning_token2, + STATE(3262), 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, + ACTIONS(4811), 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, + [219931] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + STATE(3263), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4598), 17, anon_sym_COLON, - ACTIONS(3817), 1, + sym__terminator, 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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - 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(3122), 2, - sym_comment, - sym_include, - ACTIONS(2483), 5, + 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, - [211243] = 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(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(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(3123), 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, - [211315] = 21, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_of_token1, + aux_sym_using_token1, + [219964] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3168), 1, - aux_sym_for_phrase_repeat1, - STATE(3171), 1, - sym_where_clause, - STATE(3271), 1, - sym_using, - 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(3124), 2, + STATE(3264), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4600), 17, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [211385] = 21, - 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(3174), 1, - aux_sym_for_phrase_repeat1, - STATE(3175), 1, - sym_where_clause, - STATE(3271), 1, - sym_using, - STATE(3454), 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(3125), 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, - [211455] = 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(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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3519), 1, - aux_sym_for_phrase_repeat2, - STATE(4228), 1, - sym_on_error_phrase, - 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(3126), 2, + aux_sym_of_token1, + aux_sym_using_token1, + [219997] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4820), 1, + aux_sym_variable_definition_token2, + ACTIONS(4822), 1, + aux_sym_getter_token1, + ACTIONS(4825), 1, + aux_sym_setter_token1, + STATE(5917), 1, + sym_access_tuning, + STATE(3489), 2, + sym_getter, + sym_setter, + STATE(3265), 3, 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, - [211527] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_property_definition_repeat3, + ACTIONS(4815), 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(4817), 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, + [220042] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3507), 1, - aux_sym_for_phrase_repeat2, - STATE(4066), 1, - sym_on_error_phrase, - 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(3127), 2, + ACTIONS(4445), 1, + aux_sym_variable_definition_token4, + ACTIONS(4427), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + 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, - [211599] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4452), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_definition_token1, + ACTIONS(4442), 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_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + [220081] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3515), 1, - aux_sym_for_phrase_repeat2, - STATE(4059), 1, - sym_on_error_phrase, - 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(3128), 2, + STATE(3267), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4798), 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, - [211671] = 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(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(3095), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3501), 1, - aux_sym_for_phrase_repeat2, - STATE(4250), 1, - sym_on_error_phrase, - STATE(4455), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4909), 1, - sym_on_stop_phrase, - STATE(5157), 1, - aux_sym_for_statement_repeat1, - STATE(5812), 1, - sym_body, - STATE(3129), 2, + aux_sym_of_token1, + aux_sym_using_token1, + [220114] = 12, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4830), 1, + aux_sym_variable_definition_token2, + STATE(3265), 1, + aux_sym_property_definition_repeat3, + STATE(5917), 1, + sym_access_tuning, + 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, - [211743] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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(4828), 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, + [220161] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - ACTIONS(4411), 1, - aux_sym_argument_mode_token3, - ACTIONS(4416), 1, + ACTIONS(4427), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4429), 1, + aux_sym_dataset_expression_token1, + ACTIONS(4452), 1, aux_sym_property_definition_token1, - ACTIONS(4418), 1, + ACTIONS(4454), 1, aux_sym_event_definition_token1, - ACTIONS(4391), 2, - aux_sym_temp_table_expression_token1, - aux_sym_variable_definition_token3, - ACTIONS(4406), 2, + ACTIONS(4442), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - ACTIONS(4413), 2, + ACTIONS(4449), 2, aux_sym_property_type_token1, aux_sym_property_type_token2, - STATE(3130), 2, + STATE(3269), 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, + ACTIONS(4437), 9, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -231771,5191 +238663,3848 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [211797] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [220206] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3151), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3515), 1, - aux_sym_for_phrase_repeat2, - STATE(4059), 1, - sym_on_error_phrase, - 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(3131), 2, + ACTIONS(4496), 1, + aux_sym_variable_definition_token4, + STATE(3270), 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, - [211869] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4498), 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, + [220241] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3102), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 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(3132), 2, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4834), 1, + aux_sym_variable_definition_token2, + STATE(3265), 1, + aux_sym_property_definition_repeat3, + STATE(5917), 1, + sym_access_tuning, + STATE(3271), 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, - [211941] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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(4832), 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, + [220288] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3128), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3507), 1, - aux_sym_for_phrase_repeat2, - STATE(4066), 1, - sym_on_error_phrase, - 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(3133), 2, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4838), 1, + aux_sym_variable_definition_token2, + STATE(3265), 1, + aux_sym_property_definition_repeat3, + STATE(5917), 1, + sym_access_tuning, + STATE(3272), 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, - [212013] = 24, - ACTIONS(3), 1, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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(4836), 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, + [220335] = 12, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4576), 1, + aux_sym_getter_token1, + ACTIONS(4578), 1, + aux_sym_setter_token1, + ACTIONS(4842), 1, + aux_sym_variable_definition_token2, + STATE(3265), 1, + aux_sym_property_definition_repeat3, + STATE(5917), 1, + sym_access_tuning, + STATE(3273), 2, + sym_comment, + sym_include, + STATE(3489), 2, + sym_getter, + sym_setter, + ACTIONS(3627), 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(4840), 5, 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, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [220382] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4846), 1, + aux_sym_variable_tuning_token2, + STATE(3274), 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(4844), 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, + [220417] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3550), 1, - aux_sym_for_phrase_repeat2, - STATE(4154), 1, - sym_on_error_phrase, - STATE(4353), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5053), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, - sym_on_stop_phrase, - STATE(5939), 1, - sym_body, - STATE(3135), 2, + STATE(3275), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4741), 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, - [212161] = 22, - ACTIONS(67), 1, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [220449] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4723), 1, + aux_sym_temp_table_expression_token1, + STATE(3229), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3629), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3276), 2, + sym_comment, + sym_include, + STATE(3383), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [220491] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3160), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 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(3136), 2, + STATE(3277), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4848), 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, - [212233] = 24, - ACTIONS(3), 1, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [220523] = 17, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 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, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4775), 1, + sym__terminator, + ACTIONS(4777), 1, + aux_sym_function_call_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3393), 1, + aux_sym_run_statement_repeat1, + STATE(3543), 1, + aux_sym_object_access_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(6137), 1, + sym_function_arguments, + STATE(3278), 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(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [220579] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4642), 1, + sym__terminator, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3380), 1, + sym_of, + STATE(3386), 1, sym_query_tuning, - STATE(3545), 1, - aux_sym_for_phrase_repeat2, - STATE(4127), 1, - sym_on_error_phrase, - STATE(4339), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4748), 1, - aux_sym_for_statement_repeat1, - STATE(4749), 1, - sym_on_stop_phrase, - STATE(5602), 1, - sym_body, - STATE(3138), 2, + STATE(3488), 1, + sym__pre_tuning, + STATE(3599), 1, + aux_sym_for_phrase_repeat1, + STATE(3601), 1, + sym_where_clause, + STATE(3279), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212381] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [220633] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4648), 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(3072), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3505), 1, - aux_sym_for_phrase_repeat2, - STATE(4245), 1, - sym_on_error_phrase, - STATE(4453), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4860), 1, - sym_on_stop_phrase, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5815), 1, - sym_body, - STATE(3139), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3315), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6247), 1, + sym_class_body, + STATE(3280), 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, - [212453] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [220685] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4713), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 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(3140), 2, + STATE(3387), 1, + sym_of, + STATE(3459), 1, + sym__pre_tuning, + STATE(3801), 1, + sym_where_clause, + STATE(3807), 1, + aux_sym_for_phrase_repeat1, + STATE(3281), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212525] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [220739] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4858), 1, + aux_sym__function_argument_with_mode_token4, + ACTIONS(4860), 1, + sym__namedot, + STATE(3382), 1, + aux_sym_qualified_name_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3561), 1, + sym_function_arguments, + STATE(4181), 1, + sym_type_tuning, + STATE(6174), 1, + sym_argument_pass_type, + ACTIONS(4852), 2, 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(3097), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 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(3141), 2, + anon_sym_RPAREN, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3282), 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, - [212597] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [220793] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(4867), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(4870), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3114), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 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(3142), 2, + STATE(3283), 3, sym_comment, sym_include, - ACTIONS(2483), 5, + aux_sym_for_phrase_repeat1, + ACTIONS(4864), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212669] = 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(3815), 1, + ACTIONS(4862), 6, anon_sym_COLON, - ACTIONS(3817), 1, + sym__terminator, 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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3505), 1, - aux_sym_for_phrase_repeat2, - STATE(4245), 1, - sym_on_error_phrase, - STATE(4453), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4860), 1, - sym_on_stop_phrase, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5815), 1, - sym_body, - STATE(3143), 2, + [220835] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4648), 1, + anon_sym_COLON, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3315), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6329), 1, + sym_class_body, + STATE(3284), 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, - [212741] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [220887] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4648), 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(3117), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3558), 1, - aux_sym_for_phrase_repeat2, - STATE(4176), 1, - sym_on_error_phrase, - STATE(4342), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5024), 1, - sym_on_stop_phrase, - STATE(5038), 1, - aux_sym_for_statement_repeat1, - STATE(5798), 1, - sym_body, - STATE(3144), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3315), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6434), 1, + sym_class_body, + STATE(3285), 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, - [212813] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [220939] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 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(3558), 1, - aux_sym_for_phrase_repeat2, - STATE(4176), 1, - sym_on_error_phrase, - STATE(4342), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5024), 1, - sym_on_stop_phrase, - STATE(5038), 1, - aux_sym_for_statement_repeat1, - STATE(5798), 1, - sym_body, - STATE(3145), 2, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4743), 1, + sym__terminator, + ACTIONS(4745), 1, + aux_sym_function_call_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3401), 1, + aux_sym_run_statement_repeat1, + STATE(3543), 1, + aux_sym_object_access_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5666), 1, + sym_function_arguments, + STATE(3286), 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, - [212885] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [220995] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3126), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4739), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3497), 1, - aux_sym_for_phrase_repeat2, - STATE(4087), 1, - sym_on_error_phrase, - 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(3146), 2, + STATE(3392), 1, + sym_of, + STATE(3403), 1, + sym__pre_tuning, + STATE(3840), 1, + aux_sym_for_phrase_repeat1, + STATE(3842), 1, + sym_where_clause, + STATE(3287), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212957] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [221049] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4729), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3378), 1, + sym_of, + STATE(3386), 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(3147), 2, + STATE(3479), 1, + sym__pre_tuning, + STATE(3763), 1, + sym_where_clause, + STATE(3766), 1, + aux_sym_for_phrase_repeat1, + STATE(3288), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213029] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [221103] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 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(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(3148), 2, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4771), 1, + sym__terminator, + ACTIONS(4773), 1, + aux_sym_function_call_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3397), 1, + aux_sym_run_statement_repeat1, + STATE(3543), 1, + aux_sym_object_access_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5808), 1, + sym_function_arguments, + 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, - [213101] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [221159] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4648), 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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 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(3149), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3285), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6456), 1, + sym_class_body, + STATE(3290), 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, - [213173] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221211] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4648), 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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3566), 1, - aux_sym_for_phrase_repeat2, - STATE(4179), 1, - sym_on_error_phrase, - STATE(4402), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4990), 1, - aux_sym_for_statement_repeat1, - STATE(5000), 1, - sym_on_stop_phrase, - STATE(6093), 1, - sym_body, - STATE(3150), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3305), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6878), 1, + sym_class_body, + STATE(3291), 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, - [213245] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221263] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4809), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3518), 1, - aux_sym_for_phrase_repeat2, - STATE(4069), 1, - sym_on_error_phrase, - STATE(4495), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5124), 1, - aux_sym_for_statement_repeat1, - STATE(5126), 1, - sym_on_stop_phrase, - STATE(5772), 1, - sym_body, - STATE(3151), 2, + STATE(3398), 1, + sym_of, + STATE(3427), 1, + sym__pre_tuning, + STATE(3778), 1, + sym_where_clause, + STATE(3817), 1, + aux_sym_for_phrase_repeat1, + STATE(3292), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213317] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [221317] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4648), 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(3145), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3550), 1, - aux_sym_for_phrase_repeat2, - STATE(4154), 1, - sym_on_error_phrase, - STATE(4353), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5053), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, - sym_on_stop_phrase, - STATE(5939), 1, - sym_body, - STATE(3152), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3304), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6647), 1, + sym_class_body, + STATE(3293), 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, - [213389] = 22, - ACTIONS(3), 1, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221369] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(4438), 1, - sym_identifier, - ACTIONS(4440), 1, + ACTIONS(4648), 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, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3284), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6302), 1, + sym_class_body, + STATE(3294), 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, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221421] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4711), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3384), 1, + sym_of, + STATE(3386), 1, sym_query_tuning, - STATE(3497), 1, - aux_sym_for_phrase_repeat2, - STATE(4087), 1, - sym_on_error_phrase, - 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(3154), 2, + STATE(3461), 1, + sym__pre_tuning, + STATE(3793), 1, + aux_sym_for_phrase_repeat1, + STATE(3799), 1, + sym_where_clause, + STATE(3295), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213533] = 22, - ACTIONS(3), 1, + [221475] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4882), 1, + aux_sym_event_definition_token1, + ACTIONS(4879), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3296), 3, 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, + aux_sym_event_definition_repeat1, + STATE(3502), 3, + sym_scope_tuning, + sym_access_tuning, + sym_property_type, + ACTIONS(4873), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4876), 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, + [221515] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3495), 1, - aux_sym_for_phrase_repeat2, - STATE(4114), 1, - sym_on_error_phrase, - STATE(4418), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5152), 1, - sym_on_stop_phrase, - STATE(5156), 1, - aux_sym_for_statement_repeat1, - STATE(5876), 1, - sym_body, - STATE(3156), 2, + STATE(3297), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(4884), 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, - [213677] = 22, - ACTIONS(67), 1, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [221547] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4886), 1, + aux_sym_event_definition_token1, + STATE(3296), 1, + aux_sym_event_definition_repeat1, + ACTIONS(3837), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3298), 2, + sym_comment, + sym_include, + STATE(3502), 3, + sym_scope_tuning, + sym_access_tuning, + sym_property_type, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [221589] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3156), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3516), 1, - aux_sym_for_phrase_repeat2, - STATE(4096), 1, - sym_on_error_phrase, - STATE(4434), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5162), 1, - sym_on_stop_phrase, - STATE(5163), 1, - aux_sym_for_statement_repeat1, - STATE(5857), 1, - sym_body, - STATE(3157), 2, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4707), 1, + sym__terminator, + ACTIONS(4709), 1, + aux_sym_function_call_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3402), 1, + aux_sym_run_statement_repeat1, + STATE(3543), 1, + aux_sym_object_access_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5713), 1, + sym_function_arguments, + STATE(3299), 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, - [213749] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [221645] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3159), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4796), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3518), 1, - aux_sym_for_phrase_repeat2, - STATE(4069), 1, - sym_on_error_phrase, - STATE(4495), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5124), 1, - aux_sym_for_statement_repeat1, - STATE(5126), 1, - sym_on_stop_phrase, - STATE(5772), 1, - sym_body, - STATE(3158), 2, + STATE(3399), 1, + sym_of, + STATE(3428), 1, + sym__pre_tuning, + STATE(3618), 1, + sym_where_clause, + STATE(3812), 1, + aux_sym_for_phrase_repeat1, + STATE(3300), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213821] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [221699] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4737), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3524), 1, - aux_sym_for_phrase_repeat2, - STATE(4085), 1, - sym_on_error_phrase, - STATE(4452), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5170), 1, - sym_on_stop_phrase, - STATE(5171), 1, - aux_sym_for_statement_repeat1, - STATE(5847), 1, - sym_body, - STATE(3159), 2, + STATE(3400), 1, + sym_of, + STATE(3408), 1, + sym__pre_tuning, + STATE(3693), 1, + sym_where_clause, + STATE(3712), 1, + aux_sym_for_phrase_repeat1, + STATE(3301), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213893] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [221753] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(3815), 1, + ACTIONS(4648), 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(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - 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(3160), 2, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3280), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6281), 1, + sym_class_body, + STATE(3302), 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, - [213965] = 22, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221805] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(3068), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4674), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3379), 1, + sym_of, + STATE(3386), 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(3161), 2, + STATE(3473), 1, + sym__pre_tuning, + STATE(3703), 1, + sym_where_clause, + STATE(3706), 1, + aux_sym_for_phrase_repeat1, + STATE(3303), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214037] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4132), 1, - sym__escaped_string, - STATE(3162), 2, - sym_comment, - sym_include, - ACTIONS(2847), 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, - [214076] = 6, - ACTIONS(3), 1, + [221859] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4470), 1, - sym__escaped_string, - STATE(3163), 2, + ACTIONS(4648), 1, + anon_sym_COLON, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3315), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6618), 1, + sym_class_body, + STATE(3304), 2, sym_comment, sym_include, - ACTIONS(4468), 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, - [214115] = 6, - ACTIONS(3), 1, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221911] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4379), 1, - sym__escaped_string, - STATE(3164), 2, + ACTIONS(4648), 1, + anon_sym_COLON, + ACTIONS(4650), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4652), 1, + aux_sym_property_type_token1, + ACTIONS(4654), 1, + aux_sym_method_tuning_token1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(4658), 1, + aux_sym_implements_token1, + ACTIONS(4660), 1, + aux_sym_use_widget_pool_token1, + STATE(3315), 1, + aux_sym_class_statement_repeat1, + STATE(4250), 1, + sym_class_tuning, + STATE(6222), 1, + sym_class_body, + STATE(3305), 2, sym_comment, sym_include, - ACTIONS(2845), 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, - [214154] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [221963] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, - sym__namedot, - STATE(3191), 1, - aux_sym_qualified_name_repeat1, - STATE(3165), 2, - sym_comment, - sym_include, - ACTIONS(104), 18, + ACTIONS(4676), 1, 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, + ACTIONS(4680), 1, aux_sym_function_call_token1, + ACTIONS(4682), 1, aux_sym_setter_token1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3395), 1, + aux_sym_run_statement_repeat1, + STATE(3543), 1, + aux_sym_object_access_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5684), 1, + sym_function_arguments, + STATE(3306), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, 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(73), 1, - anon_sym_LBRACE, - 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(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, + [222019] = 16, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4476), 1, - sym__terminator, - STATE(3188), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3167), 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, - [214286] = 19, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(4646), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3917), 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(3168), 2, + STATE(3389), 1, + sym_of, + STATE(3452), 1, + sym__pre_tuning, + STATE(3672), 1, + sym_where_clause, + STATE(3683), 1, + aux_sym_for_phrase_repeat1, + STATE(3307), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214350] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(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, - [214390] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222073] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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(3193), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4888), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3917), 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(3171), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3308), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214500] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222120] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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(3186), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4890), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - 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, - anon_sym_COMMA, - STATE(3172), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3309), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214564] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222167] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(4454), 1, + aux_sym_event_definition_token1, + STATE(3310), 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(4452), 3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_definition_token1, + ACTIONS(4449), 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, + [222202] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3920), 1, - aux_sym_for_phrase_repeat2, - STATE(4603), 1, - sym_sort_clause, - STATE(4627), 1, - sym_on_error_phrase, - STATE(5154), 1, - sym_on_quit_phrase, - STATE(5942), 1, - sym_on_stop_phrase, - ACTIONS(4436), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3174), 2, + STATE(3311), 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, - [214674] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4892), 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, + [222233] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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(3196), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4894), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3920), 1, - aux_sym_for_phrase_repeat2, - STATE(4603), 1, - sym_sort_clause, - STATE(4627), 1, - sym_on_error_phrase, - STATE(5154), 1, - sym_on_quit_phrase, - STATE(5942), 1, - sym_on_stop_phrase, - ACTIONS(4436), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3175), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3312), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214738] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222280] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - ACTIONS(4498), 1, - aux_sym_button_definition_token1, - ACTIONS(4496), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3176), 2, - sym_comment, - sym_include, - ACTIONS(4393), 3, + STATE(3540), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(4896), 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, + STATE(3313), 3, + sym_comment, + sym_include, + aux_sym_buffer_definition_repeat1, + ACTIONS(4898), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, + ACTIONS(4901), 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, - [214784] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222317] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4500), 1, - sym__terminator, - STATE(3188), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3177), 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, - [214830] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4502), 1, - sym__terminator, - STATE(3188), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3178), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4904), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3314), 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, - [214876] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222364] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4504), 1, - sym__terminator, - STATE(3188), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3179), 2, + ACTIONS(4906), 1, + anon_sym_COLON, + ACTIONS(4908), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4911), 1, + aux_sym_property_type_token1, + ACTIONS(4914), 1, + aux_sym_method_tuning_token1, + ACTIONS(4917), 1, + aux_sym_inherits_token1, + ACTIONS(4920), 1, + aux_sym_implements_token1, + ACTIONS(4923), 1, + aux_sym_use_widget_pool_token1, + STATE(4250), 1, + sym_class_tuning, + STATE(3315), 3, 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, - [214922] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_class_statement_repeat1, + STATE(4251), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [222411] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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(3197), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4926), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - 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(3180), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3316), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214986] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222458] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4928), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3317), 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, - [215032] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222505] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - ACTIONS(4508), 1, - aux_sym_button_definition_token1, - ACTIONS(4496), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3182), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4930), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3318), 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, - [215078] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222552] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4510), 1, - sym__terminator, - STATE(3188), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3183), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4932), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3319), 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, - [215124] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222599] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4934), 1, + anon_sym_RPAREN, + STATE(3277), 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, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3320), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_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, + [222646] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4936), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 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(3185), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3321), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215252] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222693] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4938), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3916), 1, - aux_sym_for_phrase_repeat2, - STATE(4555), 1, - sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4824), 1, - sym_on_quit_phrase, - STATE(5700), 1, - sym_on_stop_phrase, - ACTIONS(4512), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3186), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3322), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215316] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222740] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2429), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4514), 1, - sym__terminator, - STATE(3188), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3187), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4940), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3323), 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, - [215362] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222787] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4516), 1, - sym__terminator, - ACTIONS(4524), 1, - aux_sym_input_stream_tuning_token9, - STATE(3211), 1, - sym_output_stream_tuning, - STATE(3188), 3, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4942), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3324), 2, sym_comment, sym_include, - 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(4518), 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, - [215406] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222834] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4944), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3325), 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222881] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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(3174), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4946), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3454), 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(3190), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3326), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215516] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [222928] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4529), 1, - sym__namedot, - STATE(3191), 3, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4948), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3327), 2, 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - [215554] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [222975] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4950), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3328), 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223022] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4952), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3863), 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(3193), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3329), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215664] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [223069] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - ACTIONS(4536), 1, - aux_sym_button_definition_token1, - ACTIONS(4496), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3194), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4954), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3330), 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, - [215710] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223116] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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(3168), 1, - aux_sym_for_phrase_repeat1, - STATE(3271), 1, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4956), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - 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(3195), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3331), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215774] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [223163] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4958), 1, + anon_sym_RPAREN, + STATE(3277), 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, - anon_sym_COMMA, - STATE(3196), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3332), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_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, + [223210] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 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, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4960), 1, + anon_sym_RPAREN, + STATE(3277), 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, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3333), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_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, + [223257] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4538), 1, - sym__terminator, - 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, - STATE(3262), 1, - aux_sym_property_definition_repeat3, - STATE(3306), 1, - aux_sym_property_definition_repeat2, - 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(3198), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4962), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3334), 2, sym_comment, 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, - [215961] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223304] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(3207), 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, - STATE(3199), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4964), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3335), 2, sym_comment, sym_include, - ACTIONS(4552), 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, - [216012] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223351] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, - aux_sym_variable_tuning_token7, - STATE(3200), 2, + ACTIONS(4966), 1, + anon_sym_RPAREN, + ACTIONS(4971), 1, + aux_sym_using_statement_token1, + ACTIONS(4974), 1, + aux_sym_where_clause_token1, + ACTIONS(4977), 1, + aux_sym_query_tuning_token5, + ACTIONS(4980), 1, + aux_sym_of_token1, + STATE(3277), 1, + sym_using, + STATE(3336), 3, sym_comment, sym_include, - 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, + aux_sym_can_find_expression_repeat1, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(4968), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223396] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4580), 1, - aux_sym_property_definition_token1, - ACTIONS(4574), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(4577), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3201), 3, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4983), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3337), 2, sym_comment, sym_include, - 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(3390), 4, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - sym_property_type, - 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, - [216108] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223443] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4582), 1, - sym__terminator, - STATE(3252), 1, - aux_sym_property_definition_repeat3, - STATE(3306), 1, - aux_sym_property_definition_repeat2, - 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(3202), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4985), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3338), 2, sym_comment, 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, - [216167] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223490] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4584), 1, - sym__terminator, - STATE(3202), 1, - aux_sym_property_definition_repeat2, - STATE(3255), 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(3203), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4987), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3339), 2, sym_comment, 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223537] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - ACTIONS(4496), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3204), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4989), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3340), 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, - [216269] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223584] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4991), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3341), 2, sym_comment, 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, - [216328] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223631] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3206), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4993), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3342), 2, sym_comment, sym_include, - ACTIONS(4588), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - aux_sym_using_token1, - [216367] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [223678] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4995), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3343), 2, sym_comment, sym_include, - 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223725] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3208), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4997), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3344), 2, sym_comment, sym_include, - ACTIONS(108), 19, - sym__namedot, - 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - [216451] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223772] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3209), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(4999), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3345), 2, sym_comment, sym_include, - ACTIONS(4610), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - aux_sym_using_token1, - [216490] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [223819] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5001), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3346), 2, sym_comment, sym_include, - 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223866] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3211), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5003), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3347), 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [223913] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4618), 1, - aux_sym_using_token1, - STATE(3226), 1, - aux_sym_using_repeat1, - STATE(3212), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5005), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3348), 2, sym_comment, sym_include, - ACTIONS(4616), 16, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - [216609] = 18, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [223960] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4620), 1, - sym__terminator, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5007), 1, + anon_sym_RPAREN, + STATE(3277), 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(3213), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3349), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216669] = 19, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224007] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, - sym__namedot, - ACTIONS(4624), 1, - sym__terminator, - ACTIONS(4626), 1, - anon_sym_LPAREN, - 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, - 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5009), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3350), 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, - [216731] = 18, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [224054] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4642), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5011), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3383), 1, - sym_of, - STATE(3447), 1, - sym__pre_tuning, - STATE(3789), 1, - sym_where_clause, - STATE(3808), 1, - aux_sym_for_phrase_repeat1, - STATE(3215), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3351), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216791] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224101] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3274), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6407), 1, - sym_class_body, - STATE(3216), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5013), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3352), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [216849] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [224148] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4658), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4660), 1, - aux_sym_variable_definition_token3, - ACTIONS(4662), 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(3217), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5015), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3353), 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, - [216897] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [224195] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5017), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3354), 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, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [224242] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4668), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5019), 1, + anon_sym_RPAREN, + STATE(3277), 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(3219), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3355), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217007] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224289] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5026), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5029), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5032), 1, + aux_sym_variable_tuning_token8, + STATE(3491), 1, + sym_property_tuning, + ACTIONS(5023), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3356), 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_property_definition_repeat2, + ACTIONS(5021), 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, - [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, + aux_sym_getter_token1, + aux_sym_setter_token1, + [224330] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4700), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4702), 1, - aux_sym_variable_definition_token3, - ACTIONS(4704), 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(3223), 2, + ACTIONS(5035), 1, + aux_sym_dataset_expression_token1, + ACTIONS(5037), 1, + aux_sym_buffer_definition_token1, + ACTIONS(5039), 1, + aux_sym_query_definition_token1, + STATE(3313), 1, + aux_sym_buffer_definition_repeat1, + STATE(3357), 2, sym_comment, sym_include, - STATE(3366), 3, + STATE(3540), 2, sym_scope_tuning, sym_access_tuning, - sym_serialization_tuning, - ACTIONS(3073), 4, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(3075), 5, + ACTIONS(3627), 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, - [217203] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224373] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4718), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5041), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3368), 1, - sym_query_tuning, - 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(3225), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3358), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217311] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224420] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4722), 1, - aux_sym_using_token1, - STATE(3226), 3, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5043), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3359), 2, sym_comment, sym_include, - aux_sym_using_repeat1, - ACTIONS(4720), 16, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - [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, + [224467] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(4725), 1, - sym__terminator, - ACTIONS(4727), 1, - aux_sym_function_call_token1, - STATE(3165), 1, - aux_sym_qualified_name_repeat1, - STATE(3372), 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(3228), 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, - [217467] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4618), 1, - aux_sym_using_token1, - STATE(3212), 1, - aux_sym_using_repeat1, - STATE(3229), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5045), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3360), 2, sym_comment, sym_include, - ACTIONS(4729), 16, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - [217505] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224514] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4592), 1, - aux_sym_unary_expression_token2, - ACTIONS(4607), 1, - aux_sym_field_option_token1, - ACTIONS(4731), 1, - aux_sym_variable_tuning_token1, - ACTIONS(4734), 1, - aux_sym_variable_tuning_token2, - STATE(3260), 1, - sym_field_option, - ACTIONS(4590), 2, - sym__terminator, - aux_sym_field_definition_token1, - ACTIONS(4604), 2, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - STATE(3230), 3, + ACTIONS(5047), 1, + aux_sym_dataset_expression_token1, + ACTIONS(5049), 1, + aux_sym_buffer_definition_token1, + ACTIONS(5051), 1, + aux_sym_query_definition_token1, + STATE(3313), 1, + aux_sym_buffer_definition_repeat1, + STATE(3361), 2, sym_comment, sym_include, - 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, - [217553] = 18, - ACTIONS(67), 1, + STATE(3540), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [224557] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5053), 1, + aux_sym_dataset_expression_token1, + ACTIONS(5055), 1, + aux_sym_buffer_definition_token1, + ACTIONS(5057), 1, + aux_sym_query_definition_token1, + STATE(3313), 1, + aux_sym_buffer_definition_repeat1, + STATE(3362), 2, + sym_comment, + sym_include, + STATE(3540), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [224600] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 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, + ACTIONS(5059), 1, + anon_sym_RPAREN, + STATE(3277), 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, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3363), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217613] = 18, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224647] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4739), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3382), 1, - sym_of, - STATE(3446), 1, - sym__pre_tuning, - STATE(3815), 1, - sym_where_clause, - STATE(3820), 1, - aux_sym_for_phrase_repeat1, - STATE(3232), 2, + ACTIONS(5061), 1, + aux_sym_dataset_expression_token1, + ACTIONS(5063), 1, + aux_sym_buffer_definition_token1, + ACTIONS(5065), 1, + aux_sym_query_definition_token1, + STATE(3313), 1, + aux_sym_buffer_definition_repeat1, + STATE(3364), 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, - [217673] = 18, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3540), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [224690] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4741), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5067), 1, + anon_sym_RPAREN, + STATE(3277), 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, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3365), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_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, + [224737] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3276), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6766), 1, - sym_class_body, - STATE(3234), 2, + ACTIONS(5069), 1, + aux_sym_dataset_expression_token1, + ACTIONS(5071), 1, + aux_sym_buffer_definition_token1, + ACTIONS(5073), 1, + aux_sym_query_definition_token1, + STATE(3313), 1, + aux_sym_buffer_definition_repeat1, + STATE(3366), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [217791] = 18, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(3540), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [224780] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4743), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5075), 1, + anon_sym_RPAREN, + STATE(3277), 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, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3367), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_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, + [224827] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(4745), 1, - sym__terminator, - ACTIONS(4747), 1, - aux_sym_function_call_token1, - STATE(3165), 1, - aux_sym_qualified_name_repeat1, - STATE(3364), 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(3236), 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, - [217913] = 18, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4749), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5077), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3360), 1, - sym_of, - STATE(3368), 1, - sym_query_tuning, - STATE(3408), 1, - sym__pre_tuning, - STATE(3655), 1, - sym_where_clause, - STATE(3658), 1, - aux_sym_for_phrase_repeat1, - STATE(3237), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3368), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217973] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224874] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3238), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(2507), 1, + aux_sym_of_token1, + ACTIONS(5079), 1, + anon_sym_RPAREN, + STATE(3277), 1, + sym_using, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3369), 2, sym_comment, sym_include, - ACTIONS(4751), 16, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 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, - [218011] = 19, - 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, - 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(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, - 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(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(3279), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6231), 1, - sym_class_body, - STATE(3240), 2, - sym_comment, - sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [218131] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224921] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2503), 1, + aux_sym_where_clause_token1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, + ACTIONS(2507), 1, aux_sym_of_token1, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(4759), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(3271), 1, + ACTIONS(5081), 1, + anon_sym_RPAREN, + STATE(3277), 1, sym_using, - STATE(3367), 1, - sym_of, - STATE(3368), 1, - sym_query_tuning, - STATE(3411), 1, - sym__pre_tuning, - STATE(3647), 1, - aux_sym_for_phrase_repeat1, - STATE(3660), 1, - sym_where_clause, - STATE(3242), 2, + STATE(3336), 1, + aux_sym_can_find_expression_repeat1, + STATE(3370), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + STATE(3872), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218239] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [224968] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3243), 2, + ACTIONS(5083), 1, + sym__namedot, + STATE(3371), 3, sym_comment, sym_include, - ACTIONS(4480), 18, - sym__terminator, + aux_sym_qualified_name_repeat1, + ACTIONS(121), 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, - 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, + [225000] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4761), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4763), 1, - aux_sym_variable_definition_token3, - ACTIONS(4765), 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(3244), 2, + STATE(3388), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5086), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3372), 2, sym_comment, sym_include, - STATE(3366), 3, + STATE(3674), 2, sym_scope_tuning, sym_access_tuning, - sym_serialization_tuning, - ACTIONS(3073), 4, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(3075), 5, + ACTIONS(3627), 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, - [218321] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [225038] = 5, 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(3230), 1, - aux_sym_field_definition_repeat1, - STATE(3260), 1, - sym_field_option, - ACTIONS(4552), 2, - sym__terminator, - 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(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_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(3373), 2, sym_comment, sym_include, - STATE(3366), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(3073), 4, + ACTIONS(4452), 14, 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, - [218419] = 19, - ACTIONS(67), 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, + [225068] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, - sym__namedot, - ACTIONS(4626), 1, + ACTIONS(4676), 1, + sym__terminator, + ACTIONS(4680), 1, + aux_sym_function_call_token1, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4630), 1, + STATE(3395), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5684), 1, + sym_function_arguments, + STATE(3374), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [225118] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4682), 1, aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4634), 1, + ACTIONS(4686), 1, aux_sym_widget_field_token1, - ACTIONS(4638), 1, + ACTIONS(4690), 1, aux_sym_run_tuning_token7, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(4773), 1, + ACTIONS(4771), 1, sym__terminator, - ACTIONS(4775), 1, + ACTIONS(4773), 1, aux_sym_function_call_token1, - STATE(3165), 1, - aux_sym_qualified_name_repeat1, - STATE(3389), 1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3397), 1, aux_sym_run_statement_repeat1, - STATE(3536), 1, - aux_sym_object_access_repeat1, - STATE(3567), 1, - sym_function_arguments, - STATE(3613), 1, + STATE(3800), 1, sym_run_tuning, - STATE(3247), 2, + STATE(5808), 1, + sym_function_arguments, + STATE(3375), 2, sym_comment, sym_include, - ACTIONS(4636), 4, + ACTIONS(4688), 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, + [225168] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4777), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4779), 1, - aux_sym_variable_definition_token3, - ACTIONS(4781), 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(3248), 2, + STATE(3388), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5088), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3376), 2, sym_comment, sym_include, - STATE(3366), 3, + STATE(3674), 2, sym_scope_tuning, sym_access_tuning, - sym_serialization_tuning, - ACTIONS(3073), 4, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(3075), 5, + ACTIONS(3627), 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, - [218529] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [225206] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - ACTIONS(4391), 2, - aux_sym_temp_table_expression_token1, - aux_sym_variable_definition_token3, - STATE(3249), 2, + STATE(3388), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5090), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3377), 2, sym_comment, sym_include, - ACTIONS(4416), 3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_definition_token1, - ACTIONS(4406), 11, + STATE(3674), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, - [218568] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [225244] = 14, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - aux_sym_variable_tuning_token2, - STATE(3250), 2, - sym_comment, - sym_include, - ACTIONS(2475), 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, - [218603] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4785), 1, - aux_sym_variable_tuning_token2, - STATE(3251), 2, - sym_comment, - sym_include, - ACTIONS(4783), 16, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5092), 1, 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, - [218638] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3446), 1, + sym__pre_tuning, + STATE(3826), 1, + aux_sym_for_phrase_repeat1, + STATE(3827), 1, + sym_where_clause, + STATE(3378), 2, sym_comment, 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, - 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [225292] = 14, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4548), 1, - aux_sym_getter_token1, - ACTIONS(4550), 1, - aux_sym_setter_token1, - ACTIONS(4793), 1, - aux_sym_variable_definition_token2, - STATE(3259), 1, - aux_sym_property_definition_repeat3, - STATE(5905), 1, - sym_access_tuning, - STATE(3253), 2, - sym_comment, - 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, - 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, - [218732] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3254), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5094), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3481), 1, + sym__pre_tuning, + STATE(3760), 1, + aux_sym_for_phrase_repeat1, + STATE(3761), 1, + sym_where_clause, + STATE(3379), 2, sym_comment, sym_include, - ACTIONS(4720), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2499), 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, - aux_sym_using_token1, - [218765] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [225340] = 14, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4548), 1, - aux_sym_getter_token1, - ACTIONS(4550), 1, - aux_sym_setter_token1, - ACTIONS(4797), 1, - aux_sym_variable_definition_token2, - STATE(3259), 1, - aux_sym_property_definition_repeat3, - STATE(5905), 1, - sym_access_tuning, - STATE(3255), 2, - sym_comment, - 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, - 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, - [218812] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3256), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5096), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3448), 1, + sym__pre_tuning, + STATE(3670), 1, + aux_sym_for_phrase_repeat1, + STATE(3671), 1, + sym_where_clause, + STATE(3380), 2, sym_comment, sym_include, - ACTIONS(4610), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2499), 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, - aux_sym_using_token1, - [218845] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [225388] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3388), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5098), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3381), 2, sym_comment, sym_include, - ACTIONS(4401), 9, + STATE(3674), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, - [218890] = 6, - ACTIONS(67), 1, + [225426] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4860), 1, + sym__namedot, + STATE(3371), 1, + aux_sym_qualified_name_repeat1, + STATE(3382), 2, + sym_comment, + sym_include, + ACTIONS(132), 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, + [225460] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4468), 1, + ACTIONS(4445), 1, aux_sym_variable_definition_token4, - STATE(3258), 2, + STATE(3383), 2, sym_comment, sym_include, - ACTIONS(4470), 16, + ACTIONS(4427), 13, aux_sym_temp_table_expression_token1, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, @@ -236969,4853 +242518,4927 @@ static const uint16_t ts_small_parse_table[] = { 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, + [225492] = 14, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4814), 1, - aux_sym_variable_tuning_token2, - STATE(3260), 2, - sym_comment, - sym_include, - ACTIONS(4812), 16, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5100), 1, 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, - [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, + STATE(3277), 1, + sym_using, + STATE(3386), 1, + sym_query_tuning, + STATE(3483), 1, + sym__pre_tuning, + STATE(3744), 1, + sym_where_clause, + STATE(3745), 1, + aux_sym_for_phrase_repeat1, + STATE(3384), 2, sym_comment, sym_include, - ACTIONS(4588), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2499), 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, - aux_sym_using_token1, - [219038] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - 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, - 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(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(3274), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6407), 1, - sym_class_body, - STATE(3263), 2, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [225540] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4775), 1, + sym__terminator, + ACTIONS(4777), 1, + aux_sym_function_call_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + STATE(3393), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(6137), 1, + sym_function_arguments, + STATE(3385), 2, sym_comment, sym_include, - 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(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [225590] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3386), 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(5102), 14, + 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_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, + [225620] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4737), 1, + ACTIONS(5104), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3369), 1, - sym_of, - STATE(3415), 1, + STATE(3455), 1, sym__pre_tuning, - STATE(3679), 1, + STATE(3623), 1, sym_where_clause, - STATE(3688), 1, + STATE(3625), 1, aux_sym_for_phrase_repeat1, - STATE(3265), 2, + STATE(3387), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [225668] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5112), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3674), 2, + sym_scope_tuning, + sym_access_tuning, + STATE(3388), 3, + sym_comment, + sym_include, + aux_sym_workfile_definition_repeat1, + ACTIONS(5106), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(5109), 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, + [225704] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4743), 1, + ACTIONS(5114), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3362), 1, - sym_of, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3453), 1, + STATE(3480), 1, sym__pre_tuning, - STATE(3715), 1, - sym_where_clause, - STATE(3718), 1, + STATE(3762), 1, aux_sym_for_phrase_repeat1, - STATE(3266), 2, + STATE(3764), 1, + sym_where_clause, + STATE(3389), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [225752] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, + ACTIONS(4682), 1, aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4634), 1, + ACTIONS(4686), 1, aux_sym_widget_field_token1, - ACTIONS(4638), 1, + ACTIONS(4690), 1, aux_sym_run_tuning_token7, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(4725), 1, + ACTIONS(4707), 1, sym__terminator, - ACTIONS(4727), 1, + ACTIONS(4709), 1, aux_sym_function_call_token1, - ACTIONS(4820), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - STATE(3372), 1, + STATE(3402), 1, aux_sym_run_statement_repeat1, - STATE(3512), 1, - aux_sym_object_access_repeat1, - STATE(3613), 1, + STATE(3800), 1, sym_run_tuning, - STATE(5479), 1, + STATE(5713), 1, sym_function_arguments, - STATE(3267), 2, + STATE(3390), 2, sym_comment, sym_include, - ACTIONS(4636), 4, + ACTIONS(4688), 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, + [225802] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(839), 1, + sym__namedot, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(843), 1, + sym__namedoublecolon, + ACTIONS(5118), 1, + anon_sym_LPAREN, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + sym__augmented_assignment, + STATE(3561), 1, + sym_function_arguments, + STATE(4572), 1, + aux_sym_object_access_repeat1, + STATE(4714), 1, + aux_sym_qualified_name_repeat1, + STATE(4719), 1, + aux_sym_member_access_repeat1, + STATE(3391), 2, + sym_comment, + sym_include, + ACTIONS(5116), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + [225852] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4668), 1, + ACTIONS(5124), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3387), 1, - sym_of, - STATE(3465), 1, + STATE(3493), 1, sym__pre_tuning, - STATE(3610), 1, - aux_sym_for_phrase_repeat1, - STATE(3649), 1, + STATE(3727), 1, sym_where_clause, - STATE(3268), 2, + STATE(3728), 1, + aux_sym_for_phrase_repeat1, + STATE(3392), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [225900] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(5126), 1, + sym__terminator, + ACTIONS(5128), 1, + aux_sym_function_call_token1, + STATE(3436), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(6076), 1, + sym_function_arguments, + STATE(3393), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [225950] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3388), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5130), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3394), 2, + sym_comment, + sym_include, + STATE(3674), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3625), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3627), 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, + [225988] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, + sym__terminator, + ACTIONS(5134), 1, + aux_sym_function_call_token1, + STATE(3436), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5926), 1, + sym_function_arguments, + STATE(3395), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [226038] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, + ACTIONS(4682), 1, aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(4684), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4634), 1, + ACTIONS(4686), 1, aux_sym_widget_field_token1, - ACTIONS(4638), 1, + ACTIONS(4690), 1, aux_sym_run_tuning_token7, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(4753), 1, + ACTIONS(4743), 1, sym__terminator, - ACTIONS(4755), 1, + ACTIONS(4745), 1, aux_sym_function_call_token1, - ACTIONS(4820), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3401), 1, aux_sym_run_statement_repeat1, - STATE(3512), 1, - aux_sym_object_access_repeat1, - STATE(3613), 1, + STATE(3800), 1, sym_run_tuning, - STATE(6121), 1, + STATE(5666), 1, sym_function_arguments, - STATE(3269), 2, + STATE(3396), 2, sym_comment, sym_include, - ACTIONS(4636), 4, + ACTIONS(4688), 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, + [226088] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(5136), 1, + sym__terminator, + ACTIONS(5138), 1, + aux_sym_function_call_token1, + STATE(3436), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5605), 1, + sym_function_arguments, + STATE(3397), 2, + sym_comment, + sym_include, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [226138] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4759), 1, + ACTIONS(5140), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3367), 1, - sym_of, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3411), 1, + STATE(3457), 1, sym__pre_tuning, - STATE(3647), 1, - aux_sym_for_phrase_repeat1, - STATE(3660), 1, + STATE(3805), 1, sym_where_clause, - STATE(3270), 2, + STATE(3809), 1, + aux_sym_for_phrase_repeat1, + STATE(3398), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219517] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [226186] = 14, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(3271), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4718), 1, + ACTIONS(5142), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3384), 1, - sym_of, - STATE(3440), 1, + STATE(3417), 1, sym__pre_tuning, - STATE(3582), 1, + STATE(3591), 1, sym_where_clause, - STATE(3589), 1, + STATE(3592), 1, aux_sym_for_phrase_repeat1, - STATE(3272), 2, + STATE(3399), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219603] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [226234] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4739), 1, + ACTIONS(5144), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3386), 1, sym_query_tuning, - STATE(3382), 1, - sym_of, - STATE(3446), 1, + STATE(3431), 1, sym__pre_tuning, - STATE(3815), 1, - sym_where_clause, - STATE(3820), 1, + STATE(3816), 1, aux_sym_for_phrase_repeat1, - STATE(3273), 2, + STATE(3837), 1, + sym_where_clause, + STATE(3400), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219657] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [226282] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3338), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6394), 1, - sym_class_body, - STATE(3274), 2, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(5146), 1, + sym__terminator, + ACTIONS(5148), 1, + aux_sym_function_call_token1, + STATE(3436), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5835), 1, + sym_function_arguments, + STATE(3401), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [219709] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [226332] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4824), 1, - aux_sym_event_definition_token1, - STATE(3284), 1, - aux_sym_event_definition_repeat1, - ACTIONS(3809), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3275), 2, + ACTIONS(4682), 1, + aux_sym_setter_token1, + ACTIONS(4684), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4686), 1, + aux_sym_widget_field_token1, + ACTIONS(4690), 1, + aux_sym_run_tuning_token7, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + sym__terminator, + ACTIONS(5152), 1, + aux_sym_function_call_token1, + STATE(3436), 1, + aux_sym_run_statement_repeat1, + STATE(3800), 1, + sym_run_tuning, + STATE(5872), 1, + sym_function_arguments, + STATE(3402), 2, sym_comment, sym_include, - STATE(3492), 3, - sym_scope_tuning, - sym_access_tuning, - sym_property_type, - 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, - [219751] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [226382] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, 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(3338), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6323), 1, - sym_class_body, - STATE(3276), 2, + aux_sym_where_clause_token1, + ACTIONS(5124), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3727), 1, + sym_where_clause, + STATE(3728), 1, + aux_sym_for_phrase_repeat1, + STATE(3403), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [219803] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [226427] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3278), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6248), 1, - sym_class_body, - STATE(3277), 2, + ACTIONS(5154), 1, + sym__terminator, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + STATE(3424), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4404), 1, + sym_type_tuning, + STATE(4406), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3404), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [219855] = 15, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [226474] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(3338), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6232), 1, - sym_class_body, - STATE(3278), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1830), 1, + sym__integer_literal, + ACTIONS(1834), 1, + anon_sym_LPAREN, + ACTIONS(5164), 1, + sym_identifier, + STATE(2462), 1, + sym_object_access, + STATE(2467), 1, + sym_function_call, + STATE(2721), 1, + sym__unary_minus_expressions, + STATE(2735), 1, + sym__decimal_literal, + STATE(6135), 1, + sym_new_expression, + STATE(3405), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [219907] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(2743), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [226521] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(3852), 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(3338), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6257), 1, - sym_class_body, - STATE(3279), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + STATE(1857), 1, + sym__block_terminator, + STATE(3772), 1, + sym_while_phrase, + STATE(3870), 1, + sym_on_error_phrase, + STATE(3941), 1, + sym_on_quit_phrase, + STATE(4097), 1, + sym_on_stop_phrase, + STATE(4130), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5632), 1, + sym_body, + STATE(3406), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [219959] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [226574] = 14, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4773), 1, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5174), 1, sym__terminator, - 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, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4343), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4514), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3407), 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, - [220057] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [226621] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(4642), 1, + ACTIONS(5144), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3383), 1, - sym_of, - STATE(3447), 1, - sym__pre_tuning, - STATE(3789), 1, - sym_where_clause, - STATE(3808), 1, + STATE(3816), 1, aux_sym_for_phrase_repeat1, - STATE(3282), 2, + STATE(3837), 1, + sym_where_clause, + STATE(3408), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [220111] = 10, - ACTIONS(67), 1, + [226666] = 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(1914), 1, + sym__integer_literal, + ACTIONS(1918), 1, + anon_sym_LPAREN, + ACTIONS(5176), 1, + sym_identifier, + STATE(1346), 1, + sym_object_access, + STATE(1347), 1, + sym_function_call, + STATE(1422), 1, + sym__unary_minus_expressions, + STATE(1449), 1, + sym__decimal_literal, + STATE(5761), 1, + sym_new_expression, + STATE(3409), 2, + sym_comment, + sym_include, + STATE(1410), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [226713] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4831), 1, - aux_sym_using_statement_token1, - ACTIONS(4834), 1, - aux_sym_query_tuning_token5, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3283), 3, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3783), 1, + aux_sym_do_block_repeat1, + STATE(3784), 1, + sym_while_phrase, + STATE(4500), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6019), 1, + sym_body, + STATE(3410), 2, sym_comment, sym_include, - 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, - ACTIONS(4826), 6, + STATE(6020), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [226762] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [220153] = 9, - ACTIONS(67), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3758), 1, + aux_sym_do_block_repeat1, + STATE(3774), 1, + sym_while_phrase, + STATE(4416), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6193), 1, + sym_body, + STATE(3411), 2, + sym_comment, + sym_include, + STATE(6116), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [226811] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5188), 1, + aux_sym_variable_definition_token2, + STATE(3412), 2, + sym_comment, + sym_include, + ACTIONS(5186), 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, + [226842] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5053), 1, + aux_sym_dataset_expression_token1, + STATE(3313), 1, + aux_sym_buffer_definition_repeat1, + STATE(3413), 2, sym_comment, sym_include, - aux_sym_event_definition_repeat1, - STATE(3492), 3, + STATE(3540), 2, sym_scope_tuning, sym_access_tuning, - sym_property_type, - ACTIONS(4837), 4, + ACTIONS(3625), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(4840), 5, + ACTIONS(3627), 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, + [226879] = 17, 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(4749), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3360), 1, - sym_of, - STATE(3368), 1, - sym_query_tuning, - STATE(3408), 1, - sym__pre_tuning, - STATE(3655), 1, - sym_where_clause, - STATE(3658), 1, - aux_sym_for_phrase_repeat1, - STATE(3285), 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, - [220247] = 15, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(3852), 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(3276), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6766), 1, - sym_class_body, - STATE(3286), 2, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(3823), 1, + sym_while_phrase, + STATE(3862), 1, + sym_on_error_phrase, + STATE(3957), 1, + sym_on_quit_phrase, + STATE(4092), 1, + sym_on_stop_phrase, + STATE(4103), 1, + aux_sym_repeat_statement_repeat1, + STATE(4657), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5865), 1, + sym_body, + STATE(3414), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [220299] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [226932] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3647), 1, + aux_sym_do_block_repeat1, + STATE(3781), 1, + sym_while_phrase, + STATE(4286), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6112), 1, + sym_body, + STATE(3415), 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, + STATE(6119), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [226981] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4741), 1, - sym__terminator, - 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(3288), 2, + ACTIONS(2592), 1, + aux_sym_variable_tuning_token2, + STATE(3416), 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, - [220409] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2590), 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, + [227012] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4620), 1, - sym__terminator, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - STATE(3271), 1, + ACTIONS(5192), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3379), 1, - sym_of, - STATE(3430), 1, - sym__pre_tuning, - STATE(3765), 1, + STATE(3607), 1, aux_sym_for_phrase_repeat1, - STATE(3767), 1, + STATE(3609), 1, sym_where_clause, - STATE(3289), 2, + STATE(3417), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [227057] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3290), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5194), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4524), 1, + sym_type_tuning, + STATE(4525), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3418), 2, sym_comment, sym_include, - 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, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [220495] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [227104] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3597), 1, + aux_sym_do_block_repeat1, + STATE(3620), 1, + sym_while_phrase, + STATE(4285), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5669), 1, + sym_body, + STATE(3419), 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, - [220551] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5696), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [227153] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(3852), 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(3279), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6231), 1, - sym_class_body, - STATE(3292), 2, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3600), 1, + aux_sym_do_block_repeat1, + STATE(3602), 1, + sym_while_phrase, + STATE(4382), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5625), 1, + sym_body, + STATE(3420), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [220603] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6046), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [227202] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3293), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5194), 1, + sym__terminator, + STATE(3468), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4524), 1, + sym_type_tuning, + STATE(4525), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3421), 2, sym_comment, sym_include, - ACTIONS(4860), 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, - [220635] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [227249] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 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, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2279), 1, + sym__block_terminator, + STATE(3813), 1, + sym_while_phrase, + STATE(3900), 1, + sym_on_error_phrase, + STATE(3962), 1, + sym_on_quit_phrase, + STATE(4242), 1, + sym_on_stop_phrase, + STATE(4248), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6035), 1, + sym_body, + STATE(3422), 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, + [227302] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(3852), 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(3338), 1, - aux_sym_class_statement_repeat1, - STATE(4073), 1, - sym_class_tuning, - STATE(6547), 1, - sym_class_body, - STATE(3295), 2, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(3699), 1, + sym_while_phrase, + STATE(3909), 1, + sym_on_error_phrase, + STATE(3995), 1, + sym_on_quit_phrase, + STATE(4177), 1, + aux_sym_repeat_statement_repeat1, + STATE(4178), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6123), 1, + sym_body, + STATE(3423), 2, sym_comment, sym_include, - STATE(4075), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [220743] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [227355] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4862), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3296), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5200), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4456), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4457), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3424), 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, - [220790] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [227402] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5202), 1, + sym__terminator, + STATE(3437), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4409), 1, + sym_type_tuning, + STATE(4413), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3425), 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, - [220837] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [227449] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4866), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3298), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3845), 1, + sym_while_phrase, + STATE(3847), 1, + aux_sym_do_block_repeat1, + STATE(4545), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6106), 1, + sym_body, + STATE(3426), 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, - [220884] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6146), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [227498] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4868), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5140), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3299), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3805), 1, + sym_where_clause, + STATE(3809), 1, + aux_sym_for_phrase_repeat1, + STATE(3427), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [220931] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [227543] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4870), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5142), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3300), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3591), 1, + sym_where_clause, + STATE(3592), 1, + aux_sym_for_phrase_repeat1, + STATE(3428), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [220978] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [227588] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4872), 1, - aux_sym_dataset_expression_token1, - ACTIONS(4874), 1, - aux_sym_buffer_definition_token1, - ACTIONS(4876), 1, - aux_sym_query_definition_token1, - STATE(3334), 1, - aux_sym_buffer_definition_repeat1, - STATE(3301), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3614), 1, + aux_sym_do_block_repeat1, + STATE(3615), 1, + sym_while_phrase, + STATE(4353), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5895), 1, + sym_body, + STATE(3429), 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, - [221021] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6004), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [227637] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4878), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3302), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3688), 1, + aux_sym_do_block_repeat1, + STATE(3694), 1, + sym_while_phrase, + STATE(4287), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5636), 1, + sym_body, + STATE(3430), 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, - [221068] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5908), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [227686] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4880), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5204), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3303), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3737), 1, + sym_where_clause, + STATE(3742), 1, + aux_sym_for_phrase_repeat1, + STATE(3431), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221115] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [227731] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4882), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3304), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + STATE(1838), 1, + sym__block_terminator, + STATE(3785), 1, + sym_while_phrase, + STATE(3859), 1, + sym_on_error_phrase, + STATE(3936), 1, + sym_on_quit_phrase, + STATE(4096), 1, + sym_on_stop_phrase, + STATE(4098), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5838), 1, + sym_body, + STATE(3432), 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, - [221162] = 13, - ACTIONS(67), 1, + [227784] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4884), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3305), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2136), 1, + sym__integer_literal, + ACTIONS(2140), 1, + anon_sym_LPAREN, + ACTIONS(5206), 1, + sym_identifier, + STATE(2530), 1, + sym_function_call, + STATE(2569), 1, + sym_object_access, + STATE(2945), 1, + sym__unary_minus_expressions, + STATE(3002), 1, + sym__decimal_literal, + STATE(5618), 1, + sym_new_expression, + STATE(3433), 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, - [221209] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(2944), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [227831] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(3605), 1, + sym_while_phrase, + STATE(3929), 1, + sym_on_error_phrase, + STATE(4000), 1, + sym_on_quit_phrase, + STATE(4189), 1, + aux_sym_repeat_statement_repeat1, + STATE(4190), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6191), 1, + sym_body, + STATE(3434), 2, sym_comment, sym_include, - 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, - aux_sym_getter_token1, - aux_sym_setter_token1, - [221250] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [227884] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4900), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3307), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5200), 1, + sym__terminator, + STATE(3477), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4456), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4457), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3435), 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, - [221297] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [227931] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3308), 2, + ACTIONS(5210), 1, + aux_sym_setter_token1, + ACTIONS(5213), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5216), 1, + aux_sym_widget_field_token1, + ACTIONS(5222), 1, + aux_sym_run_tuning_token7, + STATE(3800), 1, + sym_run_tuning, + ACTIONS(5208), 3, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + STATE(3436), 3, sym_comment, sym_include, - 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, + aux_sym_run_statement_repeat1, + ACTIONS(5219), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [227972] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4904), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3309), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5225), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4496), 1, + sym_type_tuning, + STATE(4499), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3437), 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, - [221375] = 13, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [228019] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4906), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3310), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1244), 1, + sym__integer_literal, + ACTIONS(1248), 1, + anon_sym_LPAREN, + ACTIONS(5227), 1, + sym_identifier, + STATE(1085), 1, + sym_function_call, + STATE(1112), 1, + sym_object_access, + STATE(1135), 1, + sym__decimal_literal, + STATE(1161), 1, + sym__unary_minus_expressions, + STATE(5514), 1, + sym_new_expression, + STATE(3438), 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, - [221422] = 13, - ACTIONS(67), 1, + STATE(1163), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228066] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4908), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3311), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2282), 1, + sym__integer_literal, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(5229), 1, + sym_identifier, + STATE(2500), 1, + sym_object_access, + STATE(2501), 1, + sym_function_call, + STATE(2748), 1, + sym__unary_minus_expressions, + STATE(2785), 1, + sym__decimal_literal, + STATE(6033), 1, + sym_new_expression, + STATE(3439), 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, - [221469] = 13, - ACTIONS(67), 1, + STATE(2749), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228113] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4910), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3312), 2, + ACTIONS(5231), 1, + sym_identifier, + STATE(3916), 2, + sym_scope_tuning, + sym_access_tuning, + STATE(3440), 3, 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, - [221516] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_buffer_definition_repeat1, + ACTIONS(5233), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(5236), 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, + [228148] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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(4912), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3313), 2, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5241), 1, + aux_sym_variable_definition_token2, + STATE(3441), 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, - [221563] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5239), 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, + [228179] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4914), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3314), 2, + ACTIONS(5245), 1, + aux_sym_variable_definition_token2, + STATE(3442), 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, - [221610] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5243), 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, + [228210] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4916), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3315), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2215), 1, + sym__block_terminator, + STATE(3696), 1, + sym_while_phrase, + STATE(3896), 1, + sym_on_error_phrase, + STATE(3960), 1, + sym_on_quit_phrase, + STATE(4228), 1, + aux_sym_repeat_statement_repeat1, + STATE(4232), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5642), 1, + sym_body, + STATE(3443), 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, - [221657] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [228263] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4918), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3316), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5225), 1, + sym__terminator, + STATE(3475), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4496), 1, + sym_type_tuning, + STATE(4499), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3444), 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, - [221704] = 11, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [228310] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(5249), 1, + sym_identifier, + STATE(3440), 1, aux_sym_buffer_definition_repeat1, - STATE(3317), 2, + STATE(3445), 2, sym_comment, sym_include, - STATE(3543), 2, + STATE(3916), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(3073), 4, + ACTIONS(5251), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(3075), 5, + ACTIONS(5253), 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, + [228347] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4926), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5255), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3318), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3748), 1, + sym_where_clause, + STATE(3749), 1, + aux_sym_for_phrase_repeat1, + STATE(3446), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221794] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [228392] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4928), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3319), 2, + ACTIONS(5259), 1, + aux_sym_variable_definition_token2, + STATE(3447), 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, - [221841] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5257), 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, + [228423] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4930), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5261), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3320), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3753), 1, + aux_sym_for_phrase_repeat1, + STATE(3754), 1, + sym_where_clause, + STATE(3448), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221888] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [228468] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4932), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3321), 2, + ACTIONS(5265), 1, + aux_sym_variable_definition_token2, + STATE(3449), 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, - [221935] = 13, - ACTIONS(67), 1, + ACTIONS(5263), 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, + [228499] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4934), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3322), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2196), 1, + sym__integer_literal, + ACTIONS(2200), 1, + anon_sym_LPAREN, + ACTIONS(5267), 1, + sym_identifier, + STATE(2472), 1, + sym_object_access, + STATE(2474), 1, + sym_function_call, + STATE(2864), 1, + sym__unary_minus_expressions, + STATE(2909), 1, + sym__decimal_literal, + STATE(5522), 1, + sym_new_expression, + STATE(3450), 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, - [221982] = 11, - ACTIONS(67), 1, + STATE(2863), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228546] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4936), 1, - aux_sym_dataset_expression_token1, - ACTIONS(4938), 1, - aux_sym_buffer_definition_token1, - ACTIONS(4940), 1, - aux_sym_query_definition_token1, - STATE(3334), 1, - aux_sym_buffer_definition_repeat1, - STATE(3323), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1976), 1, + sym__integer_literal, + ACTIONS(1980), 1, + anon_sym_LPAREN, + ACTIONS(5269), 1, + sym_identifier, + STATE(2594), 1, + sym_object_access, + STATE(2595), 1, + sym_function_call, + STATE(2928), 1, + sym__unary_minus_expressions, + STATE(2960), 1, + sym__decimal_literal, + STATE(5925), 1, + sym_new_expression, + STATE(3451), 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, - [222025] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(2930), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228593] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4942), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5114), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3324), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3762), 1, + aux_sym_for_phrase_repeat1, + STATE(3764), 1, + sym_where_clause, + STATE(3452), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222072] = 11, - ACTIONS(67), 1, + [228638] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(805), 1, + sym__integer_literal, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(5271), 1, + sym_identifier, + STATE(1047), 1, + sym_function_call, + STATE(1078), 1, + sym_object_access, + STATE(1107), 1, + sym__decimal_literal, + STATE(1108), 1, + sym__unary_minus_expressions, + STATE(6147), 1, + sym_new_expression, + STATE(3453), 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, + STATE(1117), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228685] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4418), 1, - aux_sym_event_definition_token1, - STATE(3326), 2, + ACTIONS(5273), 1, + sym_identifier, + STATE(3445), 1, + aux_sym_buffer_definition_repeat1, + STATE(3454), 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, + STATE(3916), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(5251), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, + ACTIONS(5253), 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_property_type_token1, - aux_sym_property_type_token2, - [222150] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [228722] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4950), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5275), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3327), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3593), 1, + sym_where_clause, + STATE(3594), 1, + aux_sym_for_phrase_repeat1, + STATE(3455), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222197] = 13, - ACTIONS(67), 1, + [228767] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4952), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3328), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(971), 1, + sym__integer_literal, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(5277), 1, + sym_identifier, + STATE(247), 1, + sym_function_call, + STATE(324), 1, + sym_object_access, + STATE(339), 1, + sym__unary_minus_expressions, + STATE(355), 1, + sym__decimal_literal, + STATE(5789), 1, + sym_new_expression, + STATE(3456), 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, - [222244] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(343), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228814] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4954), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5279), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3329), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3746), 1, + sym_where_clause, + STATE(3747), 1, + aux_sym_for_phrase_repeat1, + STATE(3457), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222291] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [228859] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4956), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3330), 2, + ACTIONS(5283), 1, + aux_sym_variable_definition_token2, + STATE(3458), 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, - [222338] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5281), 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, + [228890] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4958), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5104), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3331), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3623), 1, + sym_where_clause, + STATE(3625), 1, + aux_sym_for_phrase_repeat1, + STATE(3459), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222385] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [228935] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4960), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3332), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5285), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4329), 1, + sym_type_tuning, + STATE(4425), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3460), 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, - [222432] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [228982] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(4962), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5100), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3333), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3744), 1, + sym_where_clause, + STATE(3745), 1, + aux_sym_for_phrase_repeat1, + STATE(3461), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222479] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [229027] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5289), 1, + aux_sym_variable_definition_token2, + STATE(3462), 2, sym_comment, sym_include, - 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, + ACTIONS(5287), 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, - [222516] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [229058] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4972), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3335), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5291), 1, + sym__terminator, + STATE(3407), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4318), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4336), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3463), 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, - [222563] = 13, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229105] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(4974), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3336), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(885), 1, + sym__integer_literal, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(5293), 1, + sym_identifier, + STATE(362), 1, + sym_function_call, + STATE(648), 1, + sym_object_access, + STATE(1005), 1, + sym__unary_minus_expressions, + STATE(1007), 1, + sym__decimal_literal, + STATE(5902), 1, + sym_new_expression, + STATE(3464), 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, - [222610] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(1008), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [229152] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4976), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3337), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5295), 1, + sym__terminator, + STATE(3418), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4444), 1, + sym_type_tuning, + STATE(4459), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3465), 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, - [222657] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229199] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3466), 2, 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(121), 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, + [229228] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(4998), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3339), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5297), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4498), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4534), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3467), 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, - [222751] = 13, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229275] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5299), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4449), 1, + sym_type_tuning, + STATE(4455), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3468), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229322] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5000), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3340), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5301), 1, + sym__terminator, + STATE(3487), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4378), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3469), 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, - [222798] = 13, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229369] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5305), 1, + aux_sym_variable_definition_token2, + STATE(3470), 2, + sym_comment, + sym_include, + ACTIONS(5303), 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, + [229400] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5002), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3341), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5174), 1, + sym__terminator, + STATE(3467), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4343), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4514), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3471), 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, - [222845] = 13, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229447] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(5004), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3342), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(669), 1, + sym__integer_literal, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(5307), 1, + sym_identifier, + STATE(16), 1, + sym_function_call, + STATE(27), 1, + sym_object_access, + STATE(40), 1, + sym__unary_minus_expressions, + STATE(41), 1, + sym__decimal_literal, + STATE(5584), 1, + sym_new_expression, + STATE(3472), 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, - [222892] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(29), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [229494] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5011), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(5014), 1, - aux_sym_where_clause_token1, - ACTIONS(5017), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5020), 1, - aux_sym_of_token1, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5094), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 3, + STATE(3474), 1, + sym_query_tuning, + STATE(3760), 1, + aux_sym_for_phrase_repeat1, + STATE(3761), 1, + sym_where_clause, + STATE(3473), 2, sym_comment, sym_include, - aux_sym_can_find_expression_repeat1, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(5008), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222937] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [229539] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5023), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3344), 2, + STATE(3474), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(5309), 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, - [222984] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [229568] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5025), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3345), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5311), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4363), 1, + sym_type_tuning, + STATE(4377), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3475), 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, - [223031] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229615] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5027), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3346), 2, + ACTIONS(5315), 1, + aux_sym_variable_tuning_token2, + STATE(3476), 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, - [223078] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5313), 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, + [229646] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5029), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3347), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5317), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4509), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4517), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3477), 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, - [223125] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229693] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, - aux_sym_dataset_expression_token1, - ACTIONS(5033), 1, - aux_sym_buffer_definition_token1, - ACTIONS(5035), 1, - aux_sym_query_definition_token1, - STATE(3334), 1, - aux_sym_buffer_definition_repeat1, - STATE(3348), 2, + ACTIONS(5321), 1, + aux_sym_variable_definition_token2, + STATE(3478), 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, + ACTIONS(5319), 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, - [223168] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [229724] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(5037), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5092), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3349), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3826), 1, + aux_sym_for_phrase_repeat1, + STATE(3827), 1, + sym_where_clause, + STATE(3479), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223215] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [229769] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(5039), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5323), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3350), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3833), 1, + aux_sym_for_phrase_repeat1, + STATE(3834), 1, + sym_where_clause, + STATE(3480), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223262] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [229814] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(5041), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5325), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3351), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3824), 1, + aux_sym_for_phrase_repeat1, + STATE(3825), 1, + sym_where_clause, + STATE(3481), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223309] = 13, - ACTIONS(67), 1, + [229859] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(5043), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3352), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1872), 1, + sym__integer_literal, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(5327), 1, + sym_identifier, + STATE(207), 1, + sym_object_access, + STATE(208), 1, + sym_function_call, + STATE(278), 1, + sym__unary_minus_expressions, + STATE(318), 1, + sym__decimal_literal, + STATE(5934), 1, + sym_new_expression, + STATE(3482), 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, - [223356] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(275), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [229906] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(5045), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5329), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3353), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3700), 1, + sym_where_clause, + STATE(3702), 1, + aux_sym_for_phrase_repeat1, + STATE(3483), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223403] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [229951] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5047), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3354), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5331), 1, + sym__terminator, + STATE(3460), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4506), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4522), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3484), 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, - [223450] = 13, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [229998] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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(5049), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3355), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2038), 1, + sym__integer_literal, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(5333), 1, + sym_identifier, + STATE(2547), 1, + sym_function_call, + STATE(2587), 1, + sym_object_access, + STATE(2922), 1, + sym__decimal_literal, + STATE(2972), 1, + sym__unary_minus_expressions, + STATE(6138), 1, + sym_new_expression, + STATE(3485), 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, - [223497] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(2970), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [230045] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5051), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3356), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(3684), 1, + sym_while_phrase, + STATE(3904), 1, + sym_on_error_phrase, + STATE(3943), 1, + sym_on_quit_phrase, + STATE(4070), 1, + sym_on_stop_phrase, + STATE(4073), 1, + aux_sym_repeat_statement_repeat1, + STATE(4789), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5599), 1, + sym_body, + STATE(3486), 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, - [223544] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230098] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5053), 1, - anon_sym_RPAREN, - STATE(3271), 1, - sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3357), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5331), 1, + sym__terminator, + STATE(3951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4224), 1, + sym_temp_table_tuning, + STATE(4506), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4522), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5158), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3487), 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, - [223591] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [230145] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2487), 1, - aux_sym_where_clause_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(2491), 1, - aux_sym_of_token1, - ACTIONS(5055), 1, - anon_sym_RPAREN, - STATE(3271), 1, + ACTIONS(4644), 1, + aux_sym_where_clause_token1, + ACTIONS(5096), 1, + sym__terminator, + STATE(3277), 1, sym_using, - STATE(3343), 1, - aux_sym_can_find_expression_repeat1, - STATE(3358), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3670), 1, + aux_sym_for_phrase_repeat1, + STATE(3671), 1, + sym_where_clause, + STATE(3488), 2, sym_comment, sym_include, - STATE(3861), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223638] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230190] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5337), 1, + aux_sym_variable_definition_token2, + STATE(3489), 2, sym_comment, sym_include, - 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, + ACTIONS(5335), 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, - [223674] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [230221] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5065), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3450), 1, - sym__pre_tuning, - STATE(3712), 1, - aux_sym_for_phrase_repeat1, - STATE(3713), 1, - sym_where_clause, - STATE(3360), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3619), 1, + aux_sym_do_block_repeat1, + STATE(3665), 1, + sym_while_phrase, + STATE(4342), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5957), 1, + sym_body, + STATE(3490), 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, - [223722] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5731), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [230270] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3613), 1, - sym_run_tuning, - STATE(5479), 1, - sym_function_arguments, - STATE(3361), 2, + ACTIONS(5341), 1, + aux_sym_variable_tuning_token2, + STATE(3491), 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, - [223772] = 14, - ACTIONS(67), 1, + ACTIONS(5339), 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, + [230301] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5345), 1, + aux_sym_variable_definition_token2, + STATE(3492), 2, + sym_comment, + sym_include, + ACTIONS(5343), 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, + [230332] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, + ACTIONS(4644), 1, aux_sym_where_clause_token1, - ACTIONS(5067), 1, + ACTIONS(5347), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3368), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3473), 1, - sym__pre_tuning, - STATE(3777), 1, - aux_sym_for_phrase_repeat1, - STATE(3778), 1, + STATE(3654), 1, sym_where_clause, - STATE(3362), 2, + STATE(3667), 1, + aux_sym_for_phrase_repeat1, + STATE(3493), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223820] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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(5069), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_scope_tuning_token1, - [223870] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230377] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 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(5077), 1, - sym__terminator, - ACTIONS(5079), 1, - aux_sym_function_call_token1, - STATE(3477), 1, - aux_sym_run_statement_repeat1, - STATE(3613), 1, - sym_run_tuning, - STATE(5969), 1, - sym_function_arguments, - STATE(3364), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(3715), 1, + sym_while_phrase, + STATE(3917), 1, + sym_on_error_phrase, + STATE(3958), 1, + sym_on_quit_phrase, + STATE(4216), 1, + aux_sym_repeat_statement_repeat1, + STATE(4218), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, + sym_body, + STATE(3494), 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, - [223920] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230430] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5351), 1, + aux_sym_variable_definition_token2, + STATE(3495), 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, - [223970] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5349), 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, + [230461] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4409), 1, - aux_sym_variable_definition_token4, - STATE(3366), 2, + ACTIONS(5355), 1, + aux_sym_variable_definition_token2, + STATE(3496), 2, sym_comment, sym_include, - 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(5353), 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_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - [224002] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [230492] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5085), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3457), 1, - sym__pre_tuning, - STATE(3650), 1, - sym_where_clause, - STATE(3703), 1, - aux_sym_for_phrase_repeat1, - STATE(3367), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5178), 1, + aux_sym_while_phrase_token1, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3583), 1, + sym_while_phrase, + STATE(3755), 1, + aux_sym_do_block_repeat1, + STATE(4434), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5826), 1, + sym_body, + STATE(3497), 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, - [224050] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5942), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [230541] = 17, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3368), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5168), 1, + aux_sym_while_phrase_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2177), 1, + sym__block_terminator, + STATE(3775), 1, + sym_while_phrase, + STATE(3876), 1, + sym_on_error_phrase, + STATE(3953), 1, + sym_on_quit_phrase, + STATE(4170), 1, + aux_sym_repeat_statement_repeat1, + STATE(4172), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5863), 1, + sym_body, + STATE(3498), 2, sym_comment, sym_include, - ACTIONS(5087), 14, + [230594] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, anon_sym_COLON, - sym__terminator, + ACTIONS(3854), 1, anon_sym_COMMA, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + ACTIONS(3856), 1, 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, + ACTIONS(3860), 1, aux_sym_sort_clause_token1, + ACTIONS(3862), 1, aux_sym_sort_clause_token2, - [224080] = 14, - ACTIONS(67), 1, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4231), 1, + sym_on_error_phrase, + STATE(4481), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4758), 1, + sym_on_stop_phrase, + STATE(4759), 1, + aux_sym_for_statement_repeat1, + STATE(5924), 1, + sym_body, + STATE(3499), 2, + sym_comment, + sym_include, + [230644] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4147), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4473), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4884), 1, + sym_on_stop_phrase, + STATE(4885), 1, + aux_sym_for_statement_repeat1, + STATE(5783), 1, + sym_body, + STATE(3500), 2, + sym_comment, + sym_include, + [230694] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3368), 1, - sym_query_tuning, - STATE(3445), 1, - sym__pre_tuning, - STATE(3810), 1, - aux_sym_for_phrase_repeat1, - STATE(3813), 1, - sym_where_clause, - STATE(3369), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4107), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4532), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5051), 1, + aux_sym_for_statement_repeat1, + STATE(5052), 1, + sym_on_stop_phrase, + STATE(5847), 1, + sym_body, + STATE(3501), 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, - [224128] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230744] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3502), 2, sym_comment, sym_include, - STATE(3731), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(3073), 4, + ACTIONS(4454), 12, 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, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_event_definition_token1, + [230772] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4745), 1, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5357), 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(3613), 1, - sym_run_tuning, - STATE(6079), 1, - sym_function_arguments, - STATE(3371), 2, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3503), 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, - [224216] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [230810] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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(5093), 1, - sym__terminator, - ACTIONS(5095), 1, - aux_sym_function_call_token1, - STATE(3477), 1, - aux_sym_run_statement_repeat1, - STATE(3613), 1, - sym_run_tuning, - STATE(5535), 1, - sym_function_arguments, - STATE(3372), 2, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4152), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4447), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4760), 1, + sym_on_stop_phrase, + STATE(4761), 1, + aux_sym_for_statement_repeat1, + STATE(6189), 1, + sym_body, + STATE(3504), 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, - [224266] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230860] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3359), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(5097), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3373), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4148), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4471), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4756), 1, + sym_on_stop_phrase, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(6186), 1, + sym_body, + STATE(3505), 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, - [224304] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230910] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3359), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(5099), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3374), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4087), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4469), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5140), 1, + sym_on_stop_phrase, + STATE(5141), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(3506), 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, - [224342] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [230960] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4858), 1, - sym__namedot, - STATE(3376), 1, - aux_sym_qualified_name_repeat1, - STATE(3375), 2, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5359), 1, + sym__terminator, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3507), 2, sym_comment, sym_include, - ACTIONS(104), 12, + ACTIONS(2598), 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, + [230998] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, 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(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4249), 1, + sym_on_error_phrase, + STATE(4489), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5181), 1, + aux_sym_for_statement_repeat1, + STATE(5182), 1, + sym_on_stop_phrase, + STATE(6158), 1, + sym_body, + STATE(3508), 2, + sym_comment, + sym_include, + [231048] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5101), 1, - sym__namedot, - STATE(3376), 3, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4210), 1, + sym_on_error_phrase, + STATE(4279), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5059), 1, + sym_on_stop_phrase, + STATE(5060), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, + sym_body, + STATE(3509), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(108), 12, + [231098] = 16, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, 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, - [224408] = 14, - ACTIONS(67), 1, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4142), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4483), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4891), 1, + sym_on_stop_phrase, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, + sym_body, + STATE(3510), 2, + sym_comment, + sym_include, + [231148] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4149), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4470), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4879), 1, + sym_on_stop_phrase, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, + sym_body, + STATE(3511), 2, + sym_comment, + sym_include, + [231198] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5361), 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, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3512), 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(2598), 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, + [231236] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4155), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4453), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4873), 1, + sym_on_stop_phrase, + STATE(4875), 1, + aux_sym_for_statement_repeat1, + STATE(5754), 1, + sym_body, + STATE(3513), 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, + [231286] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5108), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5365), 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, + ACTIONS(5367), 1, + anon_sym_LBRACK, + STATE(3771), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3514), 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, - [224542] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [231332] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4773), 1, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5369), 1, sym__terminator, - ACTIONS(4775), 1, - aux_sym_function_call_token1, - ACTIONS(4820), 1, - anon_sym_LPAREN, - STATE(3389), 1, - aux_sym_run_statement_repeat1, - STATE(3613), 1, - sym_run_tuning, - STATE(5851), 1, - sym_function_arguments, - STATE(3380), 2, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3515), 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, - [224592] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [231370] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4143), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4485), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4716), 1, + sym_on_stop_phrase, + STATE(4717), 1, + aux_sym_for_statement_repeat1, + STATE(5745), 1, + sym_body, + STATE(3516), 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, - [224642] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [231420] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5114), 1, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5371), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3469), 1, - sym__pre_tuning, - STATE(3644), 1, - aux_sym_for_phrase_repeat1, - STATE(3747), 1, - sym_where_clause, - STATE(3382), 2, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3517), 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, - [224690] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [231458] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5116), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3432), 1, - sym__pre_tuning, - STATE(3771), 1, - sym_where_clause, - STATE(3779), 1, - aux_sym_for_phrase_repeat1, - STATE(3383), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4114), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4536), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4751), 1, + sym_on_stop_phrase, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + STATE(6180), 1, + sym_body, + STATE(3518), 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, - [224738] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [231508] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5118), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3462), 1, - sym__pre_tuning, - STATE(3657), 1, - aux_sym_for_phrase_repeat1, - STATE(3659), 1, - sym_where_clause, - STATE(3384), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4094), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4542), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(4750), 1, + aux_sym_for_statement_repeat1, + STATE(6178), 1, + sym_body, + STATE(3519), 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, - [224786] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [231558] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4161), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4443), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4869), 1, + sym_on_stop_phrase, + STATE(4870), 1, + aux_sym_for_statement_repeat1, + STATE(5753), 1, + sym_body, + STATE(3520), 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, + [231608] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4058), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4313), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5096), 1, + sym_on_stop_phrase, + STATE(5097), 1, + aux_sym_for_statement_repeat1, + STATE(6139), 1, + sym_body, + STATE(3521), 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, + [231658] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5122), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3368), 1, - sym_query_tuning, - STATE(3423), 1, - sym__pre_tuning, - STATE(3664), 1, - aux_sym_for_phrase_repeat1, - STATE(3667), 1, - sym_where_clause, - STATE(3387), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4165), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4355), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5099), 1, + sym_on_stop_phrase, + STATE(5100), 1, + aux_sym_for_statement_repeat1, + STATE(5560), 1, + sym_body, + STATE(3522), 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, - [224922] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [231708] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4086), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4491), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5111), 1, + sym_on_stop_phrase, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5844), 1, + sym_body, + STATE(3523), 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, - [224972] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [231758] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4630), 1, - aux_sym_setter_token1, - ACTIONS(4632), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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(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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4192), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4365), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4766), 1, + sym_on_stop_phrase, + STATE(4767), 1, + aux_sym_for_statement_repeat1, + STATE(6194), 1, + sym_body, + STATE(3524), 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, - [225022] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [231808] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3390), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4234), 1, + sym_on_error_phrase, + STATE(4280), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5009), 1, + sym_on_stop_phrase, + STATE(5010), 1, + aux_sym_for_statement_repeat1, + STATE(6045), 1, + sym_body, + STATE(3525), 2, sym_comment, sym_include, - ACTIONS(4416), 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, - [225052] = 15, - ACTIONS(67), 1, + [231858] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4059), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4504), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5093), 1, + sym_on_stop_phrase, + STATE(5094), 1, + aux_sym_for_statement_repeat1, + STATE(5555), 1, + sym_body, + STATE(3526), 2, + sym_comment, + sym_include, + [231908] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5128), 1, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5373), 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, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3527), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225101] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [231946] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, - aux_sym_variable_tuning_token2, - STATE(3392), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4138), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4488), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4897), 1, + sym_on_stop_phrase, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(5889), 1, + sym_body, + STATE(3528), 2, sym_comment, sym_include, - 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_getter_token1, - aux_sym_setter_token1, - [225132] = 17, - ACTIONS(67), 1, + [231996] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4261), 1, + sym_on_error_phrase, + STATE(4463), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5002), 1, + sym_on_stop_phrase, + STATE(5003), 1, + aux_sym_for_statement_repeat1, + STATE(6049), 1, + sym_body, + STATE(3529), 2, + sym_comment, + sym_include, + [232046] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - STATE(2381), 1, - sym__block_terminator, - STATE(3755), 1, - sym_while_phrase, - STATE(3865), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4163), 1, sym_on_error_phrase, - STATE(3945), 1, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4428), 1, sym_on_quit_phrase, - STATE(4083), 1, - aux_sym_repeat_statement_repeat1, - STATE(4101), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6097), 1, + STATE(5752), 1, sym_body, - STATE(3393), 2, + STATE(3530), 2, sym_comment, sym_include, - [225185] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232096] = 16, 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(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, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225234] = 14, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4056), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4268), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4984), 1, + sym_on_stop_phrase, + STATE(4985), 1, + aux_sym_for_statement_repeat1, + STATE(6059), 1, + sym_body, + STATE(3531), 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, + [232146] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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(3682), 1, - sym_while_phrase, - STATE(3684), 1, - aux_sym_do_block_repeat1, - STATE(4330), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5670), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4167), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4437), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4859), 1, + sym_on_stop_phrase, + STATE(4860), 1, + aux_sym_for_statement_repeat1, + STATE(5723), 1, sym_body, - STATE(3396), 2, + STATE(3532), 2, sym_comment, sym_include, - STATE(5671), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [225330] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232196] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5158), 1, - sym__terminator, - STATE(3414), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4252), 1, + sym_on_error_phrase, 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_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5016), 1, + sym_on_stop_phrase, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(6051), 1, + sym_body, + STATE(3533), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225379] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232246] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(3681), 1, - sym_while_phrase, - STATE(3891), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4128), 1, sym_on_error_phrase, - STATE(3974), 1, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4502), 1, sym_on_quit_phrase, - STATE(4181), 1, - aux_sym_repeat_statement_repeat1, - STATE(4186), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, sym_on_stop_phrase, - STATE(5113), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5503), 1, + STATE(5911), 1, sym_body, - STATE(3398), 2, + STATE(3534), 2, sym_comment, sym_include, - [225432] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232296] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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(3666), 1, - aux_sym_do_block_repeat1, - STATE(3668), 1, - sym_while_phrase, - STATE(4356), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5463), 1, - sym_body, - STATE(3399), 2, - sym_comment, - sym_include, - STATE(6032), 3, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4265), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(4300), 1, sym_on_quit_phrase, - [225481] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5162), 1, - sym_identifier, - STATE(3900), 2, - sym_scope_tuning, - sym_access_tuning, - STATE(3400), 3, + STATE(4592), 1, + sym_sort_clause, + STATE(5045), 1, + sym_on_stop_phrase, + STATE(5046), 1, + aux_sym_for_statement_repeat1, + STATE(5977), 1, + sym_body, + STATE(3535), 2, sym_comment, sym_include, - 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, - [225516] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232346] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(3464), 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(3401), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4243), 1, + sym_on_error_phrase, + STATE(4529), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5109), 1, + aux_sym_for_statement_repeat1, + STATE(5110), 1, + sym_on_stop_phrase, + STATE(5718), 1, + sym_body, + STATE(3536), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225565] = 9, - ACTIONS(3), 1, + [232396] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5170), 1, - sym_identifier, - STATE(3412), 1, - aux_sym_buffer_definition_repeat1, - STATE(3402), 2, + ACTIONS(5375), 1, + sym__namecolon, + STATE(3537), 3, sym_comment, sym_include, - 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, - [225602] = 14, + aux_sym_object_access_repeat1, + ACTIONS(95), 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, + [232426] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -241824,446 +247447,273 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5363), 1, sym_identifier, - STATE(1082), 1, - sym_function_call, - STATE(1112), 1, + ACTIONS(5378), 1, + sym__terminator, + ACTIONS(5380), 1, + anon_sym_LBRACK, + STATE(3711), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 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, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3538), 2, sym_comment, sym_include, - STATE(1127), 4, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, sym_member_access, - [225649] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232472] = 16, 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(5178), 1, - sym__terminator, - 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, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225698] = 17, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4139), 1, sym_on_error_phrase, - STATE(3983), 1, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4273), 1, sym_on_quit_phrase, - STATE(4153), 1, - aux_sym_repeat_statement_repeat1, - STATE(4173), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5039), 1, sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6110), 1, + STATE(5041), 1, + aux_sym_for_statement_repeat1, + STATE(5993), 1, sym_body, - STATE(3405), 2, + STATE(3539), 2, sym_comment, sym_include, - [225751] = 14, - ACTIONS(3), 1, + [232522] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + STATE(3540), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(4920), 1, + ACTIONS(4429), 12, aux_sym_dataset_expression_token1, - STATE(3334), 1, - aux_sym_buffer_definition_repeat1, - STATE(3407), 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, - [225835] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + [232550] = 16, 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(5065), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3712), 1, - aux_sym_for_phrase_repeat1, - STATE(3713), 1, - sym_where_clause, - STATE(3408), 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, - [225880] = 15, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4119), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4399), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5031), 1, + sym_on_stop_phrase, + STATE(5035), 1, + aux_sym_for_statement_repeat1, + STATE(5992), 1, + sym_body, + STATE(3541), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225929] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232600] = 16, 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(5184), 1, - sym__terminator, - STATE(3391), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, - STATE(4348), 1, - sym_type_tuning, - STATE(4350), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5132), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3410), 2, - sym_comment, - sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [225978] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5085), 1, - sym__terminator, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4080), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4464), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4744), 1, + sym_on_stop_phrase, + STATE(4745), 1, + aux_sym_for_statement_repeat1, + STATE(6168), 1, + sym_body, + STATE(3542), 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, - [226023] = 9, - ACTIONS(3), 1, + [232650] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, - sym_identifier, - STATE(3400), 1, - aux_sym_buffer_definition_repeat1, - STATE(3412), 2, + ACTIONS(4692), 1, + sym__namecolon, + STATE(3537), 1, + aux_sym_object_access_repeat1, + STATE(3543), 2, sym_comment, sym_include, - 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, - [226060] = 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(2012), 1, - sym__integer_literal, - ACTIONS(2016), 1, + ACTIONS(91), 10, + anon_sym_COLON, + anon_sym_COMMA, 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, - STATE(2976), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_member_access, - [226107] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [232682] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5190), 1, - sym__terminator, - STATE(3927), 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(3414), 2, + ACTIONS(4692), 1, + sym__namecolon, + STATE(3537), 1, + aux_sym_object_access_repeat1, + STATE(3544), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [226156] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(91), 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, + [232714] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4125), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4518), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4906), 1, + sym_on_stop_phrase, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(5946), 1, + sym_body, + STATE(3545), 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, + [232764] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, - aux_sym_variable_definition_token2, - STATE(3416), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4122), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4476), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5107), 1, + sym_on_stop_phrase, + STATE(5108), 1, + aux_sym_for_statement_repeat1, + STATE(5590), 1, + sym_body, + STATE(3546), 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, + [232814] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -242272,306 +247722,188 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5363), 1, sym_identifier, - STATE(1052), 1, - sym_function_call, - STATE(1074), 1, + ACTIONS(5382), 1, + sym__terminator, + ACTIONS(5384), 1, + anon_sym_LBRACK, + STATE(3850), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 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, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3547), 2, sym_comment, sym_include, - STATE(1096), 4, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, sym_member_access, - [226279] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232860] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3418), 2, - sym_comment, - sym_include, - ACTIONS(108), 13, - sym__namedot, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, 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, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4179), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4417), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4997), 1, + sym_on_stop_phrase, + STATE(4998), 1, + aux_sym_for_statement_repeat1, + STATE(5502), 1, + sym_body, + STATE(3548), 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, + [232910] = 16, 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(5200), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3641), 1, - sym_where_clause, - STATE(3642), 1, - aux_sym_for_phrase_repeat1, - STATE(3420), 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, - [226400] = 17, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1681), 1, - sym__block_terminator, - STATE(3738), 1, - sym_while_phrase, - STATE(3849), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4206), 1, sym_on_error_phrase, - STATE(3926), 1, + STATE(4335), 1, sym_on_quit_phrase, - STATE(4051), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4770), 1, sym_on_stop_phrase, - STATE(4149), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6089), 1, + STATE(4771), 1, + aux_sym_for_statement_repeat1, + STATE(6131), 1, sym_body, - STATE(3421), 2, + STATE(3549), 2, sym_comment, sym_include, - [226453] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [232960] = 10, 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(5202), 1, - sym__terminator, - STATE(3927), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, - STATE(4324), 1, - sym_type_tuning, - STATE(4332), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5132), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3422), 2, - sym_comment, - sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [226502] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5204), 1, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5386), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3732), 1, - sym_where_clause, - STATE(3792), 1, - aux_sym_for_phrase_repeat1, - STATE(3423), 2, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3550), 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, - [226547] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [232998] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, - aux_sym_variable_definition_token2, - STATE(3424), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5212), 1, - aux_sym_variable_definition_token2, - STATE(3425), 2, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5388), 1, + sym__terminator, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3551), 2, sym_comment, sym_include, - ACTIONS(5210), 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, - [226609] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [233036] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5214), 1, - sym__terminator, - STATE(3404), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, - STATE(4269), 1, - sym_type_tuning, - STATE(4272), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5132), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3426), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4111), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4543), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4926), 1, + aux_sym_for_statement_repeat1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, + sym_body, + STATE(3552), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [226658] = 14, + [233086] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -242580,524 +247912,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(2108), 1, - sym__integer_literal, - ACTIONS(2112), 1, - anon_sym_LPAREN, - ACTIONS(5216), 1, + ACTIONS(5363), 1, sym_identifier, - STATE(2521), 1, + ACTIONS(5390), 1, + sym__terminator, + ACTIONS(5392), 1, + anon_sym_LBRACK, + STATE(3787), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 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, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3553), 2, sym_comment, sym_include, - STATE(2924), 4, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, sym_member_access, - [226705] = 15, - ACTIONS(67), 1, + [233132] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(3714), 1, - aux_sym_do_block_repeat1, - STATE(3716), 1, - sym_while_phrase, - STATE(4396), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5523), 1, - sym_body, - STATE(3428), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5394), 1, + sym__terminator, + ACTIONS(5396), 1, + anon_sym_LBRACK, + STATE(3644), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3554), 2, sym_comment, sym_include, - STATE(6001), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [226754] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [233178] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2313), 1, - sym__block_terminator, - STATE(3648), 1, - sym_while_phrase, - STATE(3889), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4256), 1, sym_on_error_phrase, - STATE(3985), 1, + STATE(4306), 1, sym_on_quit_phrase, - STATE(4158), 1, - aux_sym_repeat_statement_repeat1, - STATE(4164), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(4783), 1, sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6104), 1, + STATE(6124), 1, sym_body, - STATE(3429), 2, + STATE(3555), 2, sym_comment, sym_include, - [226807] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233228] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5108), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3705), 1, - sym_where_clause, - STATE(3707), 1, - aux_sym_for_phrase_repeat1, - STATE(3430), 2, + STATE(3556), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(166), 12, + sym__namecolon, + 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, - [226852] = 17, - ACTIONS(67), 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, + [233256] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5398), 1, + sym__terminator, + ACTIONS(5406), 1, + aux_sym_input_stream_tuning_token9, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(5400), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3557), 3, sym_comment, sym_include, - [226905] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_input_stream_statement_repeat1, + ACTIONS(5403), 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, + [233292] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5220), 1, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5409), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3708), 1, - sym_where_clause, - STATE(3710), 1, - aux_sym_for_phrase_repeat1, - STATE(3432), 2, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3558), 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, - [226950] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [233330] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2280), 1, - sym__block_terminator, - STATE(3726), 1, - sym_while_phrase, - STATE(3879), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4239), 1, sym_on_error_phrase, - STATE(3961), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4125), 1, - aux_sym_repeat_statement_repeat1, - STATE(4128), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5022), 1, sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6015), 1, + STATE(5023), 1, + aux_sym_for_statement_repeat1, + STATE(6028), 1, sym_body, - STATE(3433), 2, + STATE(3559), 2, sym_comment, sym_include, - [227003] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233380] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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(3654), 1, - sym_while_phrase, - STATE(3662), 1, - aux_sym_do_block_repeat1, - STATE(4358), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(6008), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4260), 1, + sym_on_error_phrase, + STATE(4272), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, sym_body, - STATE(3434), 2, + STATE(3560), 2, sym_comment, sym_include, - STATE(6078), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [227052] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233430] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5411), 1, + aux_sym_function_call_token1, + STATE(3561), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227101] = 14, - ACTIONS(3), 1, + ACTIONS(166), 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, + [233460] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4060), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4290), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5095), 1, + sym_on_stop_phrase, + STATE(5103), 1, + aux_sym_for_statement_repeat1, + STATE(5824), 1, + sym_body, + STATE(3562), 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, + [233510] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3927), 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(3437), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4223), 1, + sym_on_error_phrase, + STATE(4321), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4790), 1, + sym_on_stop_phrase, + STATE(4791), 1, + aux_sym_for_statement_repeat1, + STATE(6086), 1, + sym_body, + STATE(3563), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227197] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233560] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3564), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227246] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(110), 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, + [233588] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5230), 1, - aux_sym_variable_definition_token2, - STATE(3439), 2, + STATE(3565), 2, sym_comment, sym_include, - ACTIONS(5228), 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, + ACTIONS(128), 12, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [227277] = 13, - ACTIONS(67), 1, + 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, + [233616] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5118), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5413), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3657), 1, - aux_sym_for_phrase_repeat1, - STATE(3659), 1, - sym_where_clause, - STATE(3440), 2, + ACTIONS(5415), 1, + anon_sym_LBRACK, + STATE(3838), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3566), 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, - [227322] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [233662] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5234), 1, - aux_sym_variable_definition_token2, - STATE(3441), 2, + ACTIONS(2600), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5417), 1, + sym__terminator, + STATE(3557), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3858), 1, + sym_input_stream_tuning, + ACTIONS(2596), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3567), 2, sym_comment, sym_include, - ACTIONS(5232), 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, - [227353] = 17, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2598), 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, + [233700] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4127), 1, sym_on_error_phrase, - STATE(3930), 1, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4340), 1, sym_on_quit_phrase, - STATE(4047), 1, + STATE(4592), 1, + sym_sort_clause, + STATE(5104), 1, sym_on_stop_phrase, - STATE(4048), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5512), 1, + STATE(5105), 1, + aux_sym_for_statement_repeat1, + STATE(5572), 1, sym_body, - STATE(3442), 2, + STATE(3568), 2, sym_comment, sym_include, - [227406] = 14, + [233750] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -243106,879 +248388,766 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(869), 1, - sym__integer_literal, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(5238), 1, + ACTIONS(5363), 1, sym_identifier, - STATE(353), 1, - sym_function_call, - STATE(674), 1, + ACTIONS(5419), 1, + sym__terminator, + ACTIONS(5421), 1, + anon_sym_LBRACK, + STATE(3686), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 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, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3569), 2, sym_comment, sym_include, - STATE(1016), 4, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, sym_member_access, - [227453] = 15, - ACTIONS(67), 1, + [233796] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5423), 1, sym__terminator, - STATE(3466), 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(3444), 2, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(3835), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3570), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227502] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [233842] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5240), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3630), 1, - aux_sym_for_phrase_repeat1, - STATE(3631), 1, - sym_where_clause, - STATE(3445), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4209), 1, + sym_on_error_phrase, + STATE(4346), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(4806), 1, + sym_on_stop_phrase, + STATE(5964), 1, + sym_body, + STATE(3571), 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, - [227547] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233892] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5114), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3644), 1, - aux_sym_for_phrase_repeat1, - STATE(3747), 1, - sym_where_clause, - STATE(3446), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4151), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4294), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4774), 1, + sym_on_stop_phrase, + STATE(4775), 1, + aux_sym_for_statement_repeat1, + STATE(5950), 1, + sym_body, + STATE(3572), 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, - [227592] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233942] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5116), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3771), 1, - sym_where_clause, - STATE(3779), 1, - aux_sym_for_phrase_repeat1, - STATE(3447), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4081), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4414), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5088), 1, + sym_on_stop_phrase, + STATE(5089), 1, + aux_sym_for_statement_repeat1, + STATE(5539), 1, + sym_body, + STATE(3573), 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, - [227637] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [233992] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, - aux_sym_variable_definition_token2, - STATE(3448), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4858), 1, + aux_sym__function_argument_with_mode_token4, + STATE(3561), 1, + sym_function_arguments, + STATE(4181), 1, + sym_type_tuning, + STATE(6174), 1, + sym_argument_pass_type, + ACTIONS(4852), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3574), 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(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [234034] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 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, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4168), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4432), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4993), 1, + sym_on_stop_phrase, + STATE(4994), 1, + aux_sym_for_statement_repeat1, + STATE(6054), 1, sym_body, - STATE(3449), 2, + STATE(3575), 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, + [234084] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5246), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5427), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3775), 1, - aux_sym_for_phrase_repeat1, - STATE(3776), 1, - sym_where_clause, - STATE(3450), 2, + ACTIONS(5429), 1, + anon_sym_LBRACK, + STATE(3595), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3576), 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, - [227762] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [234130] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5248), 1, - sym__terminator, - STATE(3437), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, - STATE(4352), 1, - sym_type_tuning, - STATE(4372), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5132), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3451), 2, + STATE(3577), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227811] = 15, - ACTIONS(67), 1, + ACTIONS(140), 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, + [234158] = 16, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4101), 1, + sym_on_error_phrase, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4497), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5030), 1, + aux_sym_for_statement_repeat1, + STATE(5032), 1, + sym_on_stop_phrase, + STATE(6007), 1, + sym_body, + STATE(3578), 2, + sym_comment, + sym_include, + [234208] = 16, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4222), 1, + sym_on_error_phrase, + STATE(4298), 1, + sym_on_quit_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(5101), 1, + sym_on_stop_phrase, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5565), 1, + sym_body, + STATE(3579), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227860] = 13, - ACTIONS(67), 1, + [234258] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5067), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5431), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3777), 1, - aux_sym_for_phrase_repeat1, - STATE(3778), 1, - sym_where_clause, - STATE(3453), 2, + ACTIONS(5433), 1, + anon_sym_LBRACK, + STATE(3716), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3580), 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, - [227905] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [234304] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3454), 2, + STATE(3581), 2, sym_comment, sym_include, - ACTIONS(5252), 13, - anon_sym_COLON, + ACTIONS(152), 12, + sym__namecolon, sym__terminator, - anon_sym_COMMA, + anon_sym_LPAREN, aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_setter_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, + 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, + [234332] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5437), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(5439), 1, + aux_sym_input_stream_tuning_token11, + STATE(3582), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [227983] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5435), 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, + [234364] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3581), 1, + STATE(3629), 1, aux_sym_do_block_repeat1, - STATE(3593), 1, - sym_while_phrase, - STATE(4414), 1, + STATE(4392), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(6096), 1, + STATE(5958), 1, sym_body, - STATE(3456), 2, + STATE(3583), 2, sym_comment, sym_include, - STATE(5631), 3, + STATE(5968), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [228032] = 13, - ACTIONS(67), 1, + [234407] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5254), 1, + ACTIONS(5441), 1, + sym_identifier, + ACTIONS(5444), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3656), 1, - sym_where_clause, - STATE(3837), 1, - aux_sym_for_phrase_repeat1, - STATE(3457), 2, + ACTIONS(5446), 1, + aux_sym_scope_tuning_token1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + STATE(3584), 3, 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, - [228077] = 17, - ACTIONS(67), 1, + aux_sym_var_statement_repeat1, + [234448] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5449), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3585), 2, sym_comment, sym_include, - [228130] = 15, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [234491] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + sym__terminator, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + STATE(3708), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3586), 2, + sym_comment, + sym_include, + ACTIONS(5453), 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, + [234530] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3571), 1, + STATE(3600), 1, aux_sym_do_block_repeat1, - STATE(3591), 1, - sym_while_phrase, - STATE(4420), 1, + STATE(4382), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(5980), 1, + STATE(5625), 1, sym_body, - STATE(3459), 2, + STATE(3587), 2, sym_comment, sym_include, - STATE(5665), 3, + STATE(6046), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [228179] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [234573] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, - aux_sym_variable_definition_token2, - STATE(3460), 2, + STATE(5738), 1, + sym_accumulate_aggregate, + STATE(3588), 2, sym_comment, sym_include, - ACTIONS(5256), 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, - [228210] = 17, - ACTIONS(67), 1, + ACTIONS(5461), 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, + [234602] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_accumulate_aggregate, + STATE(3589), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [234631] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5140), 1, - aux_sym_while_phrase_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4382), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5625), 1, sym_body, - STATE(3461), 2, + STATE(3590), 2, sym_comment, sym_include, - [228263] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6046), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [234674] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(5260), 1, + ACTIONS(5192), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3758), 1, + STATE(3607), 1, aux_sym_for_phrase_repeat1, - STATE(3759), 1, - sym_where_clause, - STATE(3462), 2, + STATE(3591), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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] = 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(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, - STATE(2902), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_member_access, - [228355] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [234713] = 11, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(5122), 1, + ACTIONS(5192), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3664), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3667), 1, - sym_where_clause, - STATE(3465), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3592), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228449] = 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(5266), 1, - sym__terminator, - STATE(3927), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, - STATE(4511), 1, - sym_type_tuning, - STATE(4520), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5132), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3466), 2, - sym_comment, - sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [228498] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5270), 1, - aux_sym_variable_definition_token2, - STATE(3467), 2, - sym_comment, - sym_include, - ACTIONS(5268), 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, - [228529] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [234752] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - aux_sym_variable_tuning_token2, - STATE(3468), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(5276), 1, + ACTIONS(5465), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3751), 1, + STATE(3596), 1, aux_sym_for_phrase_repeat1, - STATE(3756), 1, - sym_where_clause, - STATE(3469), 2, + STATE(3593), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228605] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [234791] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, - aux_sym_variable_definition_token2, - STATE(3470), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5465), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3594), 2, sym_comment, sym_include, - 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [234830] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -243987,394 +249156,258 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5363), 1, sym_identifier, - STATE(260), 1, - sym_function_call, - STATE(274), 1, + ACTIONS(5467), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 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, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3595), 2, sym_comment, sym_include, - STATE(380), 4, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, sym_member_access, - [228683] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [234873] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5286), 1, - aux_sym_variable_definition_token2, - STATE(3472), 2, - sym_comment, - sym_include, - ACTIONS(5284), 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, - [228714] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(5288), 1, + ACTIONS(5469), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3825), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3826), 1, - sym_where_clause, - STATE(3473), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3596), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [234912] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, - aux_sym_variable_tuning_token2, - STATE(3474), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4342), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5957), 1, + sym_body, + STATE(3597), 2, sym_comment, sym_include, - ACTIONS(5290), 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, - [228790] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5731), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [234955] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5296), 1, - aux_sym_variable_definition_token2, - STATE(3475), 2, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5471), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3598), 2, sym_comment, sym_include, - 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(5453), 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, + [234994] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(5104), 1, + ACTIONS(5096), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3763), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3764), 1, - sym_where_clause, - STATE(3476), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3599), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228866] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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_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, - 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, + [235033] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3584), 1, - sym_while_phrase, - STATE(3806), 1, + STATE(4270), 1, aux_sym_do_block_repeat1, - STATE(4371), 1, + STATE(4353), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(6018), 1, + STATE(5895), 1, sym_body, - STATE(3480), 2, + STATE(3600), 2, sym_comment, sym_include, - STATE(6017), 3, + STATE(6004), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [229034] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [235076] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5321), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5096), 1, sym__terminator, - STATE(3927), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4235), 1, - sym_temp_table_tuning, - STATE(4517), 1, - sym_type_tuning, - STATE(4524), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5132), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3481), 2, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3670), 1, + aux_sym_for_phrase_repeat1, + STATE(3601), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [229083] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [235115] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5150), 1, - aux_sym_while_phrase_token1, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3799), 1, - sym_while_phrase, - STATE(3805), 1, + STATE(3614), 1, aux_sym_do_block_repeat1, - STATE(4507), 1, + STATE(4353), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(5499), 1, + STATE(5895), 1, sym_body, - STATE(3482), 2, + STATE(3602), 2, sym_comment, sym_include, - STATE(5874), 3, + STATE(6004), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [229132] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [235158] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3818), 1, - sym_while_phrase, - 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(3483), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5473), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3603), 2, sym_comment, sym_include, - STATE(5841), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [229181] = 14, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [235197] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -244383,88 +249416,250 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5363), 1, sym_identifier, - STATE(2494), 1, - sym_function_call, - STATE(2496), 1, + ACTIONS(5475), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 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, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3604), 2, sym_comment, sym_include, - STATE(2824), 4, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, sym_member_access, - [229228] = 13, - ACTIONS(67), 1, + [235240] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(3909), 1, + sym_on_error_phrase, + STATE(3995), 1, + sym_on_quit_phrase, + STATE(4177), 1, + aux_sym_repeat_statement_repeat1, + STATE(4178), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6123), 1, + sym_body, + STATE(3605), 2, + sym_comment, + sym_include, + [235287] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + STATE(1857), 1, + sym__block_terminator, + STATE(3870), 1, + sym_on_error_phrase, + STATE(3941), 1, + sym_on_quit_phrase, + STATE(4097), 1, + sym_on_stop_phrase, + STATE(4130), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5632), 1, + sym_body, + STATE(3606), 2, + sym_comment, + sym_include, + [235334] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5477), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3607), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [235373] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5425), 1, + sym_accumulate_aggregate, + STATE(3608), 2, + sym_comment, + sym_include, + ACTIONS(5461), 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, + [235402] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(4622), 1, - aux_sym_where_clause_token1, - ACTIONS(5325), 1, + ACTIONS(5477), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3828), 1, + STATE(3635), 1, aux_sym_for_phrase_repeat1, - STATE(3838), 1, - sym_where_clause, - STATE(3485), 2, + STATE(3609), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [235441] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4035), 1, + sym_type_tuning, + STATE(4036), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5479), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3610), 2, + sym_comment, + sym_include, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [235480] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5329), 1, - aux_sym_variable_definition_token2, - STATE(3486), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4017), 1, + sym_type_tuning, + STATE(4019), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5485), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3611), 2, sym_comment, sym_include, - ACTIONS(5327), 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, - [229304] = 14, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [235519] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_accumulate_aggregate, + STATE(3612), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [235548] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -244473,284 +249668,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5487), 1, sym_identifier, - ACTIONS(5333), 1, + ACTIONS(5489), 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, + ACTIONS(5491), 1, + anon_sym_NO_DASHERROR, + STATE(3814), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, sym_object_access, - STATE(3487), 2, + STATE(5122), 1, + sym_assignment, + STATE(3613), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(5862), 2, sym_qualified_name, sym_member_access, - [229350] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [235591] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5337), 1, - sym__terminator, - 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, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4341), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5990), 1, sym_body, - STATE(3489), 2, + STATE(3614), 2, sym_comment, sym_include, - [229436] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5989), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [235634] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4208), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4480), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4911), 1, - aux_sym_for_statement_repeat1, - STATE(4913), 1, - sym_on_stop_phrase, - STATE(5749), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3628), 1, + aux_sym_do_block_repeat1, + STATE(4341), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5990), 1, sym_body, - STATE(3490), 2, + STATE(3615), 2, sym_comment, sym_include, - [229486] = 16, - ACTIONS(67), 1, + STATE(5989), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [235677] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5487), 1, + sym_identifier, + ACTIONS(5493), 1, + sym__terminator, + ACTIONS(5495), 1, + anon_sym_NO_DASHERROR, + STATE(3814), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + STATE(3616), 2, sym_comment, sym_include, - [229536] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + [235720] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3492), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(5499), 1, + anon_sym_COMMA, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3944), 1, + aux_sym_inherits_repeat1, + STATE(3617), 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, + ACTIONS(5497), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_event_definition_token1, - [229564] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [235755] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4245), 1, - sym_on_error_phrase, - STATE(4453), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4860), 1, - sym_on_stop_phrase, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5815), 1, - sym_body, - STATE(3493), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5142), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3592), 1, + aux_sym_for_phrase_repeat1, + STATE(3618), 2, sym_comment, sym_include, - [229614] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [235794] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4338), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6083), 1, sym_body, - STATE(3494), 2, + STATE(3619), 2, sym_comment, sym_include, - [229664] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5758), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [235837] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3619), 1, + aux_sym_do_block_repeat1, + STATE(4342), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5957), 1, sym_body, - STATE(3495), 2, + STATE(3620), 2, sym_comment, sym_include, - [229714] = 14, + STATE(5731), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [235880] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -244759,1070 +249902,776 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5487), 1, sym_identifier, - ACTIONS(5348), 1, + ACTIONS(5501), 1, sym__terminator, - 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, + ACTIONS(5503), 1, + anon_sym_NO_DASHERROR, + STATE(3814), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, sym_object_access, - STATE(3496), 2, + STATE(5122), 1, + sym_assignment, + STATE(3621), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(5862), 2, sym_qualified_name, sym_member_access, - [229760] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [235923] = 15, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4087), 1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(3929), 1, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4464), 1, + STATE(4000), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4865), 1, + STATE(4189), 1, + aux_sym_repeat_statement_repeat1, + STATE(4190), 1, sym_on_stop_phrase, - STATE(4866), 1, - aux_sym_for_statement_repeat1, - STATE(5970), 1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6191), 1, sym_body, - STATE(3498), 2, + STATE(3622), 2, sym_comment, sym_include, - [229860] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [235970] = 11, 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(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4462), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(4894), 1, - sym_on_stop_phrase, - STATE(5770), 1, - sym_body, - STATE(3499), 2, - sym_comment, - sym_include, - [229910] = 16, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4829), 1, - sym_on_stop_phrase, - STATE(5801), 1, - sym_body, - STATE(3500), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5275), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3594), 1, + aux_sym_for_phrase_repeat1, + STATE(3623), 2, sym_comment, sym_include, - [229960] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236009] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4047), 1, + sym_type_tuning, + STATE(4048), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5505), 2, 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, + anon_sym_RPAREN, + STATE(3624), 2, sym_comment, sym_include, - [230010] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [236048] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5352), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5275), 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(3502), 2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3625), 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, - [230048] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236087] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3688), 1, + aux_sym_do_block_repeat1, + STATE(4287), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5636), 1, sym_body, - STATE(3504), 2, + STATE(3626), 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, + STATE(5908), 3, 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, + sym_on_quit_phrase, + [236130] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3506), 2, + STATE(747), 1, + sym_accumulate_aggregate, + STATE(3627), 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(5463), 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, + [236159] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4333), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6110), 1, sym_body, - STATE(3507), 2, + STATE(3628), 2, sym_comment, sym_include, - [230276] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5956), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [236202] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4151), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4310), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6000), 1, sym_body, - STATE(3508), 2, + STATE(3629), 2, sym_comment, sym_include, - [230326] = 10, - ACTIONS(67), 1, + STATE(5994), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [236245] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5354), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5487), 1, + sym_identifier, + ACTIONS(5507), 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(3509), 2, + ACTIONS(5509), 1, + anon_sym_NO_DASHERROR, + STATE(3613), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + STATE(3630), 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, - [230364] = 10, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + [236288] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5356), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5487), 1, + sym_identifier, + ACTIONS(5511), 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(3510), 2, + ACTIONS(5513), 1, + anon_sym_NO_DASHERROR, + STATE(3664), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + STATE(3631), 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, - [230402] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + [236331] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 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(4252), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(3904), 1, sym_on_error_phrase, - STATE(4449), 1, + STATE(3943), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4857), 1, + STATE(4070), 1, sym_on_stop_phrase, - STATE(4862), 1, - aux_sym_for_statement_repeat1, - STATE(5831), 1, + STATE(4073), 1, + aux_sym_repeat_statement_repeat1, + STATE(4789), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5599), 1, sym_body, - STATE(3511), 2, + STATE(3632), 2, sym_comment, sym_include, - [230452] = 7, - ACTIONS(67), 1, + [236378] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, - sym__namecolon, - STATE(3522), 1, - aux_sym_object_access_repeat1, - STATE(3512), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5515), 1, + sym__terminator, + STATE(3662), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3633), 2, sym_comment, sym_include, - 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, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [236421] = 6, 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(4063), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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(3513), 2, - sym_comment, - sym_include, - [230534] = 16, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4064), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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(3514), 2, + STATE(399), 1, + sym_accumulate_aggregate, + STATE(3634), 2, sym_comment, sym_include, - [230584] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [236450] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4069), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4495), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5124), 1, - aux_sym_for_statement_repeat1, - STATE(5126), 1, - sym_on_stop_phrase, - STATE(5772), 1, - sym_body, - STATE(3515), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5517), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3635), 2, sym_comment, sym_include, - [230634] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236489] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4114), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4418), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5152), 1, - sym_on_stop_phrase, - STATE(5156), 1, - aux_sym_for_statement_repeat1, - STATE(5876), 1, - sym_body, - STATE(3516), 2, + STATE(3636), 2, sym_comment, sym_include, - [230684] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5519), 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, + [236516] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4192), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4307), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4784), 1, - sym_on_stop_phrase, - STATE(4788), 1, - aux_sym_for_statement_repeat1, - STATE(5713), 1, - sym_body, - STATE(3517), 2, + STATE(926), 1, + sym_accumulate_aggregate, + STATE(3637), 2, sym_comment, sym_include, - [230734] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [236545] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4085), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4452), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5170), 1, - sym_on_stop_phrase, - STATE(5171), 1, - aux_sym_for_statement_repeat1, - STATE(5847), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4287), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5636), 1, sym_body, - STATE(3518), 2, + STATE(3638), 2, sym_comment, sym_include, - [230784] = 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(4197), 1, + STATE(5908), 3, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4415), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4849), 1, sym_on_stop_phrase, - STATE(4850), 1, - aux_sym_for_statement_repeat1, - STATE(5864), 1, - sym_body, - STATE(3519), 2, - sym_comment, - sym_include, - [230834] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + sym_on_quit_phrase, + [236588] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4243), 1, - sym_on_error_phrase, - STATE(4256), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4841), 1, - aux_sym_for_statement_repeat1, - STATE(4851), 1, - sym_on_stop_phrase, - STATE(5865), 1, - sym_body, - STATE(3520), 2, + STATE(701), 1, + sym_accumulate_aggregate, + STATE(3639), 2, sym_comment, sym_include, - [230884] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [236617] = 6, 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(4133), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4255), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4879), 1, - sym_on_stop_phrase, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5683), 1, - sym_body, - STATE(3521), 2, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_accumulate_aggregate, + STATE(3640), 2, sym_comment, sym_include, - [230934] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [236646] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - sym__namecolon, - STATE(3522), 3, + STATE(3641), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(93), 10, + ACTIONS(4054), 11, 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_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, - [230964] = 16, - ACTIONS(67), 1, + [236673] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4096), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4434), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5162), 1, - sym_on_stop_phrase, - STATE(5163), 1, - aux_sym_for_statement_repeat1, - STATE(5857), 1, - sym_body, - STATE(3523), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5521), 1, + sym__terminator, + STATE(3604), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3642), 2, sym_comment, sym_include, - [231014] = 16, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [236716] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4110), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4432), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5158), 1, - sym_on_stop_phrase, - STATE(5159), 1, - aux_sym_for_statement_repeat1, - STATE(5862), 1, - sym_body, - STATE(3524), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5523), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3643), 2, sym_comment, sym_include, - [231064] = 16, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [236759] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4148), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4481), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4847), 1, - sym_on_stop_phrase, - STATE(4848), 1, - aux_sym_for_statement_repeat1, - STATE(5866), 1, - sym_body, - STATE(3525), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5525), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3644), 2, sym_comment, sym_include, - [231114] = 16, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [236802] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4224), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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(3526), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5527), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3645), 2, sym_comment, sym_include, - [231164] = 16, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [236845] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4079), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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(3527), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5529), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3646), 2, sym_comment, sym_include, - [231214] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [236888] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4155), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4381), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5536), 1, + sym_body, + STATE(3647), 2, + sym_comment, + sym_include, + STATE(5537), 3, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4476), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4902), 1, - aux_sym_for_statement_repeat1, - STATE(4904), 1, sym_on_stop_phrase, - STATE(5754), 1, - sym_body, - STATE(3528), 2, + sym_on_quit_phrase, + [236931] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_accumulate_aggregate, + STATE(3648), 2, sym_comment, sym_include, - [231264] = 14, + ACTIONS(5463), 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, + [236960] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -245831,122 +250680,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5361), 1, + ACTIONS(5531), 1, sym__terminator, - ACTIONS(5363), 1, - anon_sym_LBRACK, - STATE(3596), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3529), 2, + STATE(3649), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [231310] = 16, - ACTIONS(67), 1, + [237003] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4004), 1, + aux_sym_function_parameter_repeat1, + STATE(4028), 1, + sym_type_tuning, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + ACTIONS(5533), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3650), 2, + sym_comment, + sym_include, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [237042] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4076), 1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2215), 1, + sym__block_terminator, + STATE(3896), 1, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4367), 1, + STATE(3960), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4636), 1, + STATE(4228), 1, + aux_sym_repeat_statement_repeat1, + STATE(4232), 1, sym_on_stop_phrase, - STATE(4646), 1, - aux_sym_for_statement_repeat1, - STATE(5508), 1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5642), 1, sym_body, - STATE(3530), 2, + STATE(3651), 2, sym_comment, sym_include, - [231360] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [237089] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4123), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4386), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4842), 1, - sym_on_stop_phrase, - STATE(4843), 1, - aux_sym_for_statement_repeat1, - STATE(5871), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4500), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6019), 1, sym_body, - STATE(3532), 2, + STATE(3652), 2, sym_comment, sym_include, - [231440] = 14, + STATE(6020), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237132] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -245955,106 +250800,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5367), 1, + ACTIONS(5535), 1, sym__terminator, - ACTIONS(5369), 1, - anon_sym_LBRACK, - STATE(3757), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3533), 2, + STATE(3653), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [231486] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [237175] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5371), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5537), 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(3534), 2, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3603), 1, + aux_sym_for_phrase_repeat1, + STATE(3654), 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, - [231524] = 16, - ACTIONS(67), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237214] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4080), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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(3535), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5487), 1, + sym_identifier, + ACTIONS(5539), 1, + sym__terminator, + ACTIONS(5541), 1, + anon_sym_NO_DASHERROR, + STATE(3621), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + STATE(3655), 2, sym_comment, sym_include, - [231574] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + [237257] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, - sym__namecolon, - STATE(3522), 1, - aux_sym_object_access_repeat1, - STATE(3536), 2, + STATE(3656), 2, sym_comment, sym_include, - ACTIONS(89), 10, + ACTIONS(106), 11, + sym__namecolon, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -246065,46 +250901,90 @@ 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, - [231606] = 10, - ACTIONS(67), 1, + [237284] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3657), 2, + sym_comment, + sym_include, + ACTIONS(4126), 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, + [237311] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5373), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5543), 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, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3658), 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, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237350] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_accumulate_aggregate, + STATE(3659), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [237379] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3538), 2, + STATE(3660), 2, sym_comment, sym_include, - ACTIONS(115), 12, - sym__namecolon, + ACTIONS(5545), 11, sym__terminator, anon_sym_LPAREN, aux_sym_function_call_token1, @@ -246116,243 +250996,420 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, aux_sym_run_tuning_token7, - [231672] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [237406] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5375), 1, + STATE(892), 1, + sym_accumulate_aggregate, + STATE(3661), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [237435] = 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(5363), 1, + sym_identifier, + ACTIONS(5547), 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, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3662), 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, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [237478] = 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(5363), 1, + sym_identifier, + ACTIONS(5549), 1, + sym__terminator, + STATE(3646), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3663), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [237521] = 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(5487), 1, + sym_identifier, + ACTIONS(5551), 1, + sym__terminator, + ACTIONS(5553), 1, + anon_sym_NO_DASHERROR, + STATE(3814), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + STATE(3664), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + [237564] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4154), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4353), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5053), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, - sym_on_stop_phrase, - STATE(5939), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3821), 1, + aux_sym_do_block_repeat1, + STATE(4338), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6083), 1, sym_body, - STATE(3540), 2, + STATE(3665), 2, sym_comment, sym_include, - [231760] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5758), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237607] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3541), 2, + STATE(853), 1, + sym_accumulate_aggregate, + STATE(3666), 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(5463), 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, + [237636] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5377), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5537), 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(3542), 2, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3667), 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, - [231826] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237675] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3543), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5555), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3668), 2, sym_comment, sym_include, - 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237714] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4238), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3758), 1, + aux_sym_do_block_repeat1, + STATE(4416), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(6193), 1, + sym_body, + STATE(3669), 2, + sym_comment, + sym_include, + STATE(6116), 3, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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(3544), 2, + sym_on_quit_phrase, + [237757] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5261), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3670), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237796] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5261), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3753), 1, + aux_sym_for_phrase_repeat1, + STATE(3671), 2, sym_comment, sym_include, - [231904] = 16, - ACTIONS(67), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237835] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5114), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3762), 1, + aux_sym_for_phrase_repeat1, + STATE(3672), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237874] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4179), 1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(3917), 1, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4402), 1, + STATE(3958), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4990), 1, - aux_sym_for_statement_repeat1, - STATE(5000), 1, + STATE(4216), 1, + aux_sym_repeat_statement_repeat1, + STATE(4218), 1, sym_on_stop_phrase, - STATE(6093), 1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, sym_body, - STATE(3545), 2, + STATE(3673), 2, sym_comment, sym_include, - [231954] = 14, - ACTIONS(3), 1, + [237921] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + STATE(3674), 2, + sym_comment, + sym_include, + ACTIONS(4523), 11, 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, + 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, + [237948] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(879), 1, + sym_accumulate_aggregate, + 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, - [232000] = 14, + ACTIONS(5463), 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, + [237977] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -246361,58 +251418,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5383), 1, + ACTIONS(5557), 1, sym__terminator, - ACTIONS(5385), 1, - anon_sym_LBRACK, - STATE(3796), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3547), 2, + STATE(3676), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [232046] = 10, - ACTIONS(67), 1, + [238020] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_accumulate_aggregate, + STATE(3677), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [238049] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5387), 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(3548), 2, + STATE(386), 1, + sym_accumulate_aggregate, + STATE(3678), 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, - [232084] = 14, + ACTIONS(5463), 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, + [238078] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -246421,234 +251494,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5487), 1, sym_identifier, - ACTIONS(5389), 1, + ACTIONS(5559), 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, + ACTIONS(5561), 1, + anon_sym_NO_DASHERROR, + STATE(3616), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, sym_object_access, - STATE(3549), 2, + STATE(5122), 1, + sym_assignment, + STATE(3679), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(5862), 2, sym_qualified_name, sym_member_access, - [232130] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [238121] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4176), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4342), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5024), 1, - sym_on_stop_phrase, - STATE(5038), 1, - aux_sym_for_statement_repeat1, - STATE(5798), 1, - sym_body, - STATE(3550), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5563), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3680), 2, sym_comment, sym_include, - [232180] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [238160] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(5499), 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(4212), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4321), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5002), 1, - sym_on_stop_phrase, - STATE(5004), 1, - aux_sym_for_statement_repeat1, - STATE(5678), 1, - sym_body, - STATE(3551), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3940), 1, + aux_sym_inherits_repeat1, + STATE(3681), 2, sym_comment, sym_include, - [232230] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5565), 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, + [238195] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4184), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4537), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5714), 1, sym_body, - STATE(3552), 2, + STATE(3682), 2, sym_comment, sym_include, - [232280] = 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(4226), 1, + STATE(5716), 3, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4292), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4986), 1, sym_on_stop_phrase, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(5648), 1, - sym_body, - STATE(3553), 2, - sym_comment, - sym_include, - [232330] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + sym_on_quit_phrase, + [238238] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4250), 1, - sym_on_error_phrase, - STATE(4455), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4909), 1, - sym_on_stop_phrase, - STATE(5157), 1, - aux_sym_for_statement_repeat1, - STATE(5812), 1, - sym_body, - STATE(3554), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5114), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3683), 2, sym_comment, sym_include, - [232380] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [238277] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4213), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(3862), 1, sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4319), 1, + STATE(3957), 1, sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4998), 1, + STATE(4092), 1, sym_on_stop_phrase, - STATE(4999), 1, - aux_sym_for_statement_repeat1, - STATE(5669), 1, + STATE(4103), 1, + aux_sym_repeat_statement_repeat1, + STATE(4657), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5865), 1, sym_body, - STATE(3555), 2, + STATE(3684), 2, sym_comment, sym_include, - [232430] = 14, + [238324] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -246657,30 +251668,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5393), 1, + ACTIONS(5567), 1, sym__terminator, - ACTIONS(5395), 1, - anon_sym_LBRACK, - STATE(3663), 1, + STATE(3765), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3556), 2, + STATE(3685), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [232476] = 14, + [238367] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -246689,219 +251698,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5397), 1, + ACTIONS(5569), 1, sym__terminator, - ACTIONS(5399), 1, - anon_sym_LBRACK, - STATE(3784), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3557), 2, + STATE(3686), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [232522] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [238410] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4193), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4322), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(5006), 1, - sym_on_stop_phrase, - STATE(5012), 1, - aux_sym_for_statement_repeat1, - STATE(5698), 1, - sym_body, - STATE(3558), 2, + STATE(951), 1, + sym_accumulate_aggregate, + STATE(3687), 2, sym_comment, sym_include, - [232572] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [238439] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3823), 1, - aux_sym_sort_clause_token1, - ACTIONS(3825), 1, - aux_sym_sort_clause_token2, - STATE(4223), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4301), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4992), 1, - sym_on_stop_phrase, - STATE(4993), 1, - aux_sym_for_statement_repeat1, - STATE(5655), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4434), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5826), 1, sym_body, - STATE(3559), 2, + STATE(3688), 2, sym_comment, sym_include, - [232622] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5942), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [238482] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(590), 1, + sym_accumulate_aggregate, + STATE(3689), 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(5463), 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, + [238511] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5407), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5571), 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(3561), 2, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3690), 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, - [232692] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5453), 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, + [238550] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4231), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4276), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4961), 1, - sym_on_stop_phrase, - STATE(4963), 1, - aux_sym_for_statement_repeat1, - STATE(5632), 1, - sym_body, - STATE(3562), 2, + STATE(3691), 2, sym_comment, sym_include, - [232742] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(4361), 11, anon_sym_COLON, - ACTIONS(3817), 1, + anon_sym_DOT, + aux_sym__block_terminator_token1, 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(4127), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4339), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4748), 1, - aux_sym_for_statement_repeat1, - STATE(4749), 1, - sym_on_stop_phrase, - STATE(5602), 1, - sym_body, - STATE(3563), 2, - sym_comment, - sym_include, - [232792] = 14, + 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, + [238577] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -246910,255 +251854,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5487), 1, sym_identifier, - ACTIONS(5409), 1, + ACTIONS(5573), 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, + ACTIONS(5575), 1, + anon_sym_NO_DASHERROR, + STATE(3710), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, sym_object_access, - STATE(3564), 2, + STATE(5122), 1, + sym_assignment, + STATE(3692), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(5862), 2, sym_qualified_name, sym_member_access, - [232838] = 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(5413), 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(3565), 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, - [232876] = 16, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [238620] = 11, 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(4081), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4744), 1, - sym_on_stop_phrase, - STATE(4899), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, - sym_body, - STATE(3566), 2, - sym_comment, - sym_include, - [232926] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3567), 2, - sym_comment, - sym_include, - ACTIONS(156), 12, - sym__namecolon, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5144), 1, 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(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(4229), 1, - sym_on_error_phrase, - STATE(4240), 1, - aux_sym_for_phrase_repeat2, - STATE(4290), 1, - sym_on_quit_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4983), 1, - sym_on_stop_phrase, - STATE(4984), 1, - aux_sym_for_statement_repeat1, - STATE(5652), 1, - sym_body, - STATE(3569), 2, - sym_comment, - sym_include, - [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, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3816), 1, + aux_sym_for_phrase_repeat1, + STATE(3693), 2, sym_comment, sym_include, - ACTIONS(142), 12, - sym__namecolon, - sym__terminator, - anon_sym_LPAREN, + ACTIONS(2499), 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, - [233076] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [238659] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(4325), 1, + STATE(3755), 1, aux_sym_do_block_repeat1, - STATE(4435), 1, + STATE(4434), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(5790), 1, + STATE(5826), 1, sym_body, - STATE(3571), 2, + STATE(3694), 2, sym_comment, sym_include, - STATE(5691), 3, + STATE(5942), 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(73), 1, - anon_sym_LBRACE, - STATE(3572), 2, - sym_comment, - sym_include, - ACTIONS(246), 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, - [233146] = 13, + [238702] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -247167,60 +251942,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5417), 1, + ACTIONS(5577), 1, sym__terminator, - ACTIONS(5419), 1, - anon_sym_NO_DASHERROR, - STATE(3607), 1, - aux_sym_assign_statement_repeat1, - STATE(5013), 1, + STATE(3676), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, sym_object_access, - STATE(5114), 1, + STATE(5195), 1, sym_assignment, - STATE(3573), 2, + STATE(5196), 1, + sym_variable, + STATE(3695), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(5795), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [233189] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [238745] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5172), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5160), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(3891), 1, + STATE(2177), 1, + sym__block_terminator, + STATE(3876), 1, sym_on_error_phrase, - STATE(3974), 1, + STATE(3953), 1, sym_on_quit_phrase, - STATE(4181), 1, + STATE(4170), 1, aux_sym_repeat_statement_repeat1, - STATE(4186), 1, + STATE(4172), 1, sym_on_stop_phrase, - STATE(5113), 1, - sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5503), 1, + STATE(5863), 1, sym_body, - STATE(3574), 2, + STATE(3696), 2, sym_comment, sym_include, - [233236] = 13, + [238792] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -247229,111 +252004,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5421), 1, + ACTIONS(5579), 1, sym__terminator, - STATE(3637), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3575), 2, + STATE(3697), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [233279] = 5, - ACTIONS(67), 1, + [238835] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3576), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5581), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3698), 2, sym_comment, sym_include, - ACTIONS(4085), 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, - [233306] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [238878] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1560), 1, + sym__block_terminator, + STATE(3865), 1, + sym_on_error_phrase, + STATE(3978), 1, + sym_on_quit_phrase, + STATE(4144), 1, + sym_on_stop_phrase, + STATE(4145), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6010), 1, + sym_body, + STATE(3699), 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, + [238925] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5348), 1, - sym_accumulate_aggregate, - STATE(3578), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5583), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3680), 1, + aux_sym_for_phrase_repeat1, + STATE(3700), 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, - [233370] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [238964] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(759), 1, sym_accumulate_aggregate, - STATE(3579), 2, + STATE(3701), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -247344,241 +252138,233 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [233399] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [238993] = 11, 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(4356), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5463), 1, - sym_body, - STATE(3580), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4420), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5980), 1, - sym_body, - STATE(3581), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5583), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3702), 2, sym_comment, sym_include, - 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [239032] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5118), 1, + ACTIONS(5094), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3657), 1, + STATE(3760), 1, aux_sym_for_phrase_repeat1, - STATE(3582), 2, + STATE(3703), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [239071] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3583), 2, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5585), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3704), 2, sym_comment, sym_include, - 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(5453), 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, + [239110] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5587), 1, + sym__terminator, + STATE(3796), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3705), 2, sym_comment, sym_include, - STATE(6069), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [233610] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5453), 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, + [239149] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5094), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3706), 2, sym_comment, sym_include, - 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, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [239188] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5433), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5589), 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, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3707), 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, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [239227] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5591), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3708), 2, + sym_comment, + sym_include, + ACTIONS(5453), 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, + [239266] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(4325), 1, + STATE(4270), 1, aux_sym_do_block_repeat1, - STATE(4330), 1, + STATE(4416), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(5670), 1, + STATE(6193), 1, sym_body, - STATE(3587), 2, + STATE(3709), 2, sym_comment, sym_include, - STATE(5671), 3, + STATE(6116), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [233731] = 13, + [239309] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -247587,68 +252373,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5487), 1, sym_identifier, - ACTIONS(5435), 1, + ACTIONS(5593), 1, sym__terminator, - STATE(3798), 1, + ACTIONS(5595), 1, + anon_sym_NO_DASHERROR, + STATE(3814), 1, + aux_sym_assign_statement_repeat1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + STATE(3710), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + [239352] = 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(5363), 1, + sym_identifier, + ACTIONS(5597), 1, + sym__terminator, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3588), 2, + STATE(3711), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [233774] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [239395] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5118), 1, + ACTIONS(5144), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3589), 2, + STATE(3712), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [239434] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(456), 1, + STATE(5319), 1, sym_accumulate_aggregate, - STATE(3590), 2, + STATE(3713), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5461), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -247659,243 +252475,67 @@ static const uint16_t ts_small_parse_table[] = { 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(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(3598), 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(3591), 2, - sym_comment, - sym_include, - STATE(5691), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [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(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(3571), 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(3593), 2, - sym_comment, - sym_include, - STATE(5665), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [233971] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [239463] = 11, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5449), 1, + ACTIONS(5599), 1, sym__terminator, - STATE(3788), 1, + STATE(3810), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3595), 2, + STATE(3714), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, - [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, + [239502] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 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(4457), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5843), 1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2279), 1, + sym__block_terminator, + STATE(3900), 1, + sym_on_error_phrase, + STATE(3962), 1, + sym_on_quit_phrase, + STATE(4242), 1, + sym_on_stop_phrase, + STATE(4248), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6035), 1, sym_body, - STATE(3598), 2, + STATE(3715), 2, sym_comment, sym_include, - STATE(5718), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [234178] = 13, + [239549] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -247904,40 +252544,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5457), 1, + ACTIONS(5601), 1, sym__terminator, - ACTIONS(5459), 1, - anon_sym_NO_DASHERROR, - STATE(3702), 1, - aux_sym_assign_statement_repeat1, - STATE(5013), 1, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, sym_object_access, - STATE(5114), 1, + STATE(5195), 1, sym_assignment, - STATE(3599), 2, + STATE(5196), 1, + sym_variable, + STATE(3716), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(5795), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [234221] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [239592] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(793), 1, + STATE(870), 1, sym_accumulate_aggregate, - STATE(3600), 2, + STATE(3717), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -247948,7 +252588,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [234250] = 13, + [239621] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -247957,92 +252597,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5461), 1, + ACTIONS(5603), 1, sym__terminator, - ACTIONS(5463), 1, - anon_sym_NO_DASHERROR, - STATE(3625), 1, - aux_sym_assign_statement_repeat1, - STATE(5013), 1, + STATE(3585), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, sym_object_access, - STATE(5114), 1, + STATE(5195), 1, sym_assignment, - STATE(3601), 2, + STATE(5196), 1, + sym_variable, + STATE(3718), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(5795), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [234293] = 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(1715), 1, - sym__block_terminator, - 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(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, + [239664] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248051,69 +252627,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5465), 1, + ACTIONS(5605), 1, sym__terminator, - STATE(3637), 1, + STATE(3643), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3604), 2, + STATE(3719), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [234430] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [239707] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(960), 1, + sym_accumulate_aggregate, + STATE(3720), 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(5463), 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, + [239736] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(862), 1, sym_accumulate_aggregate, - STATE(3606), 2, + STATE(3721), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -248124,7 +252694,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [234500] = 13, + [239765] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248133,28 +252703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5473), 1, + ACTIONS(5607), 1, sym__terminator, - ACTIONS(5475), 1, - anon_sym_NO_DASHERROR, - STATE(3640), 1, - aux_sym_assign_statement_repeat1, - STATE(5013), 1, + STATE(3645), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, sym_object_access, - STATE(5114), 1, + STATE(5195), 1, sym_assignment, - STATE(3607), 2, + STATE(5196), 1, + sym_variable, + STATE(3722), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(5795), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [234543] = 13, + [239808] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248163,164 +252733,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5477), 1, + ACTIONS(5609), 1, sym__terminator, - STATE(3769), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3608), 2, + STATE(3723), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [234586] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [239851] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(511), 1, - sym_accumulate_aggregate, - STATE(3609), 2, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5611), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3724), 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, - [234615] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5453), 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, + [239890] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4492), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5933), 1, + sym_body, + STATE(3725), 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, - [234654] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6179), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [239933] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5479), 1, + ACTIONS(5613), 1, sym__terminator, - STATE(3709), 1, + STATE(3792), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3611), 2, + STATE(3726), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, - [234693] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [239972] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(398), 1, - sym_accumulate_aggregate, - STATE(3612), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5347), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3667), 1, + aux_sym_for_phrase_repeat1, + STATE(3727), 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, - [234722] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240011] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3613), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5347), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3728), 2, sym_comment, sym_include, - ACTIONS(5481), 11, - sym__terminator, - anon_sym_LPAREN, + ACTIONS(2499), 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, - [234749] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240050] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5285), 1, + STATE(840), 1, sym_accumulate_aggregate, - STATE(3614), 2, + STATE(3729), 2, sym_comment, sym_include, - ACTIONS(5427), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -248331,170 +252919,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [234778] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240079] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2313), 1, - sym__block_terminator, - 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(5323), 1, - sym_repeat_tuning, - STATE(6104), 1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4285), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5669), 1, sym_body, - STATE(3615), 2, + STATE(3730), 2, sym_comment, sym_include, - [234825] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5696), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [240122] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5483), 1, + ACTIONS(5615), 1, sym__terminator, - STATE(3720), 1, + STATE(3790), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3616), 2, + STATE(3731), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - 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(3617), 2, - sym_comment, - sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [234907] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(3618), 2, - sym_comment, - sym_include, - ACTIONS(5487), 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, - [234934] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240161] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_accumulate_aggregate, - STATE(3619), 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, - [234963] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5489), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5617), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3620), 2, + STATE(3797), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3732), 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, - [235002] = 13, + ACTIONS(5453), 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, + [240200] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248503,28 +253014,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5491), 1, + ACTIONS(5619), 1, sym__terminator, - STATE(3719), 1, + STATE(3653), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3621), 2, + STATE(3733), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [235045] = 13, + [240243] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248533,28 +253044,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5493), 1, + ACTIONS(5621), 1, sym__terminator, - STATE(3637), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3622), 2, + STATE(3734), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [235088] = 13, + [240286] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248563,56 +253074,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5495), 1, + ACTIONS(5623), 1, sym__terminator, - ACTIONS(5497), 1, - anon_sym_NO_DASHERROR, - STATE(3640), 1, - aux_sym_assign_statement_repeat1, - STATE(5013), 1, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, sym_object_access, - STATE(5114), 1, + STATE(5195), 1, sym_assignment, - STATE(3623), 2, + STATE(5196), 1, + sym_variable, + STATE(3735), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(5795), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [235131] = 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(5499), 1, - sym__terminator, - STATE(3645), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3624), 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, - [235170] = 13, + [240329] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248621,210 +253104,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5501), 1, + ACTIONS(5625), 1, sym__terminator, - ACTIONS(5503), 1, - anon_sym_NO_DASHERROR, - STATE(3640), 1, - aux_sym_assign_statement_repeat1, - STATE(5013), 1, + STATE(3697), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, sym_object_access, - STATE(5114), 1, + STATE(5195), 1, sym_assignment, - STATE(3625), 2, + STATE(5196), 1, + sym_variable, + STATE(3736), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(5795), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [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(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(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(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, + [240372] = 11, 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(5507), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3630), 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, - [235376] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5507), 1, + ACTIONS(5627), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3750), 1, + STATE(3668), 1, aux_sym_for_phrase_repeat1, - STATE(3631), 2, + STATE(3737), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [235415] = 13, - ACTIONS(3), 1, + [240411] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3597), 1, + aux_sym_do_block_repeat1, + STATE(4285), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5669), 1, + sym_body, + STATE(3738), 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, + STATE(5696), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [240454] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248833,86 +253192,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5511), 1, + ACTIONS(5629), 1, sym__terminator, - STATE(3617), 1, + STATE(3698), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3633), 2, + STATE(3739), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [235501] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240497] = 11, 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(5513), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3634), 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, - [235540] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4327), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5774), 1, - sym_body, - STATE(3635), 2, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5631), 1, + sym__terminator, + STATE(3786), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3740), 2, sym_comment, sym_include, - STATE(6118), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [235583] = 13, + ACTIONS(5453), 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, + [240536] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248921,57 +253250,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5633), 1, sym__terminator, - STATE(3637), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3636), 2, + STATE(3741), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [235626] = 12, - ACTIONS(3), 1, + [240579] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, - sym_identifier, - ACTIONS(5520), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5627), 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, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3742), 2, sym_comment, sym_include, - aux_sym_var_statement_repeat1, - [235667] = 13, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240618] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248980,231 +253308,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5525), 1, + ACTIONS(5635), 1, sym__terminator, - STATE(3637), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3638), 2, + STATE(3743), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [235710] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240661] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5299), 1, - sym_accumulate_aggregate, - STATE(3639), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5329), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3702), 1, + aux_sym_for_phrase_repeat1, + STATE(3744), 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, - [235739] = 11, - ACTIONS(3), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240700] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5329), 1, 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, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3745), 2, sym_comment, sym_include, - aux_sym_assign_statement_repeat1, - [235778] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240739] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5535), 1, + ACTIONS(5637), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3620), 1, + STATE(3707), 1, aux_sym_for_phrase_repeat1, - STATE(3641), 2, + STATE(3746), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [240778] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5535), 1, + ACTIONS(5637), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3642), 2, + STATE(3747), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [235856] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240817] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5537), 1, + ACTIONS(5639), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3643), 2, + STATE(3658), 1, + aux_sym_for_phrase_repeat1, + STATE(3748), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [235895] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240856] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5276), 1, + ACTIONS(5639), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3644), 2, + STATE(3749), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [235934] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240895] = 6, 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(5539), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3645), 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, - [235973] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(976), 1, sym_accumulate_aggregate, - STATE(3646), 2, + STATE(3750), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -249215,469 +253520,506 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [236002] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [240924] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5085), 1, + ACTIONS(5641), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3647), 2, + STATE(3751), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [240963] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3648), 2, + STATE(630), 1, + sym_accumulate_aggregate, + STATE(3752), 2, sym_comment, sym_include, - [236088] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [240992] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5122), 1, + ACTIONS(5643), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3664), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3649), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3753), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [241031] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5254), 1, + ACTIONS(5643), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3837), 1, + STATE(3828), 1, aux_sym_for_phrase_repeat1, - STATE(3650), 2, + STATE(3754), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [241070] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - 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(3651), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4392), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5958), 1, + sym_body, + STATE(3755), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [236209] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5968), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [241113] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5543), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3652), 2, + STATE(5349), 1, + sym_accumulate_aggregate, + STATE(3756), 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, - [236248] = 15, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5461), 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, + [241142] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(829), 1, + sym_accumulate_aggregate, + STATE(3757), 2, sym_comment, sym_include, - [236295] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5463), 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, + [241171] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3635), 1, + STATE(4270), 1, aux_sym_do_block_repeat1, - STATE(4349), 1, + STATE(4545), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(5863), 1, + STATE(6106), 1, sym_body, - STATE(3654), 2, + STATE(3758), 2, sym_comment, sym_include, - STATE(6101), 3, + STATE(6146), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [236338] = 11, - ACTIONS(67), 1, + [241214] = 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(5363), 1, + sym_identifier, + ACTIONS(5645), 1, + sym__terminator, + STATE(3649), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3759), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [241257] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5065), 1, + ACTIONS(5325), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3712), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3655), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3760), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_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, + [241296] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5545), 1, + ACTIONS(5325), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3823), 1, + STATE(3824), 1, aux_sym_for_phrase_repeat1, - STATE(3656), 2, + STATE(3761), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [236416] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [241335] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5260), 1, + ACTIONS(5323), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3657), 2, + STATE(3762), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [236455] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [241374] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5065), 1, + ACTIONS(5092), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3658), 2, + STATE(3826), 1, + aux_sym_for_phrase_repeat1, + STATE(3763), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [236494] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [241413] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5260), 1, + ACTIONS(5323), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3758), 1, + STATE(3833), 1, aux_sym_for_phrase_repeat1, - STATE(3659), 2, + STATE(3764), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [236533] = 11, - ACTIONS(67), 1, + [241452] = 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(5363), 1, + sym_identifier, + ACTIONS(5647), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3765), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [241495] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5085), 1, + ACTIONS(5092), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3703), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3660), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3766), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [236572] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [241534] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5104), 1, + ACTIONS(5649), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3763), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3661), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3767), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [236611] = 13, - ACTIONS(67), 1, + [241573] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5651), 1, + sym__terminator, + STATE(3841), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3768), 2, sym_comment, sym_include, - STATE(6101), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [236654] = 13, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [241616] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -249686,483 +254028,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5547), 1, + ACTIONS(5653), 1, sym__terminator, - STATE(3637), 1, + STATE(3848), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3663), 2, + STATE(3769), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [236697] = 11, - ACTIONS(67), 1, + [241659] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5204), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5655), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3664), 2, + STATE(3830), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3770), 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, - [236736] = 6, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [241702] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(973), 1, - sym_accumulate_aggregate, - STATE(3665), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5657), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3771), 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, - [236765] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [241745] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 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, + STATE(1838), 1, + sym__block_terminator, + STATE(3859), 1, + sym_on_error_phrase, + STATE(3936), 1, + sym_on_quit_phrase, + STATE(4096), 1, + sym_on_stop_phrase, + STATE(4098), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5838), 1, sym_body, - STATE(3666), 2, + STATE(3772), 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, + [241792] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5204), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5659), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3792), 1, - aux_sym_for_phrase_repeat1, - STATE(3667), 2, + STATE(3724), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3773), 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, - [236847] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5453), 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, + [241831] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3684), 1, + STATE(3847), 1, aux_sym_do_block_repeat1, - STATE(4330), 1, + STATE(4545), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(5670), 1, + STATE(6106), 1, sym_body, - STATE(3669), 2, + STATE(3774), 2, sym_comment, sym_include, - STATE(5671), 3, + STATE(6146), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [236933] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [241874] = 15, 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(5104), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3670), 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, - [236972] = 15, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5172), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1681), 1, + STATE(2118), 1, sym__block_terminator, - STATE(3849), 1, + STATE(3855), 1, sym_on_error_phrase, - STATE(3926), 1, + STATE(3938), 1, sym_on_quit_phrase, - STATE(4051), 1, + STATE(4109), 1, sym_on_stop_phrase, - STATE(4149), 1, + STATE(4110), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6089), 1, + STATE(6187), 1, sym_body, - STATE(3671), 2, + STATE(3775), 2, + sym_comment, + sym_include, + [241921] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_accumulate_aggregate, + STATE(3776), 2, sym_comment, sym_include, - [237019] = 11, - ACTIONS(67), 1, + ACTIONS(5463), 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, + [241950] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5661), 1, + sym__terminator, + STATE(3690), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3777), 2, + sym_comment, + sym_include, + ACTIONS(5453), 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, + [241989] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5549), 1, + ACTIONS(5140), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3672), 2, + STATE(3809), 1, + aux_sym_for_phrase_repeat1, + STATE(3778), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [237058] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242028] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4850), 1, - aux_sym_type_tuning_token1, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5469), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 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, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5663), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3779), 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, - [237099] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5453), 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, + [242067] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5553), 1, + ACTIONS(5665), 1, sym__terminator, - STATE(3720), 1, + STATE(3726), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3674), 2, + STATE(3780), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, - [237138] = 13, - ACTIONS(3), 1, + [242106] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3682), 1, + aux_sym_do_block_repeat1, + STATE(4381), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5536), 1, + sym_body, + 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, - [237181] = 13, - ACTIONS(67), 1, + STATE(5537), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [242149] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3782), 2, + sym_comment, + sym_include, + ACTIONS(192), 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, + [242176] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3662), 1, + STATE(4270), 1, aux_sym_do_block_repeat1, - STATE(4358), 1, + STATE(4286), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(6008), 1, + STATE(6112), 1, sym_body, - STATE(3676), 2, + STATE(3783), 2, sym_comment, sym_include, - STATE(6078), 3, + STATE(6119), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [237224] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242219] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(4325), 1, + STATE(3647), 1, aux_sym_do_block_repeat1, - STATE(4358), 1, + STATE(4286), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(6008), 1, + STATE(6112), 1, sym_body, - STATE(3677), 2, + STATE(3784), 2, sym_comment, sym_include, - STATE(6078), 3, + STATE(6119), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [237267] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242262] = 15, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(582), 1, - sym_accumulate_aggregate, - STATE(3678), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + STATE(1802), 1, + sym__block_terminator, + STATE(3888), 1, + sym_on_error_phrase, + STATE(3950), 1, + sym_on_quit_phrase, + STATE(4156), 1, + aux_sym_repeat_statement_repeat1, + STATE(4157), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5850), 1, + sym_body, + STATE(3785), 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, - [237296] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242309] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5089), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5667), 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, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3786), 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(5453), 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, + [242348] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -250171,190 +254547,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5557), 1, + ACTIONS(5669), 1, sym__terminator, - STATE(3637), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3680), 2, + STATE(3787), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [237378] = 15, - ACTIONS(67), 1, + [242391] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5671), 1, + sym__terminator, + STATE(3741), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3788), 2, sym_comment, sym_include, - [237425] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [242434] = 11, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5559), 1, + ACTIONS(5673), 1, sym__terminator, - STATE(3741), 1, + STATE(3846), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3683), 2, + STATE(3789), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, - [237507] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242473] = 11, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, - sym_identifier, - ACTIONS(5561), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5675), 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, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3790), 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(5453), 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, + [242512] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5567), 1, + STATE(654), 1, sym_accumulate_aggregate, - STATE(3686), 2, + STATE(3791), 2, sym_comment, sym_include, - ACTIONS(5427), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -250365,135 +254677,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [237622] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242541] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5677), 1, + sym__terminator, + ACTIONS(5682), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5685), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5688), 1, aux_sym_variable_tuning_token8, - ACTIONS(5565), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3687), 2, + STATE(3792), 3, sym_comment, sym_include, - ACTIONS(5441), 5, + aux_sym_variable_definition_repeat2, + ACTIONS(5679), 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, + [242578] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5089), 1, + ACTIONS(5100), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3688), 2, + STATE(3793), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [237700] = 13, - ACTIONS(3), 1, + [242617] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + STATE(932), 1, + sym_accumulate_aggregate, + STATE(3794), 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(5463), 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, + [242646] = 6, 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(4414), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(6096), 1, - sym_body, - STATE(3690), 2, - sym_comment, - sym_include, - STATE(5631), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [237786] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5224), 1, + STATE(810), 1, sym_accumulate_aggregate, - STATE(3691), 2, + STATE(3795), 2, sym_comment, sym_include, - ACTIONS(5427), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -250504,108 +254778,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [237815] = 13, - ACTIONS(67), 1, + [242675] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5691), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3796), 2, + sym_comment, + sym_include, + ACTIONS(5453), 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, + [242714] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4378), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(6115), 1, - sym_body, - STATE(3692), 2, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5693), 1, + sym__terminator, + STATE(3792), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3797), 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, + ACTIONS(5453), 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, + [242753] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5415), 1, - sym_identifier, - ACTIONS(5569), 1, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5695), 1, sym__terminator, - 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, + STATE(3851), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3798), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(5795), 2, - sym_qualified_name, - sym_member_access, - [237901] = 12, - ACTIONS(67), 1, + ACTIONS(5453), 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, + [242792] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5100), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3745), 1, + aux_sym_for_phrase_repeat1, + STATE(3799), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [242831] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3800), 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, + ACTIONS(5697), 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, + [242858] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5104), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3625), 1, + aux_sym_for_phrase_repeat1, + STATE(3801), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [242897] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(978), 1, + STATE(802), 1, sym_accumulate_aggregate, - STATE(3695), 2, + STATE(3802), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5463), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -250616,451 +254963,528 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [237971] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242926] = 11, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5575), 1, + ACTIONS(5699), 1, sym__terminator, - STATE(3616), 1, + STATE(3704), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3697), 2, + STATE(3803), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, - [238053] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [242965] = 6, 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(5577), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3698), 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, - [238092] = 13, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5579), 1, - sym__terminator, - 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, + STATE(795), 1, + sym_accumulate_aggregate, + STATE(3804), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [238135] = 13, - ACTIONS(3), 1, + ACTIONS(5463), 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, + [242994] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5581), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5279), 1, sym__terminator, - 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, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3747), 1, + aux_sym_for_phrase_repeat1, + STATE(3805), 2, sym_comment, sym_include, - 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [243033] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5154), 1, + ACTIONS(5182), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5156), 1, + ACTIONS(5184), 1, aux_sym_do_tuning_token1, - STATE(3581), 1, + STATE(3783), 1, aux_sym_do_block_repeat1, - STATE(4414), 1, + STATE(4500), 1, sym_stop_after_phrase, - STATE(4926), 1, + STATE(4952), 1, sym_do_tuning, - STATE(6096), 1, + STATE(6019), 1, sym_body, - STATE(3701), 2, + STATE(3806), 2, sym_comment, sym_include, - STATE(5631), 3, + STATE(6020), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [238221] = 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(5583), 1, - sym__terminator, - 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, - 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, + [243076] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5254), 1, + ACTIONS(5104), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3703), 2, + STATE(3807), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238303] = 13, - ACTIONS(3), 1, + [243115] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5587), 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(3704), 2, + STATE(787), 1, + sym_accumulate_aggregate, + STATE(3808), 2, sym_comment, sym_include, - 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(5463), 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, + [243144] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5200), 1, + ACTIONS(5279), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3642), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3705), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3809), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238385] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [243183] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5589), 1, + ACTIONS(5701), 1, sym__terminator, - STATE(3790), 1, + STATE(3792), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3706), 2, + STATE(3810), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, + [243222] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_accumulate_aggregate, + STATE(3811), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [243251] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5200), 1, + ACTIONS(5142), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3707), 2, + STATE(3812), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238463] = 11, - ACTIONS(67), 1, + [243290] = 15, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2229), 1, + sym__block_terminator, + STATE(3921), 1, + sym_on_error_phrase, + STATE(3984), 1, + sym_on_quit_phrase, + STATE(4225), 1, + sym_on_stop_phrase, + STATE(4227), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5518), 1, + sym_body, + STATE(3813), 2, + sym_comment, + sym_include, + [243337] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5703), 1, + sym_identifier, + ACTIONS(5708), 1, + aux_sym_scope_tuning_token1, + STATE(5067), 1, + sym_object_access, + STATE(5122), 1, + sym_assignment, + ACTIONS(5706), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(5862), 2, + sym_qualified_name, + sym_member_access, + STATE(3814), 3, + sym_comment, + sym_include, + aux_sym_assign_statement_repeat1, + [243376] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3815), 2, + sym_comment, + sym_include, + ACTIONS(5711), 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, + [243403] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5591), 1, + ACTIONS(5204), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, sym_query_tuning, - STATE(3643), 1, + STATE(3816), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [243442] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5140), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3708), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3817), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238502] = 11, - ACTIONS(67), 1, + [243481] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(679), 1, + sym_accumulate_aggregate, + STATE(3818), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [243510] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5593), 1, + ACTIONS(5713), 1, sym__terminator, - STATE(3720), 1, + STATE(3792), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3709), 2, + STATE(3819), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, + [243549] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5591), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3710), 2, + STATE(5386), 1, + sym_accumulate_aggregate, + STATE(3820), 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, - [238580] = 6, - ACTIONS(67), 1, + ACTIONS(5461), 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, + [243578] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4373), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5750), 1, + sym_body, + STATE(3821), 2, + sym_comment, + sym_include, + STATE(5785), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [243621] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(5309), 1, sym_accumulate_aggregate, - STATE(3711), 2, + STATE(3822), 2, sym_comment, sym_include, - ACTIONS(5429), 10, + ACTIONS(5461), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -251071,211 +255495,267 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [238609] = 11, - ACTIONS(67), 1, + [243650] = 15, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5172), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(3890), 1, + sym_on_error_phrase, + STATE(3970), 1, + sym_on_quit_phrase, + STATE(4131), 1, + aux_sym_repeat_statement_repeat1, + STATE(4132), 1, + sym_on_stop_phrase, + STATE(4868), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5966), 1, + sym_body, + STATE(3823), 2, + sym_comment, + sym_include, + [243697] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5715), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3824), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [243736] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5715), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3751), 1, + aux_sym_for_phrase_repeat1, + STATE(3825), 2, + sym_comment, + sym_include, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [243775] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5246), 1, + ACTIONS(5255), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3712), 2, + STATE(3826), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238648] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [243814] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5246), 1, + ACTIONS(5255), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3775), 1, + STATE(3749), 1, aux_sym_for_phrase_repeat1, - STATE(3713), 2, + STATE(3827), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238687] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [243853] = 11, 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(4510), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5589), 1, - sym_body, - STATE(3714), 2, - sym_comment, - sym_include, - STATE(5976), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [238730] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5067), 1, + ACTIONS(5717), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3777), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3715), 2, + STATE(3474), 1, + sym_query_tuning, + STATE(3828), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [238769] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [243892] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3835), 1, - aux_sym_do_block_repeat1, - STATE(4510), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5589), 1, - sym_body, - STATE(3716), 2, + ACTIONS(5455), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5457), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5459), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5719), 1, + sym__terminator, + STATE(3598), 1, + aux_sym_variable_definition_repeat2, + STATE(3994), 1, + sym_variable_tuning, + STATE(3829), 2, sym_comment, sym_include, - STATE(5976), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [238812] = 15, - ACTIONS(67), 1, + ACTIONS(5453), 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, + [243931] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5144), 1, - aux_sym_on_error_phrase_token1, - STATE(2381), 1, - sym__block_terminator, - STATE(3865), 1, - sym_on_error_phrase, - STATE(3945), 1, - sym_on_quit_phrase, - 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5721), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3830), 2, sym_comment, sym_include, - [238859] = 11, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [243974] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5067), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5723), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3718), 2, + STATE(3735), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3831), 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, - [238898] = 13, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [244017] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251284,83 +255764,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5595), 1, + ACTIONS(5725), 1, sym__terminator, - STATE(3637), 1, + STATE(3734), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3719), 2, + STATE(3832), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [238941] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [244060] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5597), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5727), 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, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3833), 2, 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(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [244099] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5611), 1, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5727), 1, sym__terminator, - STATE(3794), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3721), 2, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3767), 1, + aux_sym_for_phrase_repeat1, + STATE(3834), 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, - [239017] = 13, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [244138] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251369,28 +255850,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5613), 1, + ACTIONS(5729), 1, sym__terminator, - STATE(3781), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3722), 2, + STATE(3835), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [239060] = 13, + [244181] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251399,111 +255880,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5615), 1, + ACTIONS(5731), 1, sym__terminator, - STATE(3637), 1, + STATE(3723), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3723), 2, + STATE(3836), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [239103] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [244224] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(970), 1, - sym_accumulate_aggregate, - STATE(3724), 2, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5204), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3474), 1, + sym_query_tuning, + STATE(3742), 1, + aux_sym_for_phrase_repeat1, + STATE(3837), 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, - [239132] = 11, - ACTIONS(67), 1, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [244263] = 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(5363), 1, + sym_identifier, + ACTIONS(5733), 1, + sym__terminator, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3838), 2, + sym_comment, + sym_include, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [244306] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5617), 1, + ACTIONS(5735), 1, sym__terminator, - STATE(3766), 1, + STATE(3819), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3725), 2, + STATE(3839), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, + [244345] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(2501), 1, + aux_sym_using_statement_token1, + ACTIONS(2505), 1, + aux_sym_query_tuning_token5, + ACTIONS(5124), 1, + sym__terminator, + STATE(3277), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3474), 1, + sym_query_tuning, + STATE(3840), 2, sym_comment, sym_include, - [239218] = 13, + ACTIONS(2499), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [244384] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251512,2901 +256024,2597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5363), 1, sym_identifier, - ACTIONS(5619), 1, + ACTIONS(5737), 1, sym__terminator, - STATE(3575), 1, + STATE(3584), 1, aux_sym_var_statement_repeat1, - STATE(4932), 1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, sym_assignment, - STATE(4937), 1, + STATE(5196), 1, sym_variable, - STATE(5117), 1, - sym_object_access, - STATE(3727), 2, + STATE(3841), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5534), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, + STATE(6071), 2, sym_qualified_name, sym_member_access, - [239261] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(617), 1, - sym_accumulate_aggregate, - STATE(3728), 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, - [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(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(4369), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5599), 1, - sym_body, - STATE(3730), 2, - sym_comment, - sym_include, - STATE(5597), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [239360] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [244427] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(3731), 2, - sym_comment, - sym_include, - 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_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2501), 1, aux_sym_using_statement_token1, - ACTIONS(2489), 1, + ACTIONS(2505), 1, aux_sym_query_tuning_token5, - ACTIONS(5621), 1, + ACTIONS(5124), 1, sym__terminator, - STATE(3271), 1, + STATE(3277), 1, sym_using, - STATE(3454), 1, + STATE(3474), 1, sym_query_tuning, - STATE(3672), 1, + STATE(3728), 1, aux_sym_for_phrase_repeat1, - STATE(3732), 2, + STATE(3842), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(2499), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [239426] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_accumulate_aggregate, - STATE(3733), 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, - [239455] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [244466] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(3734), 2, - sym_comment, - sym_include, - ACTIONS(5623), 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, - [239482] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5625), 1, + ACTIONS(5739), 1, sym__terminator, - STATE(3674), 1, + STATE(3779), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3735), 2, + STATE(3843), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, + [244505] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym_accumulate_aggregate, + STATE(3844), 2, + sym_comment, + sym_include, + ACTIONS(5463), 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, + [244534] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(2412), 1, - sym__block_terminator, - 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, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(3725), 1, + aux_sym_do_block_repeat1, + STATE(4538), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5981), 1, sym_body, - STATE(3736), 2, + STATE(3845), 2, sym_comment, sym_include, - [239568] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6157), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [244577] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5627), 1, + ACTIONS(5741), 1, sym__terminator, - STATE(3652), 1, + STATE(3792), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3737), 2, + STATE(3846), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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, + [244616] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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(1607), 1, - sym__block_terminator, - STATE(3882), 1, - sym_on_error_phrase, - STATE(3949), 1, - sym_on_quit_phrase, - STATE(4217), 1, - aux_sym_repeat_statement_repeat1, - STATE(4218), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5909), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5182), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5184), 1, + aux_sym_do_tuning_token1, + STATE(4270), 1, + aux_sym_do_block_repeat1, + STATE(4538), 1, + sym_stop_after_phrase, + STATE(4952), 1, + sym_do_tuning, + STATE(5981), 1, sym_body, - STATE(3738), 2, + STATE(3847), 2, sym_comment, sym_include, - [239654] = 11, - ACTIONS(67), 1, + STATE(6157), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [244659] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5629), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5743), 1, sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3739), 2, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3848), 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, - [239693] = 11, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [244702] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5631), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5745), 1, sym__terminator, - STATE(3795), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3740), 2, + STATE(3743), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3849), 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, - [239732] = 11, - ACTIONS(67), 1, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [244745] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5633), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5363), 1, + sym_identifier, + ACTIONS(5747), 1, sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3741), 2, + STATE(3584), 1, + aux_sym_var_statement_repeat1, + STATE(4968), 1, + sym_object_access, + STATE(5195), 1, + sym_assignment, + STATE(5196), 1, + sym_variable, + STATE(3850), 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, - [239771] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5534), 2, + sym_function_call, + sym_new_expression, + STATE(6071), 2, + sym_qualified_name, + sym_member_access, + [244788] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5455), 1, aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, + ACTIONS(5457), 1, aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5459), 1, aux_sym_variable_tuning_token8, - ACTIONS(5635), 1, + ACTIONS(5749), 1, sym__terminator, - STATE(3687), 1, + STATE(3792), 1, aux_sym_variable_definition_repeat2, - STATE(3984), 1, + STATE(3994), 1, sym_variable_tuning, - STATE(3742), 2, + STATE(3851), 2, sym_comment, sym_include, - ACTIONS(5441), 5, + ACTIONS(5453), 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(73), 1, - anon_sym_LBRACE, - STATE(790), 1, - sym_accumulate_aggregate, - STATE(3743), 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, - [239839] = 6, - ACTIONS(67), 1, + [244827] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(454), 1, - sym_accumulate_aggregate, - STATE(3744), 2, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2724), 1, + aux_sym_widget_field_token1, + STATE(1733), 1, + sym_do_block, + STATE(4245), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(3852), 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, - [239868] = 6, - ACTIONS(67), 1, + [244871] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_accumulate_aggregate, - STATE(3745), 2, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2685), 1, + aux_sym_widget_field_token1, + STATE(1989), 1, + sym_do_block, + STATE(4065), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(3853), 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, - [239897] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [244915] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(3746), 2, - sym_comment, - sym_include, - ACTIONS(5637), 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, - [239924] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5276), 1, + ACTIONS(5751), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3751), 1, - aux_sym_for_phrase_repeat1, - STATE(3747), 2, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5199), 1, + aux_sym_workfile_definition_repeat3, + STATE(5200), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3854), 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, - [239963] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [244957] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_accumulate_aggregate, - STATE(3748), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(2060), 1, + sym__block_terminator, + STATE(3983), 1, + sym_on_quit_phrase, + STATE(4118), 1, + sym_on_stop_phrase, + STATE(4205), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5955), 1, + sym_body, + STATE(3855), 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, - [239992] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [245001] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5753), 1, aux_sym_variable_tuning_token8, - ACTIONS(5639), 1, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5759), 1, sym__terminator, - STATE(3801), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3749), 2, + STATE(3869), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5077), 1, + aux_sym_workfile_definition_repeat3, + STATE(5080), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3856), 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, - [240031] = 11, - ACTIONS(67), 1, + [245043] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5641), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3750), 2, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2677), 1, + aux_sym_widget_field_token1, + STATE(2053), 1, + sym_do_block, + STATE(4129), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(3857), 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, - [240070] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [245087] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3858), 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(5761), 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, + [245113] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5757), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1925), 1, + STATE(1802), 1, sym__block_terminator, - STATE(3852), 1, - sym_on_error_phrase, - STATE(3930), 1, + STATE(3950), 1, sym_on_quit_phrase, - STATE(4047), 1, - sym_on_stop_phrase, - STATE(4048), 1, + STATE(4156), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4157), 1, + sym_on_stop_phrase, + STATE(5299), 1, sym_repeat_tuning, - STATE(5512), 1, + STATE(5850), 1, sym_body, - STATE(3752), 2, + STATE(3859), 2, sym_comment, sym_include, - [240156] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [245157] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_accumulate_aggregate, - STATE(3753), 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, - [240185] = 15, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(3856), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1866), 1, - sym__block_terminator, - STATE(3860), 1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4632), 1, sym_on_error_phrase, - STATE(3951), 1, + STATE(5098), 1, sym_on_quit_phrase, - STATE(4103), 1, - aux_sym_repeat_statement_repeat1, - STATE(4104), 1, + STATE(5818), 1, sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6123), 1, - sym_body, - STATE(3754), 2, + ACTIONS(4462), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3860), 2, sym_comment, sym_include, - [240232] = 15, - ACTIONS(67), 1, + [245199] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2675), 1, + aux_sym_widget_field_token1, + STATE(1632), 1, + sym_do_block, + STATE(4100), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(3861), 2, + sym_comment, + sym_include, + [245243] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5144), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, aux_sym_on_error_phrase_token1, - STATE(2291), 1, - sym__block_terminator, - STATE(3851), 1, - sym_on_error_phrase, - STATE(3954), 1, + STATE(3970), 1, sym_on_quit_phrase, - STATE(4102), 1, + STATE(4131), 1, aux_sym_repeat_statement_repeat1, - STATE(4106), 1, + STATE(4132), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(4868), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5963), 1, + STATE(5966), 1, sym_body, - STATE(3755), 2, + STATE(3862), 2, sym_comment, sym_include, - [240279] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [245287] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5643), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5763), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3804), 1, - aux_sym_for_phrase_repeat1, - STATE(3756), 2, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5197), 1, + aux_sym_workfile_definition_repeat3, + STATE(5198), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3863), 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, - [240318] = 13, + [245329] = 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, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 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, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(5765), 1, + aux_sym_widget_field_token1, + STATE(1659), 1, + sym_do_block, + STATE(4089), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(3864), 2, sym_comment, sym_include, - 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_SLASH, + [245373] = 14, 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(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, - ACTIONS(2483), 5, - aux_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_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(3454), 1, - sym_query_tuning, - STATE(3827), 1, - aux_sym_for_phrase_repeat1, - STATE(3759), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1526), 1, + sym__block_terminator, + STATE(3959), 1, + sym_on_quit_phrase, + STATE(4117), 1, + sym_on_stop_phrase, + STATE(4120), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5938), 1, + sym_body, + STATE(3865), 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, - [240439] = 13, - ACTIONS(3), 1, + [245417] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5649), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5767), 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(3760), 2, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4839), 1, + aux_sym_workfile_definition_repeat3, + STATE(4840), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3866), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [240482] = 13, - ACTIONS(3), 1, + [245459] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4601), 1, + sym_on_error_phrase, + STATE(4804), 1, + sym_on_quit_phrase, + STATE(5991), 1, + sym_on_stop_phrase, + ACTIONS(4554), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3867), 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, + [245501] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_accumulate_aggregate, - STATE(3762), 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, - [240554] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4559), 1, + sym_on_error_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4701), 1, + sym_on_quit_phrase, + STATE(5651), 1, + sym_on_stop_phrase, + ACTIONS(5769), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3868), 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, + [245543] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5325), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5771), 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, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5036), 1, + sym_type_tuning, + STATE(5037), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3869), 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, + [245585] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3765), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1838), 1, + sym__block_terminator, + STATE(3936), 1, + sym_on_quit_phrase, + STATE(4096), 1, + sym_on_stop_phrase, + STATE(4098), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5838), 1, + sym_body, + STATE(3870), 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, - [240671] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [245629] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5753), 1, aux_sym_variable_tuning_token8, - ACTIONS(5653), 1, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5773), 1, sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3766), 2, + STATE(3893), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5129), 1, + aux_sym_workfile_definition_repeat3, + STATE(5130), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3871), 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, + [245671] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(3872), 2, sym_comment, sym_include, - ACTIONS(2483), 5, + ACTIONS(5775), 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, - [240749] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [245697] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(819), 1, - sym_accumulate_aggregate, - STATE(3768), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(3958), 1, + sym_on_quit_phrase, + STATE(4216), 1, + aux_sym_repeat_statement_repeat1, + STATE(4218), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, + sym_body, + STATE(3873), 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, - [240778] = 13, - ACTIONS(3), 1, + [245741] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5655), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5777), 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, + STATE(3914), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5207), 1, + sym_type_tuning, + STATE(5211), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3874), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [240821] = 13, + [245783] = 11, 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, + ACTIONS(5779), 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, + ACTIONS(5781), 1, + anon_sym_RPAREN, + ACTIONS(5787), 1, + aux_sym__function_argument_with_mode_token2, + STATE(4629), 1, + sym_function_parameter_mode, + STATE(5342), 1, + sym_function_parameter, + ACTIONS(5785), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(3875), 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(5783), 3, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token3, + [245821] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5220), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3710), 1, - aux_sym_for_phrase_repeat1, - STATE(3771), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(2118), 1, + sym__block_terminator, + STATE(3938), 1, + sym_on_quit_phrase, + STATE(4109), 1, + sym_on_stop_phrase, + STATE(4110), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6187), 1, + sym_body, + STATE(3876), 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, - [240903] = 13, + [245865] = 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, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - 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(3772), 2, - sym_comment, - sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [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, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2728), 1, + aux_sym_widget_field_token1, + STATE(1765), 1, + sym_do_block, + STATE(4214), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(3877), 2, sym_comment, sym_include, - STATE(5925), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [240989] = 13, + [245909] = 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, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - 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(3774), 2, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2683), 1, + aux_sym_widget_field_token1, + STATE(4171), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(4920), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(3878), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [241032] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [245953] = 7, 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(5663), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3775), 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, - [241071] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3879), 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, - [241110] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5789), 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, + [245983] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5288), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5791), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3777), 2, + STATE(3863), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5186), 1, + sym_type_tuning, + STATE(5187), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3880), 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, - [241149] = 11, - ACTIONS(67), 1, + [246025] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2671), 1, + aux_sym_widget_field_token1, + STATE(1522), 1, + sym_do_block, + STATE(4116), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(3881), 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, + [246069] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5220), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3779), 2, + ACTIONS(4668), 1, + aux_sym_method_definition_token1, + ACTIONS(5793), 1, + aux_sym__block_terminator_token1, + ACTIONS(5795), 1, + aux_sym_variable_definition_token1, + ACTIONS(5797), 1, + aux_sym_variable_definition_token2, + STATE(3903), 1, + aux_sym_interface_body_repeat1, + STATE(3882), 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, - [241227] = 13, - ACTIONS(3), 1, + STATE(4981), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [246105] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5665), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5799), 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, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5185), 1, + sym_type_tuning, + STATE(5205), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3883), 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, + [246147] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(839), 1, + sym__namedot, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(843), 1, + sym__namedoublecolon, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + STATE(4572), 1, + aux_sym_object_access_repeat1, + STATE(4714), 1, + aux_sym_qualified_name_repeat1, + STATE(4719), 1, + aux_sym_member_access_repeat1, + ACTIONS(5801), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(3884), 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, + [246189] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5669), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5803), 1, sym__terminator, - 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, + STATE(3866), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4785), 1, + sym_type_tuning, + STATE(4787), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3885), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [241356] = 13, - ACTIONS(3), 1, + [246231] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5671), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5805), 1, sym__terminator, - 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, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4780), 1, + aux_sym_workfile_definition_repeat3, + STATE(4781), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3886), 2, sym_comment, sym_include, - STATE(5480), 2, - sym_function_call, - sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [241399] = 13, + [246273] = 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, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 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, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2653), 1, + aux_sym_widget_field_token1, + STATE(1993), 1, + sym_do_block, + STATE(4229), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + STATE(3887), 2, sym_comment, sym_include, - 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, + [246317] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5675), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3785), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1769), 1, + sym__block_terminator, + STATE(3961), 1, + sym_on_quit_phrase, + STATE(4211), 1, + aux_sym_repeat_statement_repeat1, + STATE(4212), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5998), 1, + sym_body, + STATE(3888), 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, - [241481] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246361] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(825), 1, - sym_accumulate_aggregate, - STATE(3786), 2, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5807), 1, + sym__terminator, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4772), 1, + sym_type_tuning, + STATE(4773), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3889), 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, - [241510] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246403] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(636), 1, - sym_accumulate_aggregate, - STATE(3787), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(3999), 1, + sym_on_quit_phrase, + STATE(4166), 1, + aux_sym_repeat_statement_repeat1, + STATE(4169), 1, + sym_on_stop_phrase, + STATE(4914), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6094), 1, + sym_body, + STATE(3890), 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, - [241539] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246447] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5677), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3788), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4634), 1, + sym_on_error_phrase, + STATE(5047), 1, + sym_on_quit_phrase, + STATE(5974), 1, + sym_on_stop_phrase, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3891), 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, - [241578] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246489] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4646), 1, + sym_on_error_phrase, + STATE(4777), 1, + sym_on_quit_phrase, + STATE(5954), 1, + sym_on_stop_phrase, + ACTIONS(4494), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3892), 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, - [241617] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246531] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5753), 1, aux_sym_variable_tuning_token8, - ACTIONS(5679), 1, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5809), 1, sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3790), 2, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5082), 1, + sym_type_tuning, + STATE(5083), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3893), 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, - [241656] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246573] = 13, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5621), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3792), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4591), 1, + sym_on_error_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4710), 1, + sym_on_quit_phrase, + STATE(5703), 1, + sym_on_stop_phrase, + ACTIONS(4515), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3894), 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, - [241724] = 13, - ACTIONS(3), 1, + [246615] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, - sym_identifier, - ACTIONS(5681), 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(3793), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4651), 1, + sym_on_error_phrase, + STATE(5049), 1, + sym_on_quit_phrase, + STATE(5967), 1, + sym_on_stop_phrase, + ACTIONS(4492), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3895), 2, sym_comment, sym_include, - 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, + [246657] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5683), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3794), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(2177), 1, + sym__block_terminator, + STATE(3953), 1, + sym_on_quit_phrase, + STATE(4170), 1, + aux_sym_repeat_statement_repeat1, + STATE(4172), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5863), 1, + sym_body, + STATE(3896), 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, - [241806] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [246701] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5445), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5447), 1, + ACTIONS(5753), 1, aux_sym_variable_tuning_token8, - ACTIONS(5685), 1, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5811), 1, sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3795), 2, + STATE(3883), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5176), 1, + sym_type_tuning, + STATE(5177), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3897), 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, - [241845] = 13, + [246743] = 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, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 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, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(5813), 1, + aux_sym_widget_field_token1, + STATE(1715), 1, + sym_do_block, + STATE(4262), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(3898), 2, sym_comment, sym_include, - 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, + [246787] = 13, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_accumulate_aggregate, - STATE(3797), 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, - [241917] = 13, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4565), 1, + sym_on_error_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4726), 1, + sym_on_quit_phrase, + STATE(5779), 1, + sym_on_stop_phrase, + ACTIONS(4548), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3899), 2, sym_comment, sym_include, - 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, + [246829] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 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(3773), 1, - aux_sym_do_block_repeat1, - STATE(4521), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5591), 1, + STATE(2229), 1, + sym__block_terminator, + STATE(3984), 1, + sym_on_quit_phrase, + STATE(4225), 1, + sym_on_stop_phrase, + STATE(4227), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5518), 1, sym_body, - STATE(3799), 2, + STATE(3900), 2, sym_comment, sym_include, - STATE(5899), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [242003] = 13, + [246873] = 11, 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, + ACTIONS(5779), 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(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(5693), 1, - sym__terminator, - STATE(3720), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3801), 2, + ACTIONS(5787), 1, + aux_sym__function_argument_with_mode_token2, + ACTIONS(5815), 1, + anon_sym_RPAREN, + STATE(4629), 1, + sym_function_parameter_mode, + STATE(5495), 1, + sym_function_parameter, + ACTIONS(5785), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(3901), 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, - [242085] = 13, + ACTIONS(5783), 3, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token3, + [246911] = 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, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(5695), 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(3802), 2, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2687), 1, + aux_sym_widget_field_token1, + STATE(4183), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(4956), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(3902), 2, sym_comment, sym_include, - 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, + [246955] = 10, 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(5697), 1, - sym__terminator, - STATE(3739), 1, - aux_sym_variable_definition_repeat2, - STATE(3984), 1, - sym_variable_tuning, - STATE(3803), 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, - [242167] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5699), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3804), 2, + ACTIONS(4668), 1, + aux_sym_method_definition_token1, + ACTIONS(5795), 1, + aux_sym_variable_definition_token1, + ACTIONS(5797), 1, + aux_sym_variable_definition_token2, + ACTIONS(5817), 1, + aux_sym__block_terminator_token1, + STATE(3926), 1, + aux_sym_interface_body_repeat1, + STATE(3903), 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, - [242206] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4981), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [246991] = 14, 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(4521), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5591), 1, - sym_body, - STATE(3805), 2, - sym_comment, - sym_include, - STATE(5899), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [242249] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 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(4265), 1, - sym_stop_after_phrase, - STATE(4325), 1, - aux_sym_do_block_repeat1, - STATE(4926), 1, - sym_do_tuning, - STATE(6072), 1, + STATE(3957), 1, + sym_on_quit_phrase, + STATE(4092), 1, + sym_on_stop_phrase, + STATE(4103), 1, + aux_sym_repeat_statement_repeat1, + STATE(4657), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5865), 1, sym_body, - STATE(3806), 2, + STATE(3904), 2, sym_comment, sym_include, - STATE(6069), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [242292] = 6, - ACTIONS(67), 1, + [247035] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5230), 1, - sym_accumulate_aggregate, - STATE(3807), 2, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(5819), 1, + aux_sym_widget_field_token1, + STATE(1953), 1, + sym_do_block, + STATE(4079), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(3905), 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, + [247079] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5116), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5821), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3808), 2, + STATE(3854), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5121), 1, + aux_sym_workfile_definition_repeat3, + STATE(5133), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3906), 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, - [242360] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [247121] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(895), 1, - sym_accumulate_aggregate, - STATE(3809), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4561), 1, + sym_on_error_phrase, + STATE(4592), 1, + sym_sort_clause, + STATE(4728), 1, + sym_on_quit_phrase, + STATE(5790), 1, + sym_on_stop_phrase, + ACTIONS(4541), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3907), 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, + [247163] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5240), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3810), 2, + ACTIONS(4858), 1, + aux_sym__function_argument_with_mode_token4, + STATE(4181), 1, + sym_type_tuning, + STATE(6174), 1, + sym_argument_pass_type, + ACTIONS(4852), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4854), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3908), 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, - [242428] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [247199] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(889), 1, - sym_accumulate_aggregate, - STATE(3811), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1560), 1, + sym__block_terminator, + STATE(3978), 1, + sym_on_quit_phrase, + STATE(4144), 1, + sym_on_stop_phrase, + STATE(4145), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6010), 1, + sym_body, + STATE(3909), 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, + [247243] = 5, 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, + STATE(3910), 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(3601), 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, + [247269] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5240), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3630), 1, - aux_sym_for_phrase_repeat1, - STATE(3813), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(2215), 1, + sym__block_terminator, + STATE(3960), 1, + sym_on_quit_phrase, + STATE(4228), 1, + aux_sym_repeat_statement_repeat1, + STATE(4232), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5642), 1, + sym_body, + STATE(3911), 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, - [242539] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [247313] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(880), 1, - sym_accumulate_aggregate, - STATE(3814), 2, + ACTIONS(3856), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3860), 1, + aux_sym_sort_clause_token1, + ACTIONS(3862), 1, + aux_sym_sort_clause_token2, + STATE(4204), 1, + aux_sym_for_phrase_repeat2, + STATE(4592), 1, + sym_sort_clause, + STATE(4627), 1, + sym_on_error_phrase, + STATE(4711), 1, + sym_on_quit_phrase, + STATE(5705), 1, + sym_on_stop_phrase, + ACTIONS(5823), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3912), 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, + [247355] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5825), 1, + sym__terminator, + STATE(3886), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4723), 1, + sym_type_tuning, + STATE(4725), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3913), 2, + sym_comment, + sym_include, + [247397] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5114), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5827), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3644), 1, - aux_sym_for_phrase_repeat1, - STATE(3815), 2, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(5143), 1, + sym_type_tuning, + STATE(5145), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3914), 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, - [242607] = 6, - ACTIONS(67), 1, + [247439] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(869), 1, - sym_accumulate_aggregate, - STATE(3816), 2, + STATE(3915), 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, - [242636] = 13, + ACTIONS(3603), 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, + [247465] = 5, 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, + STATE(3916), 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(5829), 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, + [247491] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 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, + STATE(2279), 1, + sym__block_terminator, + STATE(3962), 1, + sym_on_quit_phrase, + STATE(4242), 1, + sym_on_stop_phrase, + STATE(4248), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6035), 1, sym_body, - STATE(3818), 2, + STATE(3917), 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, + [247535] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5831), 1, + sym__terminator, + STATE(3889), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4818), 1, + aux_sym_workfile_definition_repeat3, + STATE(4819), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3918), 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, + [247577] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5114), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5833), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3820), 2, + STATE(4154), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4820), 1, + sym_type_tuning, + STATE(4821), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3919), 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, - [242804] = 13, - ACTIONS(3), 1, + [247619] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(839), 1, + sym__namedot, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(843), 1, + sym__namedoublecolon, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + STATE(4572), 1, + aux_sym_object_access_repeat1, + STATE(4714), 1, + aux_sym_qualified_name_repeat1, + STATE(4719), 1, + aux_sym_member_access_repeat1, + ACTIONS(5835), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(3920), 2, sym_comment, sym_include, - 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, + [247661] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 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, + STATE(2288), 1, + sym__block_terminator, + STATE(3939), 1, + sym_on_quit_phrase, + STATE(4069), 1, + sym_on_stop_phrase, + STATE(4071), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5693), 1, sym_body, - STATE(3822), 2, + STATE(3921), 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, + [247705] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5707), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3823), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(5837), 1, + aux_sym_widget_field_token1, + STATE(2222), 1, + sym_do_block, + STATE(4074), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + STATE(3922), 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, - [242929] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [247749] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5709), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3824), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(3943), 1, + sym_on_quit_phrase, + STATE(4070), 1, + sym_on_stop_phrase, + STATE(4073), 1, + aux_sym_repeat_statement_repeat1, + STATE(4789), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5599), 1, + sym_body, + STATE(3923), 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, - [242968] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [247793] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5711), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3825), 2, + STATE(3924), 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, - [243007] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5435), 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, + [247819] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5711), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3785), 1, - aux_sym_for_phrase_repeat1, - STATE(3826), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(4000), 1, + sym_on_quit_phrase, + STATE(4189), 1, + aux_sym_repeat_statement_repeat1, + STATE(4190), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6191), 1, + sym_body, + STATE(3925), 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, - [243046] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [247863] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5713), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3827), 2, + ACTIONS(5839), 1, + aux_sym__block_terminator_token1, + ACTIONS(5841), 1, + aux_sym_variable_definition_token1, + ACTIONS(5844), 1, + aux_sym_variable_definition_token2, + ACTIONS(5847), 1, + aux_sym_method_definition_token1, + STATE(3926), 3, 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, - [243085] = 11, - ACTIONS(67), 1, + aux_sym_interface_body_repeat1, + STATE(4981), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [247897] = 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(2647), 1, + sym_identifier, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(2730), 1, + aux_sym_widget_field_token1, + STATE(2280), 1, + sym_do_block, + STATE(4133), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + STATE(3927), 2, + sym_comment, + sym_include, + [247941] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5715), 1, + ACTIONS(5753), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5850), 1, sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3828), 2, + STATE(3919), 1, + aux_sym_workfile_definition_repeat2, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4864), 1, + aux_sym_workfile_definition_repeat3, + STATE(4866), 1, + sym_type_tuning, + STATE(5702), 1, + sym_field_definition, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(3928), 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, - [243124] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [247983] = 14, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(851), 1, - sym_accumulate_aggregate, - STATE(3829), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(3995), 1, + sym_on_quit_phrase, + STATE(4177), 1, + aux_sym_repeat_statement_repeat1, + STATE(4178), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6123), 1, + sym_body, + STATE(3929), 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, + [248027] = 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, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 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, + ACTIONS(2649), 1, + anon_sym_COMMA, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + ACTIONS(5852), 1, + aux_sym_widget_field_token1, + STATE(4197), 1, + aux_sym_on_statement_repeat2, + STATE(4322), 1, + aux_sym_on_statement_repeat1, + STATE(4986), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(3930), 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, + [248071] = 14, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5757), 1, + aux_sym_on_error_phrase_token1, + STATE(1857), 1, + sym__block_terminator, + STATE(3941), 1, + sym_on_quit_phrase, + STATE(4097), 1, + sym_on_stop_phrase, + STATE(4130), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5632), 1, + sym_body, + STATE(3931), 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, + [248115] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254415,6983 +258623,6260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(17), 1, aux_sym_scope_tuning_token1, - ACTIONS(5331), 1, + ACTIONS(5854), 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, + STATE(3574), 1, sym_object_access, - STATE(3832), 2, + STATE(3908), 1, + sym_qualified_name, + STATE(3932), 2, sym_comment, sym_include, - STATE(5480), 2, + STATE(5513), 2, sym_function_call, sym_new_expression, - STATE(6002), 2, - sym_qualified_name, - sym_member_access, - [243282] = 6, - ACTIONS(67), 1, + ACTIONS(5856), 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, + [248151] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(4189), 1, + aux_sym_repeat_statement_repeat1, + STATE(4190), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6191), 1, + sym_body, + STATE(3933), 2, + sym_comment, + sym_include, + [248192] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(840), 1, - sym_accumulate_aggregate, - STATE(3833), 2, + ACTIONS(3116), 1, + aux_sym_variable_definition_token2, + STATE(3934), 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, - [243311] = 13, + ACTIONS(3391), 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, + [248219] = 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(5331), 1, + ACTIONS(5779), 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, + ACTIONS(5787), 1, + aux_sym__function_argument_with_mode_token2, + STATE(4629), 1, + sym_function_parameter_mode, + STATE(5871), 1, + sym_function_parameter, + ACTIONS(5785), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(3935), 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(5783), 3, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token3, + [248254] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5858), 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(4471), 1, - sym_stop_after_phrase, - STATE(4926), 1, - sym_do_tuning, - STATE(5705), 1, + STATE(1802), 1, + sym__block_terminator, + STATE(4156), 1, + aux_sym_repeat_statement_repeat1, + STATE(4157), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5850), 1, sym_body, - STATE(3835), 2, + STATE(3936), 2, sym_comment, sym_include, - STATE(5944), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [243397] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [248295] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 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, + STATE(4070), 1, + sym_on_stop_phrase, + STATE(4073), 1, + aux_sym_repeat_statement_repeat1, + STATE(4789), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5599), 1, sym_body, - STATE(3836), 2, + STATE(3937), 2, sym_comment, sym_include, - STATE(5841), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [243440] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [248336] = 13, 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(5545), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3283), 1, - aux_sym_for_phrase_repeat1, - STATE(3454), 1, - sym_query_tuning, - STATE(3837), 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, - [243479] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2485), 1, - aux_sym_using_statement_token1, - ACTIONS(2489), 1, - aux_sym_query_tuning_token5, - ACTIONS(5715), 1, - sym__terminator, - STATE(3271), 1, - sym_using, - STATE(3454), 1, - sym_query_tuning, - STATE(3634), 1, - aux_sym_for_phrase_repeat1, - STATE(3838), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(2060), 1, + sym__block_terminator, + STATE(4118), 1, + sym_on_stop_phrase, + STATE(4205), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5955), 1, + sym_body, + STATE(3938), 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, - [243518] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [248377] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(831), 1, - sym_accumulate_aggregate, - STATE(3839), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(1950), 1, + sym__block_terminator, + STATE(4126), 1, + aux_sym_repeat_statement_repeat1, + STATE(4264), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5860), 1, + sym_body, + STATE(3939), 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, - [243547] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [248418] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5499), 1, + anon_sym_COMMA, + STATE(3972), 1, + aux_sym_inherits_repeat1, + STATE(3940), 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(5860), 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, + [248447] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5858), 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, + STATE(1838), 1, + sym__block_terminator, + STATE(4096), 1, sym_on_stop_phrase, - ACTIONS(4430), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3841), 2, + STATE(4098), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5838), 1, + sym_body, + STATE(3941), 2, sym_comment, sym_include, - [243625] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [248488] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5862), 1, + sym__integer_literal, + STATE(4466), 1, + sym_number_literal, + STATE(4523), 1, + sym__decimal_literal, + STATE(3942), 2, sym_comment, sym_include, - [243667] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5864), 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, + [248519] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5731), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(2412), 1, - sym__block_terminator, - STATE(3953), 1, - sym_on_quit_phrase, - STATE(4107), 1, + STATE(4092), 1, sym_on_stop_phrase, - STATE(4113), 1, + STATE(4103), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4657), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5549), 1, + STATE(5865), 1, sym_body, - STATE(3843), 2, + STATE(3943), 2, sym_comment, sym_include, - [243711] = 5, - ACTIONS(3), 1, + [248560] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3844), 2, + ACTIONS(5499), 1, + anon_sym_COMMA, + STATE(3972), 1, + aux_sym_inherits_repeat1, + STATE(3944), 2, sym_comment, sym_include, - 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, + ACTIONS(5866), 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, + [248589] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(3064), 1, + aux_sym_variable_definition_token2, + STATE(3945), 2, sym_comment, sym_include, - [243781] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3062), 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, + [248616] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4712), 1, - aux_sym_method_definition_token1, - ACTIONS(5727), 1, - aux_sym_variable_definition_token1, - ACTIONS(5729), 1, + ACTIONS(3012), 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, + STATE(3946), 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(3010), 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, + [248643] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5130), 1, - aux_sym_type_tuning_token1, - ACTIONS(5737), 1, - sym__terminator, - ACTIONS(5739), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4670), 1, - aux_sym_workfile_definition_repeat3, - STATE(4671), 1, - sym_type_tuning, - STATE(6029), 1, - sym_field_definition, - STATE(3847), 2, + ACTIONS(3008), 1, + aux_sym_variable_definition_token2, + STATE(3947), 2, sym_comment, sym_include, - [243861] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3006), 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, + [248670] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5743), 1, - sym__terminator, - STATE(3871), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4683), 1, - sym_type_tuning, - STATE(4686), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3848), 2, + ACTIONS(2944), 1, + aux_sym_variable_definition_token2, + STATE(3948), 2, sym_comment, sym_include, - [243905] = 14, - ACTIONS(67), 1, + ACTIONS(2942), 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, + [248697] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2940), 1, + aux_sym_variable_definition_token2, + STATE(3949), 2, + sym_comment, + sym_include, + ACTIONS(2938), 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, + [248724] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1607), 1, + STATE(1769), 1, sym__block_terminator, - STATE(3949), 1, - sym_on_quit_phrase, - STATE(4217), 1, + STATE(4211), 1, aux_sym_repeat_statement_repeat1, - STATE(4218), 1, + STATE(4212), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5909), 1, + STATE(5998), 1, sym_body, - STATE(3849), 2, + STATE(3950), 2, sym_comment, sym_include, - [243949] = 10, - ACTIONS(3), 1, + [248765] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + STATE(4224), 1, + sym_temp_table_tuning, + ACTIONS(5870), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3951), 3, 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, + aux_sym_temp_table_definition_repeat1, + ACTIONS(5868), 5, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [248794] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5731), 1, - aux_sym_on_error_phrase_token1, - STATE(2077), 1, - sym__block_terminator, - STATE(3980), 1, - sym_on_quit_phrase, - 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(3851), 2, + ACTIONS(2934), 1, + aux_sym_variable_definition_token2, + STATE(3952), 2, sym_comment, sym_include, - [244029] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2932), 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, + [248821] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1866), 1, + STATE(2118), 1, sym__block_terminator, - STATE(3951), 1, - sym_on_quit_phrase, - STATE(4103), 1, - aux_sym_repeat_statement_repeat1, - STATE(4104), 1, + STATE(4109), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(4110), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6123), 1, + STATE(6187), 1, sym_body, - STATE(3852), 2, + STATE(3953), 2, sym_comment, sym_include, - [244073] = 14, - ACTIONS(3), 1, + [248862] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(2930), 1, + aux_sym_variable_definition_token2, + STATE(3954), 2, sym_comment, sym_include, - [244117] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2928), 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, + [248889] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(2153), 1, - sym__block_terminator, - STATE(3922), 1, - sym_on_quit_phrase, - STATE(4112), 1, - aux_sym_repeat_statement_repeat1, - STATE(4115), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5858), 1, - sym_body, - STATE(3854), 2, + ACTIONS(2926), 1, + aux_sym_variable_definition_token2, + STATE(3955), 2, sym_comment, sym_include, - [244161] = 11, - ACTIONS(3), 1, + ACTIONS(2924), 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, + [248916] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, - sym_identifier, - ACTIONS(5753), 1, - anon_sym_RPAREN, - ACTIONS(5759), 1, - aux_sym__function_argument_with_mode_token2, - STATE(4594), 1, - sym_function_parameter_mode, - STATE(5240), 1, - sym_function_parameter, - ACTIONS(5757), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(3855), 2, + ACTIONS(2918), 1, + aux_sym_variable_definition_token2, + STATE(3956), 2, sym_comment, sym_include, - ACTIONS(5755), 3, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token3, - [244199] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2916), 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, + [248943] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(3967), 1, - sym_on_quit_phrase, - STATE(4088), 1, + STATE(4131), 1, aux_sym_repeat_statement_repeat1, - STATE(4098), 1, + STATE(4132), 1, sym_on_stop_phrase, - STATE(4976), 1, + STATE(4868), 1, sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5686), 1, + STATE(5966), 1, sym_body, - STATE(3856), 2, - sym_comment, - sym_include, - [244243] = 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(2665), 1, - aux_sym_widget_field_token1, - STATE(2143), 1, - sym_do_block, - STATE(4118), 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(3857), 2, - sym_comment, - sym_include, - [244287] = 14, - 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(5739), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(5761), 1, - sym__terminator, - STATE(3909), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4871), 1, - aux_sym_workfile_definition_repeat3, - STATE(4872), 1, - sym_type_tuning, - STATE(6029), 1, - sym_field_definition, - STATE(3858), 2, + STATE(3957), 2, sym_comment, sym_include, - [244331] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [248984] = 13, 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(4555), 1, - sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4824), 1, - sym_on_quit_phrase, - STATE(5700), 1, - sym_on_stop_phrase, - ACTIONS(4512), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3859), 2, - sym_comment, - sym_include, - [244373] = 14, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1835), 1, + STATE(2279), 1, sym__block_terminator, - STATE(3976), 1, - sym_on_quit_phrase, - STATE(4156), 1, - aux_sym_repeat_statement_repeat1, - STATE(4157), 1, + STATE(4242), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(4248), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5714), 1, + STATE(6035), 1, sym_body, - STATE(3860), 2, - sym_comment, - sym_include, - [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, + STATE(3958), 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, + [249025] = 13, 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(5739), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(5765), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(5063), 1, - sym_type_tuning, - STATE(5065), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3862), 2, - sym_comment, - sym_include, - [244487] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3819), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 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(4558), 1, - sym_on_error_phrase, - STATE(4603), 1, - sym_sort_clause, - STATE(4796), 1, - sym_on_quit_phrase, - STATE(5684), 1, + STATE(1628), 1, + sym__block_terminator, + STATE(4091), 1, sym_on_stop_phrase, - ACTIONS(5767), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3863), 2, + STATE(4102), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5884), 1, + sym_body, + STATE(3959), 2, sym_comment, sym_include, - [244529] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249066] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1925), 1, + STATE(2177), 1, sym__block_terminator, - STATE(3930), 1, - sym_on_quit_phrase, - STATE(4047), 1, - sym_on_stop_phrase, - STATE(4048), 1, + STATE(4170), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4172), 1, + sym_on_stop_phrase, + STATE(5299), 1, sym_repeat_tuning, - STATE(5512), 1, + STATE(5863), 1, sym_body, - STATE(3864), 2, + STATE(3960), 2, sym_comment, sym_include, - [244573] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249107] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(2291), 1, + STATE(1735), 1, sym__block_terminator, - STATE(3954), 1, - sym_on_quit_phrase, - STATE(4102), 1, + STATE(4244), 1, aux_sym_repeat_statement_repeat1, - STATE(4106), 1, + STATE(4254), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5963), 1, + STATE(6036), 1, sym_body, - STATE(3865), 2, + STATE(3961), 2, sym_comment, sym_include, - [244617] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249148] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5769), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4875), 1, - sym_type_tuning, - STATE(4876), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3866), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(2229), 1, + sym__block_terminator, + STATE(4225), 1, + sym_on_stop_phrase, + STATE(4227), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5518), 1, + sym_body, + STATE(3962), 2, sym_comment, sym_include, - [244661] = 14, - ACTIONS(3), 1, + [249189] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2653), 1, - aux_sym_widget_field_token1, - STATE(4105), 1, - aux_sym_on_statement_repeat2, - STATE(4503), 1, - aux_sym_on_statement_repeat1, - STATE(4972), 1, - sym_do_block, - STATE(5271), 1, - sym_widget_phrase, - STATE(6298), 1, - sym_label, - STATE(3867), 2, + ACTIONS(3102), 1, + aux_sym_variable_definition_token2, + STATE(3963), 2, sym_comment, sym_include, - [244705] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3215), 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, + [249216] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2868), 1, + aux_sym_variable_definition_token2, + STATE(3964), 2, sym_comment, sym_include, - [244749] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2866), 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, + [249243] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5773), 1, - sym__terminator, - STATE(3847), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4672), 1, - sym_type_tuning, - STATE(4675), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3869), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(2215), 1, + sym__block_terminator, + STATE(4228), 1, + aux_sym_repeat_statement_repeat1, + STATE(4232), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5642), 1, + sym_body, + STATE(3965), 2, sym_comment, sym_include, - [244793] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249284] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3134), 1, + aux_sym_variable_definition_token2, + STATE(3966), 2, sym_comment, sym_include, - [244835] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3393), 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, + [249311] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5777), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4801), 1, - sym_type_tuning, - STATE(4916), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3871), 2, + ACTIONS(2864), 1, + aux_sym_variable_definition_token2, + STATE(3967), 2, sym_comment, sym_include, - [244879] = 14, - ACTIONS(3), 1, + ACTIONS(2862), 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, + [249338] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(2768), 1, + aux_sym_variable_tuning_token2, + STATE(3968), 2, sym_comment, sym_include, - [244923] = 14, - ACTIONS(3), 1, + ACTIONS(2766), 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, + [249365] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2696), 1, - aux_sym_widget_field_token1, - STATE(2130), 1, - sym_do_block, - STATE(4175), 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(3873), 2, + ACTIONS(3114), 1, + aux_sym_variable_definition_token2, + STATE(3969), 2, sym_comment, sym_include, - [244967] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3389), 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, + [249392] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5731), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(2381), 1, - sym__block_terminator, - STATE(3945), 1, - sym_on_quit_phrase, - STATE(4083), 1, + STATE(4166), 1, aux_sym_repeat_statement_repeat1, - STATE(4101), 1, + STATE(4169), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(4914), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(6097), 1, + STATE(6094), 1, sym_body, - STATE(3874), 2, + STATE(3970), 2, sym_comment, sym_include, - [245011] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249433] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(4527), 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, + STATE(3187), 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, + STATE(3971), 2, sym_comment, sym_include, - [245053] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4126), 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, + [249462] = 6, 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(5739), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(5781), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4776), 1, - aux_sym_workfile_definition_repeat3, - STATE(4777), 1, - sym_type_tuning, - STATE(6029), 1, - sym_field_definition, - STATE(3876), 2, - sym_comment, - sym_include, - [245097] = 14, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(563), 1, - aux_sym_do_block_token1, - ACTIONS(2631), 1, - sym_identifier, - ACTIONS(2633), 1, + ACTIONS(5873), 1, anon_sym_COMMA, - ACTIONS(2635), 1, - aux_sym_input_expression_token2, - ACTIONS(2641), 1, - aux_sym_widget_field_token1, - STATE(1831), 1, - sym_do_block, - STATE(4159), 1, - aux_sym_on_statement_repeat2, - STATE(4503), 1, - aux_sym_on_statement_repeat1, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(3877), 2, + STATE(3972), 3, sym_comment, sym_include, - [245141] = 11, - ACTIONS(3), 1, + aux_sym_inherits_repeat1, + ACTIONS(5789), 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, + [249489] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, - sym_identifier, - ACTIONS(5759), 1, - aux_sym__function_argument_with_mode_token2, - ACTIONS(5783), 1, - anon_sym_RPAREN, - STATE(4594), 1, - sym_function_parameter_mode, - STATE(5198), 1, - sym_function_parameter, - ACTIONS(5757), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(3878), 2, + ACTIONS(3112), 1, + aux_sym_variable_definition_token2, + STATE(3973), 2, sym_comment, sym_include, - ACTIONS(5755), 3, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token3, - [245179] = 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, + ACTIONS(3333), 8, 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, - [245223] = 14, - ACTIONS(3), 1, + 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, + [249516] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1592), 1, - sym_do_block, - STATE(4092), 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(3880), 2, + ACTIONS(3110), 1, + aux_sym_variable_definition_token2, + STATE(3974), 2, sym_comment, sym_include, - [245267] = 14, - ACTIONS(3), 1, + ACTIONS(3313), 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, + [249543] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2667), 1, - aux_sym_widget_field_token1, - STATE(2089), 1, - sym_do_block, - STATE(4137), 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(3881), 2, + ACTIONS(4527), 1, + sym__namedot, + STATE(3187), 1, + aux_sym_qualified_name_repeat1, + STATE(3975), 2, sym_comment, sym_include, - [245311] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4054), 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, + [249572] = 6, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5785), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(5167), 1, - aux_sym_workfile_definition_repeat3, - STATE(5172), 1, - sym_type_tuning, - STATE(6029), 1, - sym_field_definition, - STATE(3883), 2, + ACTIONS(3108), 1, + aux_sym_variable_definition_token2, + STATE(3976), 2, sym_comment, sym_include, - [245399] = 14, - ACTIONS(3), 1, + ACTIONS(3223), 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, + [249599] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3106), 1, + aux_sym_variable_definition_token2, + STATE(3977), 2, sym_comment, sym_include, - [245443] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3221), 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, + [249626] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(3924), 1, - sym_on_quit_phrase, - STATE(4249), 1, + STATE(1526), 1, + sym__block_terminator, + STATE(4117), 1, sym_on_stop_phrase, - STATE(4253), 1, + STATE(4120), 1, aux_sym_repeat_statement_repeat1, - STATE(4780), 1, - sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5726), 1, + STATE(5938), 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, - 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, + STATE(3978), 2, sym_comment, sym_include, - [245531] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249667] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(2858), 1, + aux_sym_variable_definition_token2, + STATE(3979), 2, sym_comment, sym_include, - [245573] = 14, - 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(2633), 1, - anon_sym_COMMA, - ACTIONS(2635), 1, - aux_sym_input_expression_token2, - ACTIONS(2639), 1, - aux_sym_widget_field_token1, - STATE(1808), 1, - sym_do_block, - STATE(4189), 1, - aux_sym_on_statement_repeat2, - STATE(4503), 1, - aux_sym_on_statement_repeat1, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(3888), 2, + ACTIONS(2856), 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, + [249694] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2854), 1, + aux_sym_variable_definition_token2, + STATE(3980), 2, sym_comment, sym_include, - [245617] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2852), 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, + [249721] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3100), 1, + aux_sym_variable_definition_token2, + STATE(3981), 2, sym_comment, sym_include, - [245661] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [249748] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5791), 1, - sym__terminator, - STATE(3883), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(5100), 1, - aux_sym_workfile_definition_repeat3, - STATE(5118), 1, - sym_type_tuning, - STATE(6029), 1, - sym_field_definition, - STATE(3890), 2, + ACTIONS(2848), 1, + aux_sym_variable_definition_token2, + STATE(3982), 2, sym_comment, sym_include, - [245705] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2846), 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, + [249775] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 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, + STATE(1995), 1, sym__block_terminator, - STATE(5323), 1, + STATE(4064), 1, + aux_sym_repeat_statement_repeat1, + STATE(4072), 1, + sym_on_stop_phrase, + STATE(5299), 1, sym_repeat_tuning, - STATE(5580), 1, + STATE(5585), 1, sym_body, - STATE(3891), 2, + STATE(3983), 2, sym_comment, sym_include, - [245749] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249816] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1681), 1, + STATE(2288), 1, sym__block_terminator, - STATE(3926), 1, - sym_on_quit_phrase, - STATE(4051), 1, + STATE(4069), 1, sym_on_stop_phrase, - STATE(4149), 1, + STATE(4071), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6089), 1, + STATE(5693), 1, sym_body, - STATE(3892), 2, + STATE(3984), 2, sym_comment, sym_include, - [245793] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [249857] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5793), 1, - sym__terminator, - STATE(3906), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4790), 1, - sym_type_tuning, - STATE(4791), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3893), 2, + ACTIONS(2844), 1, + aux_sym_variable_definition_token2, + STATE(3985), 2, sym_comment, sym_include, - [245837] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2842), 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, + [249884] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3098), 1, + aux_sym_variable_definition_token2, + STATE(3986), 2, sym_comment, sym_include, - [245881] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3185), 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, + [249911] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(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(4726), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3895), 2, + ACTIONS(3317), 1, + aux_sym_variable_definition_token2, + STATE(3987), 2, sym_comment, sym_include, - [245925] = 14, - ACTIONS(3), 1, + ACTIONS(3315), 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, + [249938] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5799), 1, - aux_sym_widget_field_token1, - STATE(1790), 1, - sym_do_block, - STATE(4206), 1, - aux_sym_on_statement_repeat2, - STATE(4503), 1, - aux_sym_on_statement_repeat1, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(3896), 2, + ACTIONS(3094), 1, + aux_sym_variable_definition_token2, + STATE(3988), 2, sym_comment, sym_include, - [245969] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3120), 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, + [249965] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(2313), 1, + STATE(1857), 1, sym__block_terminator, - STATE(3985), 1, - sym_on_quit_phrase, - STATE(4158), 1, - aux_sym_repeat_statement_repeat1, - STATE(4164), 1, + STATE(4097), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(4130), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6104), 1, + STATE(5632), 1, sym_body, - STATE(3897), 2, + STATE(3989), 2, sym_comment, sym_include, - [246013] = 5, - ACTIONS(3), 1, + [250006] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3898), 2, + ACTIONS(3090), 1, + aux_sym_variable_definition_token2, + STATE(3990), 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(3181), 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, + [250033] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3068), 1, + aux_sym_variable_definition_token2, + STATE(3991), 2, sym_comment, sym_include, - [246083] = 5, - ACTIONS(3), 1, + ACTIONS(3179), 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, + [250060] = 13, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3900), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(4216), 1, + aux_sym_repeat_statement_repeat1, + STATE(4218), 1, + sym_on_stop_phrase, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, + sym_body, + STATE(3992), 2, sym_comment, sym_include, - 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, + [250101] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(615), 1, - aux_sym_do_block_token1, - ACTIONS(2631), 1, - sym_identifier, - ACTIONS(2633), 1, + ACTIONS(5499), 1, anon_sym_COMMA, - ACTIONS(2635), 1, - aux_sym_input_expression_token2, - ACTIONS(2637), 1, - aux_sym_widget_field_token1, - STATE(1550), 1, - sym_do_block, - STATE(4174), 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(3901), 2, + STATE(3944), 1, + aux_sym_inherits_repeat1, + STATE(3993), 2, sym_comment, sym_include, - [246153] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5497), 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, + [250130] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5805), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4648), 1, - sym_type_tuning, - STATE(4652), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3902), 2, + ACTIONS(5878), 1, + aux_sym_variable_tuning_token2, + STATE(3994), 2, sym_comment, sym_include, - [246197] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5876), 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, + [250157] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5807), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 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, + ACTIONS(5858), 1, + aux_sym_on_error_phrase_token1, + STATE(1560), 1, + sym__block_terminator, + STATE(4144), 1, + sym_on_stop_phrase, + STATE(4145), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6010), 1, + sym_body, + STATE(3995), 2, sym_comment, sym_include, - 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, + [250198] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3022), 1, + aux_sym_variable_definition_token2, + STATE(3996), 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(3173), 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, + [250225] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5818), 1, - sym__terminator, - STATE(3862), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(5173), 1, - sym_type_tuning, - STATE(5174), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3905), 2, + ACTIONS(3124), 1, + aux_sym_variable_definition_token2, + STATE(3997), 2, sym_comment, sym_include, - [246313] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3122), 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, + [250252] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5499), 1, + anon_sym_COMMA, + STATE(3940), 1, + aux_sym_inherits_repeat1, + STATE(3998), 2, sym_comment, sym_include, - [246357] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5565), 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, + [250281] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1955), 1, - sym__block_terminator, - STATE(3987), 1, - sym_on_quit_phrase, - STATE(4143), 1, + STATE(4182), 1, aux_sym_repeat_statement_repeat1, - STATE(4145), 1, + STATE(4187), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(4953), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5565), 1, + STATE(6136), 1, sym_body, - STATE(3907), 2, + STATE(3999), 2, sym_comment, sym_include, - [246401] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [250322] = 13, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - ACTIONS(5731), 1, + ACTIONS(5858), 1, aux_sym_on_error_phrase_token1, - STATE(1715), 1, + STATE(1590), 1, sym__block_terminator, - STATE(3983), 1, - sym_on_quit_phrase, - STATE(4153), 1, + STATE(4177), 1, aux_sym_repeat_statement_repeat1, - STATE(4173), 1, + STATE(4178), 1, sym_on_stop_phrase, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6110), 1, + STATE(6123), 1, sym_body, - STATE(3908), 2, + STATE(4000), 2, sym_comment, sym_include, - [246445] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [250363] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5822), 1, - sym__terminator, - STATE(4056), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4814), 1, - sym_type_tuning, - STATE(4815), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3909), 2, + ACTIONS(5882), 1, + aux_sym_variable_tuning_token2, + STATE(4001), 2, sym_comment, sym_include, - [246489] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5880), 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, + [250390] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(4527), 1, sym__namedot, - STATE(416), 1, + ACTIONS(5886), 1, + aux_sym__function_argument_with_mode_token4, + STATE(3187), 1, aux_sym_qualified_name_repeat1, - STATE(3910), 2, + STATE(5587), 1, + sym_argument_pass_type, + ACTIONS(5884), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4002), 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(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [250425] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4627), 1, - sym_on_error_phrase, - STATE(5154), 1, - sym_on_quit_phrase, - STATE(5942), 1, - sym_on_stop_phrase, - ACTIONS(4436), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(5888), 1, anon_sym_COLON, - anon_sym_COMMA, - STATE(3911), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3561), 1, + sym_function_arguments, + STATE(5263), 1, + sym_case_body, + STATE(4003), 2, sym_comment, sym_include, - [246561] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [250463] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3912), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5890), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4004), 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(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [250495] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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(5826), 1, - sym__terminator, - STATE(3899), 1, - aux_sym_workfile_definition_repeat2, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4663), 1, - sym_type_tuning, - STATE(4665), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(3913), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4422), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6526), 1, + sym_interface_body, + STATE(4005), 2, sym_comment, sym_include, - [246631] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [250533] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(3914), 2, + ACTIONS(5896), 1, + aux_sym__block_terminator_token1, + ACTIONS(5898), 1, + anon_sym_LPAREN, + STATE(1587), 1, + sym__function_terminator, + STATE(1588), 1, + sym__block_terminator, + STATE(4374), 1, + sym_function_parameters, + STATE(5258), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4006), 2, sym_comment, sym_include, - 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, + [250569] = 12, 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, + ACTIONS(5900), 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(2057), 1, - sym_do_block, - STATE(4121), 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(3915), 2, + ACTIONS(5902), 1, + anon_sym_LBRACE, + ACTIONS(5904), 1, + anon_sym_RBRACE, + ACTIONS(5906), 1, + anon_sym_DQUOTE, + ACTIONS(5908), 1, + aux_sym_include_argument_token1, + STATE(4054), 1, + aux_sym_include_repeat2, + STATE(5157), 1, + sym_constant, + STATE(5158), 1, + sym_double_quoted_string, + STATE(5159), 1, + sym_include_argument, + STATE(4007), 2, sym_comment, sym_include, - [246701] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [250607] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5912), 1, + aux_sym_variable_tuning_token7, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5910), 2, anon_sym_COMMA, - STATE(3916), 2, + anon_sym_RPAREN, + ACTIONS(5915), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + STATE(4008), 3, sym_comment, sym_include, - [246743] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_parameter_repeat1, + [250637] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5918), 1, + sym__terminator, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5924), 1, + aux_sym_query_definition_token2, + ACTIONS(5926), 1, + aux_sym_query_definition_token3, + STATE(4479), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4009), 2, sym_comment, sym_include, - [246785] = 13, - ACTIONS(67), 1, + [250673] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(5928), 1, + sym_identifier, + STATE(3301), 1, + sym_qualified_name, + STATE(6077), 1, + sym__find_type, + STATE(4010), 2, sym_comment, sym_include, - [246827] = 14, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5930), 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, + [250703] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(3919), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5932), 1, + sym__terminator, + ACTIONS(5934), 1, + aux_sym_query_definition_token2, + ACTIONS(5936), 1, + aux_sym_query_definition_token3, + STATE(4394), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4011), 2, sym_comment, sym_include, - [246871] = 13, - ACTIONS(67), 1, + [250739] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(5938), 1, + sym_identifier, + STATE(4042), 1, + aux_sym_destructor_definition_repeat1, + STATE(4390), 1, + sym_access_tuning, + STATE(4012), 2, sym_comment, sym_include, - [246913] = 6, - ACTIONS(67), 1, + ACTIONS(5940), 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, + [250769] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5942), 1, + sym_identifier, + STATE(4640), 1, + sym_function_parameter_mode, + ACTIONS(5785), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(4013), 2, + sym_comment, + sym_include, + ACTIONS(5944), 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, + [250799] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5832), 1, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5946), 2, anon_sym_COMMA, - STATE(3921), 3, + anon_sym_RPAREN, + STATE(4014), 2, 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(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [250831] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2092), 1, - sym__block_terminator, - STATE(4136), 1, - aux_sym_repeat_statement_repeat1, - STATE(4140), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5733), 1, - sym_body, - STATE(3922), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5948), 1, + sym__terminator, + ACTIONS(5950), 1, + aux_sym_query_definition_token2, + ACTIONS(5952), 1, + aux_sym_query_definition_token3, + STATE(4515), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4015), 2, sym_comment, sym_include, - [246981] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [250867] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3125), 1, - aux_sym_variable_definition_token2, - STATE(3923), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4376), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6629), 1, + sym_interface_body, + STATE(4016), 2, sym_comment, sym_include, - 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, + [250905] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5835), 1, - aux_sym_on_error_phrase_token1, - 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(3924), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4031), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5954), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4017), 2, sym_comment, sym_include, - [247049] = 7, - ACTIONS(67), 1, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [250937] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(5900), 1, + sym_identifier, + ACTIONS(5902), 1, anon_sym_LBRACE, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(3931), 1, - aux_sym_inherits_repeat1, - STATE(3925), 2, + ACTIONS(5904), 1, + anon_sym_RBRACE, + ACTIONS(5906), 1, + anon_sym_DQUOTE, + ACTIONS(5908), 1, + aux_sym_include_argument_token1, + STATE(4053), 1, + aux_sym_include_repeat2, + STATE(5157), 1, + sym_constant, + STATE(5158), 1, + sym_double_quoted_string, + STATE(5159), 1, + sym_include_argument, + STATE(4018), 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, + [250975] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1607), 1, - sym__block_terminator, - STATE(4217), 1, - aux_sym_repeat_statement_repeat1, - STATE(4218), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5909), 1, - sym_body, - STATE(3926), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5954), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4019), 2, sym_comment, sym_include, - [247119] = 7, - ACTIONS(67), 1, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251007] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4235), 1, - sym_temp_table_tuning, - ACTIONS(5839), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3927), 3, + ACTIONS(5956), 1, + sym_identifier, + STATE(4390), 1, + sym_access_tuning, + STATE(4020), 3, sym_comment, sym_include, - 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, + aux_sym_destructor_definition_repeat1, + ACTIONS(5958), 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, + [251035] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(3932), 1, - aux_sym_inherits_repeat1, - STATE(3928), 2, + STATE(4021), 2, sym_comment, sym_include, - ACTIONS(5431), 7, + ACTIONS(5789), 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, - [247177] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251059] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, - sym__namedot, - STATE(3165), 1, - aux_sym_qualified_name_repeat1, - STATE(3929), 2, - sym_comment, - sym_include, - ACTIONS(4150), 7, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5961), 2, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_variable_tuning_token7, + STATE(4022), 2, + sym_comment, + sym_include, + ACTIONS(5483), 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, - [247206] = 13, - ACTIONS(67), 1, + [251091] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1866), 1, - sym__block_terminator, - 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(3930), 2, + ACTIONS(5963), 1, + sym_identifier, + STATE(3279), 1, + sym_qualified_name, + STATE(6092), 1, + sym__find_type, + STATE(4023), 2, sym_comment, sym_include, - [247247] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5930), 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, + [251121] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(3921), 1, - aux_sym_inherits_repeat1, - STATE(3931), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5965), 1, + sym__terminator, + ACTIONS(5967), 1, + aux_sym_query_definition_token2, + ACTIONS(5969), 1, + aux_sym_query_definition_token3, + STATE(4302), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4024), 2, sym_comment, sym_include, - 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, + [251157] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(3921), 1, - aux_sym_inherits_repeat1, - STATE(3932), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5971), 1, + sym__terminator, + ACTIONS(5973), 1, + aux_sym_query_definition_token2, + ACTIONS(5975), 1, + aux_sym_query_definition_token3, + STATE(4452), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4025), 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, + [251193] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, + ACTIONS(2270), 1, sym__namedot, - STATE(3165), 1, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(3933), 2, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3561), 1, + sym_function_arguments, + STATE(5452), 1, + sym_case_body, + STATE(4026), 2, + sym_comment, + sym_include, + [251231] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5977), 1, + sym__terminator, + ACTIONS(5979), 1, + aux_sym_query_definition_token2, + ACTIONS(5981), 1, + aux_sym_query_definition_token3, + STATE(4520), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4027), 2, sym_comment, sym_include, - ACTIONS(4085), 7, + [251267] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4037), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5890), 2, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_variable_tuning_token7, + STATE(4028), 2, + sym_comment, + sym_include, + ACTIONS(5483), 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, - [247334] = 13, - ACTIONS(67), 1, + [251299] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2153), 1, - sym__block_terminator, - STATE(4112), 1, - aux_sym_repeat_statement_repeat1, - STATE(4115), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5858), 1, - sym_body, - STATE(3934), 2, + ACTIONS(5983), 1, + sym_identifier, + STATE(3292), 1, + sym_qualified_name, + STATE(5883), 1, + sym__find_type, + STATE(4029), 2, sym_comment, sym_include, - [247375] = 6, - ACTIONS(67), 1, + ACTIONS(5930), 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, + [251329] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(5900), 1, + sym_identifier, + ACTIONS(5902), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_variable_definition_token2, - STATE(3935), 2, + ACTIONS(5906), 1, + anon_sym_DQUOTE, + ACTIONS(5908), 1, + aux_sym_include_argument_token1, + ACTIONS(5985), 1, + anon_sym_RBRACE, + STATE(4007), 1, + aux_sym_include_repeat2, + STATE(5157), 1, + sym_constant, + STATE(5158), 1, + sym_double_quoted_string, + STATE(5159), 1, + sym_include_argument, + STATE(4030), 2, sym_comment, sym_include, - ACTIONS(3037), 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, - [247402] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251367] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, - aux_sym_variable_definition_token2, - STATE(3936), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5987), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4031), 2, sym_comment, sym_include, - ACTIONS(3041), 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, - [247429] = 6, - ACTIONS(67), 1, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251399] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2903), 1, - aux_sym_variable_definition_token2, - STATE(3937), 2, + ACTIONS(5989), 1, + sym_identifier, + STATE(3303), 1, + sym_qualified_name, + STATE(5670), 1, + sym__find_type, + STATE(4032), 2, sym_comment, sym_include, - ACTIONS(2901), 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, - [247456] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5930), 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, + [251429] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2855), 1, - aux_sym_variable_definition_token2, - STATE(3938), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5991), 1, + sym__terminator, + ACTIONS(5993), 1, + aux_sym_query_definition_token2, + ACTIONS(5995), 1, + aux_sym_query_definition_token3, + STATE(4440), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4033), 2, sym_comment, sym_include, - ACTIONS(2853), 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, - [247483] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251465] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5898), 1, + anon_sym_LPAREN, + ACTIONS(5997), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2412), 1, + STATE(2164), 1, + sym__function_terminator, + STATE(2165), 1, sym__block_terminator, - 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(3939), 2, + STATE(4396), 1, + sym_function_parameters, + STATE(5250), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4034), 2, sym_comment, sym_include, - [247524] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251501] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(4088), 1, - aux_sym_repeat_statement_repeat1, - STATE(4098), 1, - sym_on_stop_phrase, - STATE(4976), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5686), 1, - sym_body, - STATE(3940), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4022), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5999), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4035), 2, sym_comment, sym_include, - [247565] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251533] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3117), 1, - aux_sym_variable_definition_token2, - STATE(3941), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(5999), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4036), 2, sym_comment, sym_include, - 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(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251565] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3352), 1, - aux_sym_variable_definition_token2, - STATE(3942), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(6001), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4037), 2, sym_comment, sym_include, - 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(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251597] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3219), 1, - aux_sym_variable_definition_token2, - STATE(3943), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6003), 1, + sym__terminator, + ACTIONS(6005), 1, + aux_sym_query_definition_token2, + ACTIONS(6007), 1, + aux_sym_query_definition_token3, + STATE(4295), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4038), 2, sym_comment, sym_include, - ACTIONS(3217), 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, - [247646] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251633] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3047), 1, - aux_sym_variable_definition_token2, - STATE(3944), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4361), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6311), 1, + sym_interface_body, + STATE(4039), 2, sym_comment, sym_include, - 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, + [251671] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5898), 1, + anon_sym_LPAREN, + ACTIONS(6009), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2291), 1, + STATE(2272), 1, + sym__function_terminator, + STATE(2276), 1, sym__block_terminator, - STATE(4102), 1, - aux_sym_repeat_statement_repeat1, - STATE(4106), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5963), 1, - sym_body, - STATE(3945), 2, + STATE(4277), 1, + sym_function_parameters, + STATE(5367), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4040), 2, sym_comment, sym_include, - [247714] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251707] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3141), 1, - aux_sym_variable_definition_token2, - STATE(3946), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3561), 1, + sym_function_arguments, + STATE(5441), 1, + sym_case_body, + STATE(4041), 2, sym_comment, sym_include, - 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, + [251745] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1715), 1, - sym__block_terminator, - 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(3947), 2, + ACTIONS(6011), 1, + sym_identifier, + STATE(4020), 1, + aux_sym_destructor_definition_repeat1, + STATE(4390), 1, + sym_access_tuning, + STATE(4042), 2, sym_comment, sym_include, - [247782] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5940), 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, + [251775] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3113), 1, - aux_sym_variable_definition_token2, - STATE(3948), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3561), 1, + sym_function_arguments, + STATE(5341), 1, + sym_case_body, + STATE(4043), 2, sym_comment, sym_include, - ACTIONS(3111), 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, - [247809] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251813] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5898), 1, + anon_sym_LPAREN, + ACTIONS(6013), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1554), 1, + STATE(4380), 1, + sym_function_parameters, + STATE(4817), 1, sym__block_terminator, - STATE(4180), 1, - sym_on_stop_phrase, - STATE(4183), 1, - aux_sym_repeat_statement_repeat1, + STATE(4822), 1, + sym__function_terminator, STATE(5323), 1, - sym_repeat_tuning, - STATE(5786), 1, - sym_body, - STATE(3949), 2, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4044), 2, sym_comment, sym_include, - [247850] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [251849] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, - aux_sym_variable_definition_token2, - STATE(3950), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6015), 1, + sym__terminator, + ACTIONS(6017), 1, + aux_sym_query_definition_token2, + ACTIONS(6019), 1, + aux_sym_query_definition_token3, + STATE(4366), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4045), 2, sym_comment, sym_include, - ACTIONS(3055), 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, - [247877] = 13, - ACTIONS(67), 1, + [251885] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1835), 1, - sym__block_terminator, - STATE(4156), 1, - aux_sym_repeat_statement_repeat1, - STATE(4157), 1, - sym_on_stop_phrase, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5714), 1, - sym_body, - STATE(3951), 2, + ACTIONS(6021), 1, + sym_identifier, + STATE(3281), 1, + sym_qualified_name, + STATE(5919), 1, + sym__find_type, + STATE(4046), 2, sym_comment, sym_include, - [247918] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5930), 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, + [251915] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3137), 1, - aux_sym_variable_definition_token2, - STATE(3952), 2, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4014), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(6023), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4047), 2, sym_comment, sym_include, - ACTIONS(3135), 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, - [247945] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251947] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5481), 1, + aux_sym_variable_tuning_token7, + STATE(4008), 1, + aux_sym_function_parameter_repeat1, + STATE(4325), 1, + sym_function_parameter_tuning, + ACTIONS(6023), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4048), 2, sym_comment, sym_include, - [247986] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5483), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [251979] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 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, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4501), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6264), 1, + sym_interface_body, + STATE(4049), 2, sym_comment, sym_include, - [248027] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252017] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2959), 1, - aux_sym_variable_definition_token2, - STATE(3955), 2, + ACTIONS(5898), 1, + anon_sym_LPAREN, + ACTIONS(6025), 1, + aux_sym__block_terminator_token1, + STATE(1832), 1, + sym__function_terminator, + STATE(1833), 1, + sym__block_terminator, + STATE(4383), 1, + sym_function_parameters, + STATE(5226), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4050), 2, sym_comment, sym_include, - ACTIONS(2957), 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, - [248054] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252053] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2965), 1, - aux_sym_variable_definition_token2, - STATE(3956), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(3544), 1, + aux_sym_object_access_repeat1, + STATE(3561), 1, + sym_function_arguments, + STATE(5354), 1, + sym_case_body, + STATE(4051), 2, sym_comment, sym_include, - ACTIONS(2963), 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, - [248081] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252091] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4472), 1, - sym__namedot, - ACTIONS(5848), 1, - aux_sym__function_argument_with_mode_token4, - STATE(3165), 1, - aux_sym_qualified_name_repeat1, - STATE(5972), 1, - sym_argument_pass_type, - ACTIONS(5846), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3957), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6027), 1, + sym__terminator, + ACTIONS(6029), 1, + aux_sym_query_definition_token2, + ACTIONS(6031), 1, + aux_sym_query_definition_token3, + STATE(4397), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4052), 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, - [248116] = 13, - ACTIONS(67), 1, + [252127] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(5900), 1, + sym_identifier, + ACTIONS(5902), 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, - 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, + ACTIONS(5906), 1, + anon_sym_DQUOTE, + ACTIONS(5908), 1, + aux_sym_include_argument_token1, + ACTIONS(6033), 1, + anon_sym_RBRACE, + STATE(4054), 1, + aux_sym_include_repeat2, + STATE(5157), 1, + sym_constant, + STATE(5158), 1, + sym_double_quoted_string, + STATE(5159), 1, + sym_include_argument, + STATE(4053), 2, sym_comment, sym_include, - [248157] = 6, - ACTIONS(67), 1, + [252165] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(6035), 1, + sym_identifier, + ACTIONS(6038), 1, anon_sym_LBRACE, - ACTIONS(5852), 1, - aux_sym_variable_tuning_token2, - STATE(3959), 2, + ACTIONS(6041), 1, + anon_sym_RBRACE, + ACTIONS(6043), 1, + anon_sym_DQUOTE, + ACTIONS(6046), 1, + aux_sym_include_argument_token1, + STATE(5157), 1, + sym_constant, + STATE(5158), 1, + sym_double_quoted_string, + STATE(5159), 1, + sym_include_argument, + STATE(4054), 3, sym_comment, sym_include, - 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, + aux_sym_include_repeat2, + [252201] = 12, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5854), 1, - sym__integer_literal, - STATE(4260), 1, - sym_number_literal, - STATE(4328), 1, - sym__decimal_literal, - STATE(3960), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4482), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6446), 1, + sym_interface_body, + STATE(4055), 2, sym_comment, sym_include, - 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, + [252239] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - ACTIONS(5835), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(2225), 1, - sym__block_terminator, - STATE(4067), 1, + STATE(4507), 1, + sym_on_quit_phrase, + STATE(4977), 1, sym_on_stop_phrase, - STATE(4068), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5940), 1, + STATE(4978), 1, + aux_sym_for_statement_repeat1, + STATE(6079), 1, sym_body, - STATE(3961), 2, + STATE(4056), 2, sym_comment, sym_include, - [248256] = 6, - ACTIONS(67), 1, + [252274] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1695), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(4057), 2, + sym_comment, + sym_include, + [252309] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2953), 1, - aux_sym_variable_definition_token2, - STATE(3962), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4354), 1, + sym_on_quit_phrase, + STATE(5090), 1, + sym_on_stop_phrase, + STATE(5091), 1, + aux_sym_for_statement_repeat1, + STATE(5542), 1, + sym_body, + STATE(4058), 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, + [252344] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - ACTIONS(5835), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(1590), 1, - sym__block_terminator, - STATE(4077), 1, + STATE(4414), 1, + sym_on_quit_phrase, + STATE(5088), 1, sym_on_stop_phrase, - STATE(4097), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5693), 1, + STATE(5089), 1, + aux_sym_for_statement_repeat1, + STATE(5539), 1, sym_body, - STATE(3963), 2, + STATE(4059), 2, sym_comment, sym_include, - [248324] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252379] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3257), 1, - aux_sym_variable_definition_token2, - STATE(3964), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4300), 1, + sym_on_quit_phrase, + STATE(5045), 1, + sym_on_stop_phrase, + STATE(5046), 1, + aux_sym_for_statement_repeat1, + STATE(5977), 1, + sym_body, + STATE(4060), 2, sym_comment, sym_include, - ACTIONS(3255), 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, - [248351] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252414] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3051), 1, - aux_sym_variable_definition_token2, - STATE(3965), 2, + ACTIONS(6051), 1, + aux_sym__block_terminator_token1, + ACTIONS(6053), 1, + aux_sym_access_tuning_token1, + STATE(5318), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4061), 2, sym_comment, sym_include, - 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, + STATE(4793), 2, + sym__block_terminator, + sym__procedure_terminator, + [252445] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2313), 1, - sym__block_terminator, - STATE(4158), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(4164), 1, - sym_on_stop_phrase, - STATE(5323), 1, + STATE(4789), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(6104), 1, + STATE(5599), 1, sym_body, - STATE(3966), 2, + STATE(4062), 2, sym_comment, sym_include, - [248419] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252480] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(4187), 1, + STATE(4073), 1, aux_sym_repeat_statement_repeat1, - STATE(4251), 1, - sym_on_stop_phrase, - STATE(4721), 1, + STATE(4789), 1, sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5797), 1, + STATE(5599), 1, sym_body, - STATE(3967), 2, + STATE(4063), 2, sym_comment, sym_include, - [248460] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252515] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2851), 1, - aux_sym_variable_definition_token2, - STATE(3968), 2, - sym_comment, - sym_include, - ACTIONS(2927), 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, - [248487] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, - aux_sym_variable_definition_token2, - STATE(3969), 2, - sym_comment, - sym_include, - ACTIONS(2909), 8, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, 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, - [248514] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3606), 1, - aux_sym_variable_definition_token2, - STATE(3970), 2, + STATE(1954), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5562), 1, + sym_body, + STATE(4064), 2, sym_comment, sym_include, - ACTIONS(3636), 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, - [248541] = 6, - ACTIONS(67), 1, + [252550] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3189), 1, - aux_sym_variable_definition_token2, - STATE(3971), 2, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1953), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4065), 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, - [248568] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252585] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3199), 1, - aux_sym_variable_definition_token2, - STATE(3972), 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, - [248595] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2742), 1, - aux_sym_variable_tuning_token2, - STATE(3973), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6055), 1, + sym__terminator, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4579), 1, + aux_sym_data_relation_repeat1, + STATE(6666), 1, + sym_data_relation, + STATE(4066), 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, + [252620] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5835), 1, - aux_sym_on_error_phrase_token1, - 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(3974), 2, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1953), 1, + sym_do_block, + STATE(4079), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4067), 2, sym_comment, sym_include, - [248663] = 6, - ACTIONS(67), 1, + [252655] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, - aux_sym_variable_definition_token2, - STATE(3975), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(2074), 1, + sym_do_block, + STATE(4175), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + STATE(4068), 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, + [252690] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1810), 1, + STATE(1950), 1, sym__block_terminator, - STATE(4188), 1, + STATE(4126), 1, aux_sym_repeat_statement_repeat1, - STATE(4198), 1, - sym_on_stop_phrase, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5775), 1, + STATE(5860), 1, sym_body, - STATE(3976), 2, - sym_comment, - sym_include, - [248731] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2935), 1, - aux_sym_variable_definition_token2, - STATE(3977), 2, + STATE(4069), 2, sym_comment, sym_include, - ACTIONS(2933), 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, - [248758] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252725] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2925), 1, - aux_sym_variable_definition_token2, - STATE(3978), 2, - sym_comment, - sym_include, - ACTIONS(2923), 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, - [248785] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(4249), 1, - sym_on_stop_phrase, - STATE(4253), 1, + STATE(4103), 1, aux_sym_repeat_statement_repeat1, - STATE(4780), 1, + STATE(4657), 1, sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5726), 1, + STATE(5865), 1, sym_body, - STATE(3979), 2, + STATE(4070), 2, sym_comment, sym_include, - [248826] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252760] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2091), 1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(1950), 1, sym__block_terminator, - STATE(4152), 1, - sym_on_stop_phrase, - STATE(4254), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5646), 1, + STATE(5860), 1, sym_body, - STATE(3980), 2, - sym_comment, - sym_include, - [248867] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2973), 1, - aux_sym_variable_definition_token2, - STATE(3981), 2, + STATE(4071), 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, - [248894] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252795] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - aux_sym_variable_definition_token2, - STATE(3982), 2, - sym_comment, - sym_include, - ACTIONS(2975), 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, - [248921] = 13, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1681), 1, + STATE(1954), 1, sym__block_terminator, - STATE(4051), 1, - sym_on_stop_phrase, - STATE(4149), 1, + STATE(4083), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6089), 1, + STATE(5562), 1, sym_body, - STATE(3983), 2, + STATE(4072), 2, sym_comment, sym_include, - [248962] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252830] = 11, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(2280), 1, - sym__block_terminator, - STATE(4125), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(4128), 1, - sym_on_stop_phrase, - STATE(5323), 1, + STATE(4657), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(6015), 1, + STATE(5865), 1, sym_body, - STATE(3985), 2, + STATE(4073), 2, sym_comment, sym_include, - [249030] = 10, + [252865] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(5759), 1, - aux_sym__function_argument_with_mode_token2, - STATE(4594), 1, - sym_function_parameter_mode, - STATE(5685), 1, - sym_function_parameter, - ACTIONS(5757), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(3986), 2, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(2074), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + STATE(4074), 2, sym_comment, sym_include, - ACTIONS(5755), 3, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token3, - [249065] = 13, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252900] = 10, 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, - ACTIONS(5835), 1, - aux_sym_on_error_phrase_token1, - STATE(1925), 1, - sym__block_terminator, - 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(3987), 2, - sym_comment, - sym_include, - [249106] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2919), 1, - aux_sym_variable_definition_token2, - STATE(3988), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6061), 1, + sym__terminator, + ACTIONS(6063), 1, + aux_sym_query_definition_token3, + STATE(4505), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4075), 2, sym_comment, sym_include, - ACTIONS(2917), 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, - [249133] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252933] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3205), 1, - aux_sym_variable_definition_token2, - STATE(3989), 2, - sym_comment, - sym_include, - ACTIONS(3245), 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, - [249160] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2915), 1, - aux_sym_variable_definition_token2, - STATE(3990), 2, + STATE(4076), 2, sym_comment, sym_include, - ACTIONS(2913), 8, + ACTIONS(6065), 7, + anon_sym_COLON, 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, - [249187] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [252956] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5862), 1, - sym__terminator, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5868), 1, - aux_sym_query_definition_token2, - ACTIONS(5870), 1, + ACTIONS(6067), 1, + sym__terminator, + ACTIONS(6069), 1, aux_sym_query_definition_token3, - STATE(4308), 1, + STATE(4345), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(3991), 2, + STATE(4077), 2, sym_comment, sym_include, - [249223] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [252989] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5876), 1, - aux_sym__block_terminator_token1, - ACTIONS(5878), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym__function_terminator, - STATE(1679), 1, - sym__block_terminator, - STATE(4381), 1, - sym_function_parameters, - STATE(5282), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(3993), 2, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4078), 2, sym_comment, sym_include, - [249291] = 9, - ACTIONS(67), 1, + ACTIONS(6071), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [253016] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1933), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4079), 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, - [249323] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253051] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - STATE(3995), 2, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4301), 1, + sym_on_quit_phrase, + STATE(4740), 1, + sym_on_stop_phrase, + STATE(4741), 1, + aux_sym_for_statement_repeat1, + STATE(6165), 1, + sym_body, + STATE(4080), 2, sym_comment, sym_include, - [249359] = 8, - ACTIONS(3), 1, + [253086] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5884), 1, - sym_identifier, - STATE(3285), 1, - sym_qualified_name, - STATE(5605), 1, - sym__find_type, - STATE(3996), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4494), 1, + sym_on_quit_phrase, + STATE(5079), 1, + sym_on_stop_phrase, + STATE(5081), 1, + aux_sym_for_statement_repeat1, + STATE(5516), 1, + sym_body, + STATE(4081), 2, sym_comment, sym_include, - 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, + [253121] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5888), 1, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - STATE(4606), 1, - sym_function_parameter_mode, - ACTIONS(5757), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(3997), 2, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1933), 1, + sym_do_block, + STATE(4108), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4082), 2, sym_comment, sym_include, - 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, - [249419] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253156] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5878), 1, - anon_sym_LPAREN, - ACTIONS(5892), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1914), 1, - sym__function_terminator, - STATE(1915), 1, + STATE(1937), 1, sym__block_terminator, - STATE(4297), 1, - sym_function_parameters, - STATE(5414), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(3998), 2, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5547), 1, + sym_body, + STATE(4083), 2, sym_comment, sym_include, - [249455] = 9, - ACTIONS(67), 1, + [253191] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1717), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4084), 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, - [249487] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253226] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5896), 1, - sym__terminator, - 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, - [249523] = 12, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(5902), 1, + ACTIONS(3852), 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, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1674), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5751), 1, + sym_body, + STATE(4085), 2, sym_comment, sym_include, - [249561] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253261] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, - aux_sym_variable_tuning_token7, - STATE(4017), 1, - aux_sym_function_parameter_repeat1, - STATE(4384), 1, - sym_function_parameter_tuning, - ACTIONS(5904), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4002), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4476), 1, + sym_on_quit_phrase, + STATE(5107), 1, + sym_on_stop_phrase, + STATE(5108), 1, + aux_sym_for_statement_repeat1, + STATE(5590), 1, + sym_body, + STATE(4086), 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, - [249593] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253296] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, - aux_sym_variable_tuning_token7, - STATE(4028), 1, - aux_sym_function_parameter_repeat1, - STATE(4384), 1, - sym_function_parameter_tuning, - ACTIONS(5904), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4003), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4290), 1, + sym_on_quit_phrase, + STATE(5095), 1, + sym_on_stop_phrase, + STATE(5103), 1, + aux_sym_for_statement_repeat1, + STATE(5824), 1, + sym_body, + STATE(4087), 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, - [249625] = 8, + [253331] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5906), 1, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - STATE(4039), 1, - aux_sym_destructor_definition_repeat1, - STATE(4306), 1, - sym_access_tuning, - STATE(4004), 2, - sym_comment, - sym_include, - 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, - [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, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1675), 1, + sym_do_block, + STATE(4084), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4088), 2, sym_comment, sym_include, - [249693] = 8, + [253366] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5910), 1, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - STATE(3282), 1, - sym_qualified_name, - STATE(5816), 1, - sym__find_type, - STATE(4006), 2, - sym_comment, - sym_include, - 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(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(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, - [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, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1675), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4089), 2, sym_comment, sym_include, - [249799] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253401] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5469), 1, - aux_sym_variable_tuning_token7, - STATE(4013), 1, - aux_sym_function_parameter_repeat1, - STATE(4384), 1, - sym_function_parameter_tuning, - ACTIONS(5872), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4009), 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, - [249831] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5914), 1, + ACTIONS(6073), 1, sym__terminator, - ACTIONS(5916), 1, - aux_sym_query_definition_token2, - ACTIONS(5918), 1, + ACTIONS(6075), 1, aux_sym_query_definition_token3, - STATE(4456), 1, + STATE(4454), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4010), 2, + STATE(4090), 2, sym_comment, sym_include, - [249867] = 9, - ACTIONS(67), 1, + [253434] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1657), 1, + sym__block_terminator, + STATE(4085), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5780), 1, + sym_body, + STATE(4091), 2, + sym_comment, + sym_include, + [253469] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, - aux_sym_variable_tuning_token7, - STATE(4029), 1, - aux_sym_function_parameter_repeat1, - STATE(4384), 1, - sym_function_parameter_tuning, - ACTIONS(5894), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4011), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4131), 1, + aux_sym_repeat_statement_repeat1, + STATE(4868), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5966), 1, + sym_body, + STATE(4092), 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, - [249899] = 8, + [253504] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5920), 1, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - STATE(3265), 1, - sym_qualified_name, - STATE(6023), 1, - sym__find_type, - STATE(4012), 2, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1659), 1, + sym_do_block, + STATE(4089), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4093), 2, sym_comment, sym_include, - 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, - [249929] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253539] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, - aux_sym_variable_tuning_token7, - STATE(4028), 1, - aux_sym_function_parameter_repeat1, - STATE(4384), 1, - sym_function_parameter_tuning, - ACTIONS(5922), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4013), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4464), 1, + sym_on_quit_phrase, + STATE(4744), 1, + sym_on_stop_phrase, + STATE(4745), 1, + aux_sym_for_statement_repeat1, + STATE(6168), 1, + sym_body, + STATE(4094), 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, - [249961] = 11, - ACTIONS(67), 1, + [253574] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(2053), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4095), 2, sym_comment, sym_include, - [249997] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253609] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(5902), 1, + ACTIONS(3852), 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, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1802), 1, + sym__block_terminator, + STATE(4156), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5850), 1, + sym_body, + STATE(4096), 2, sym_comment, sym_include, - [250035] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253644] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, + ACTIONS(3852), 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, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1838), 1, + sym__block_terminator, + STATE(4098), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5838), 1, + sym_body, + STATE(4097), 2, sym_comment, sym_include, - [250073] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253679] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1802), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5850), 1, + sym_body, + STATE(4098), 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, - [250105] = 11, + [253714] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 1, - sym_identifier, - ACTIONS(5931), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(2053), 1, + sym_do_block, + STATE(4129), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4099), 2, sym_comment, sym_include, - aux_sym_include_repeat2, - [250141] = 11, - ACTIONS(67), 1, + [253749] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5942), 1, - sym__terminator, - ACTIONS(5944), 1, - aux_sym_query_definition_token2, - ACTIONS(5946), 1, - aux_sym_query_definition_token3, - STATE(4518), 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(4019), 2, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1659), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4100), 2, sym_comment, sym_include, - [250177] = 12, - ACTIONS(3), 1, + [253784] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - sym_identifier, - ACTIONS(5950), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4291), 1, + sym_on_quit_phrase, + STATE(5016), 1, + sym_on_stop_phrase, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(6051), 1, + sym_body, + STATE(4101), 2, sym_comment, sym_include, - [250215] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253819] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5878), 1, - anon_sym_LPAREN, - ACTIONS(5958), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4262), 1, - sym_function_parameters, - STATE(5165), 1, - sym__function_terminator, - STATE(5168), 1, + STATE(1657), 1, sym__block_terminator, - STATE(5176), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4021), 2, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5780), 1, + sym_body, + STATE(4102), 2, sym_comment, sym_include, - [250251] = 12, - ACTIONS(3), 1, + [253854] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - sym_identifier, - ACTIONS(5950), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, - anon_sym_DQUOTE, - ACTIONS(5956), 1, - aux_sym_include_argument_token1, - ACTIONS(5960), 1, - anon_sym_RBRACE, - STATE(4034), 1, - aux_sym_include_repeat2, - STATE(4642), 1, - sym_include_argument, - STATE(4656), 1, - sym_constant, - STATE(5014), 1, - sym_double_quoted_string, - STATE(4022), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(4868), 1, + sym__block_terminator, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5966), 1, + sym_body, + STATE(4103), 2, sym_comment, sym_include, - [250289] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253889] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5469), 1, - aux_sym_variable_tuning_token7, - STATE(4028), 1, - aux_sym_function_parameter_repeat1, - STATE(4384), 1, - sym_function_parameter_tuning, - ACTIONS(5962), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4023), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4543), 1, + sym_on_quit_phrase, + STATE(4926), 1, + aux_sym_for_statement_repeat1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, + sym_body, + STATE(4104), 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, - [250321] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253924] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6077), 1, + sym__namedot, + STATE(4105), 2, sym_comment, sym_include, - ACTIONS(5471), 3, + ACTIONS(160), 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, - [250353] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [253949] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5964), 1, + ACTIONS(6079), 1, sym__terminator, - ACTIONS(5966), 1, - aux_sym_query_definition_token2, - ACTIONS(5968), 1, + ACTIONS(6081), 1, aux_sym_query_definition_token3, - STATE(4410), 1, + STATE(4487), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4025), 2, + STATE(4106), 2, sym_comment, sym_include, - [250389] = 8, + [253982] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4273), 1, + sym_on_quit_phrase, + STATE(5039), 1, + sym_on_stop_phrase, + STATE(5041), 1, + aux_sym_for_statement_repeat1, + STATE(5993), 1, + sym_body, + STATE(4107), 2, + sym_comment, + sym_include, + [254017] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5970), 1, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, sym_identifier, - STATE(3270), 1, - sym_qualified_name, - STATE(6000), 1, - sym__find_type, - STATE(4026), 2, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(2108), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4108), 2, sym_comment, sym_include, - 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, - [250419] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254052] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5972), 1, - sym__terminator, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2060), 1, + sym__block_terminator, + STATE(4205), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5955), 1, + sym_body, + STATE(4109), 2, sym_comment, sym_include, - [250455] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254087] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2060), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5955), 1, + sym_body, + STATE(4110), 2, sym_comment, sym_include, - aux_sym_function_parameter_repeat1, - [250485] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254122] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4029), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4518), 1, + sym_on_quit_phrase, + STATE(4906), 1, + sym_on_stop_phrase, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(5946), 1, + sym_body, + STATE(4111), 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, - [250517] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254157] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5988), 1, - sym__terminator, - 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, - [250553] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5994), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6083), 1, sym__terminator, - 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, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4613), 1, + aux_sym_data_relation_repeat1, + STATE(6516), 1, + sym_data_relation, + STATE(4112), 2, sym_comment, sym_include, - [250589] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254192] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, + sym_on_stop_phrase, + STATE(5911), 1, + sym_body, + STATE(4113), 2, sym_comment, sym_include, - [250625] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254227] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6006), 1, - sym__terminator, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4472), 1, + sym_on_quit_phrase, + STATE(4746), 1, + sym_on_stop_phrase, + STATE(4748), 1, + aux_sym_for_statement_repeat1, + STATE(6169), 1, + sym_body, + STATE(4114), 2, sym_comment, sym_include, - [250661] = 12, + [254262] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - sym_identifier, - ACTIONS(5950), 1, + ACTIONS(7), 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, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1632), 1, + sym_do_block, + STATE(4100), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4115), 2, sym_comment, sym_include, - [250699] = 12, + [254297] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - sym_identifier, - ACTIONS(5950), 1, + ACTIONS(7), 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, + ACTIONS(623), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1632), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6216), 1, + sym_label, + STATE(4116), 2, sym_comment, sym_include, - [250737] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254332] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, + ACTIONS(3852), 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, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1628), 1, + sym__block_terminator, + STATE(4102), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5884), 1, + sym_body, + STATE(4117), 2, sym_comment, sym_include, - [250775] = 8, - ACTIONS(3), 1, + [254367] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6014), 1, - sym_identifier, - STATE(3272), 1, - sym_qualified_name, - STATE(6063), 1, - sym__find_type, - STATE(4037), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1995), 1, + sym__block_terminator, + STATE(4064), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5585), 1, + sym_body, + STATE(4118), 2, sym_comment, sym_include, - 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, + [254402] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4038), 2, - sym_comment, - sym_include, - ACTIONS(5824), 8, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, 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(6016), 1, - sym_identifier, - STATE(4306), 1, - sym_access_tuning, - STATE(4039), 3, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4481), 1, + sym_on_quit_phrase, + STATE(4758), 1, + sym_on_stop_phrase, + STATE(4759), 1, + aux_sym_for_statement_repeat1, + STATE(5924), 1, + sym_body, + STATE(4119), 2, sym_comment, sym_include, - 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, + [254437] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6021), 1, - sym_identifier, - STATE(4004), 1, - aux_sym_destructor_definition_repeat1, - STATE(4306), 1, - sym_access_tuning, - STATE(4040), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1628), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5884), 1, + sym_body, + STATE(4120), 2, sym_comment, sym_include, - 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, + [254472] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, - anon_sym_COLON, - STATE(416), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6085), 1, + sym__terminator, + STATE(697), 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, + STATE(4600), 1, + aux_sym_data_relation_repeat1, + STATE(6352), 1, + sym_data_relation, + STATE(4121), 2, sym_comment, sym_include, - [250925] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254507] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(5902), 1, + ACTIONS(3852), 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, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4298), 1, + sym_on_quit_phrase, + STATE(5101), 1, + sym_on_stop_phrase, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5565), 1, + sym_body, + STATE(4122), 2, sym_comment, sym_include, - [250963] = 12, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254542] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4640), 1, - sym__namecolon, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(416), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6087), 1, + sym__terminator, + STATE(697), 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, + STATE(4586), 1, + aux_sym_data_relation_repeat1, + STATE(6320), 1, + sym_data_relation, + STATE(4123), 2, sym_comment, sym_include, - [251001] = 11, - ACTIONS(3), 1, + [254577] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6089), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4555), 1, + aux_sym_data_relation_repeat1, + STATE(6443), 1, + sym_data_relation, + STATE(4124), 2, sym_comment, sym_include, - [251036] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254612] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4353), 1, + STATE(4488), 1, sym_on_quit_phrase, - STATE(5053), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(4897), 1, sym_on_stop_phrase, - STATE(5939), 1, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(5889), 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(615), 1, - aux_sym_do_block_token1, - ACTIONS(2631), 1, - sym_identifier, - 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, + STATE(4125), 2, sym_comment, sym_include, - [251106] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254647] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1866), 1, + STATE(2205), 1, sym__block_terminator, - STATE(4103), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6123), 1, + STATE(5983), 1, sym_body, - STATE(4047), 2, + STATE(4126), 2, sym_comment, sym_include, - [251141] = 11, - ACTIONS(67), 1, + [254682] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4355), 1, + sym_on_quit_phrase, + STATE(5099), 1, + sym_on_stop_phrase, + STATE(5100), 1, + aux_sym_for_statement_repeat1, + STATE(5560), 1, + sym_body, + STATE(4127), 2, + sym_comment, + sym_include, + [254717] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6123), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4483), 1, + sym_on_quit_phrase, + STATE(4891), 1, + sym_on_stop_phrase, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, sym_body, - STATE(4048), 2, + STATE(4128), 2, sym_comment, sym_include, - [251176] = 11, + [254752] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(615), 1, + ACTIONS(370), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(1667), 1, + STATE(1989), 1, sym_do_block, - STATE(4053), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6172), 1, + STATE(6550), 1, sym_label, - STATE(4049), 2, + STATE(4129), 2, sym_comment, sym_include, - [251211] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254787] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2412), 1, + STATE(1838), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5549), 1, + STATE(5838), 1, sym_body, - STATE(4050), 2, + STATE(4130), 2, sym_comment, sym_include, - [251246] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254822] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1607), 1, - sym__block_terminator, - STATE(4217), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4914), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5909), 1, + STATE(6094), 1, sym_body, - STATE(4051), 2, + STATE(4131), 2, sym_comment, sym_include, - [251281] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [254857] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1665), 1, - sym__block_terminator, - STATE(4596), 1, + STATE(4166), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4914), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5633), 1, + STATE(6094), 1, sym_body, - STATE(4052), 2, + STATE(4132), 2, sym_comment, sym_include, - [251316] = 11, + [254892] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(615), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(1684), 1, + STATE(1993), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6172), 1, + STATE(6870), 1, sym_label, - STATE(4053), 2, + STATE(4133), 2, sym_comment, sym_include, - [251351] = 5, - ACTIONS(67), 1, + [254927] = 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(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1993), 1, + sym_do_block, + STATE(4229), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6870), 1, + sym_label, + STATE(4134), 2, + sym_comment, + sym_include, + [254962] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4054), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6091), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4616), 1, + aux_sym_data_relation_repeat1, + STATE(6344), 1, + sym_data_relation, + STATE(4135), 2, sym_comment, sym_include, - ACTIONS(6025), 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, - [251374] = 5, - ACTIONS(67), 1, + [254997] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4055), 2, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(4171), 1, + aux_sym_on_statement_repeat2, + STATE(4920), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(4136), 2, sym_comment, sym_include, - 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, + [255032] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6031), 1, - aux_sym_variable_tuning_token8, - STATE(4612), 1, - sym_workfile_tuning, - STATE(4056), 3, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(4920), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(4137), 2, 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, + [255067] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4508), 1, + STATE(4473), 1, sym_on_quit_phrase, - STATE(5111), 1, + STATE(4884), 1, sym_on_stop_phrase, - STATE(5112), 1, + STATE(4885), 1, aux_sym_for_statement_repeat1, - STATE(5760), 1, + STATE(5783), 1, sym_body, - STATE(4057), 2, + STATE(4138), 2, sym_comment, sym_include, - [251459] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255102] = 11, 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(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, - [251494] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4495), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(5124), 1, - aux_sym_for_statement_repeat1, - STATE(5126), 1, + STATE(5022), 1, sym_on_stop_phrase, - STATE(5772), 1, + STATE(5023), 1, + aux_sym_for_statement_repeat1, + STATE(6028), 1, sym_body, - STATE(4059), 2, + STATE(4139), 2, sym_comment, sym_include, - [251529] = 11, + [255137] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(623), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2143), 1, + STATE(1522), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6216), 1, sym_label, - STATE(4060), 2, - sym_comment, - sym_include, - [251564] = 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(6034), 1, - sym__terminator, - ACTIONS(6036), 1, - aux_sym_query_definition_token3, - STATE(4479), 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(4061), 2, + STATE(4140), 2, sym_comment, sym_include, - [251597] = 11, + [255172] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(623), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2143), 1, + STATE(1522), 1, sym_do_block, - STATE(4118), 1, + STATE(4116), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6216), 1, sym_label, - STATE(4062), 2, + STATE(4141), 2, sym_comment, sym_include, - [251632] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255207] = 11, 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(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, - [251667] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4468), 1, + STATE(4470), 1, sym_on_quit_phrase, - STATE(5164), 1, - aux_sym_for_statement_repeat1, - STATE(5169), 1, + STATE(4879), 1, sym_on_stop_phrase, - STATE(5808), 1, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, sym_body, - STATE(4064), 2, + STATE(4142), 2, sym_comment, sym_include, - [251702] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255242] = 11, 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, - ACTIONS(6040), 1, - aux_sym_query_definition_token3, - 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(4065), 2, - sym_comment, - sym_include, - [251735] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4509), 1, + STATE(4344), 1, sym_on_quit_phrase, - STATE(5102), 1, + STATE(4685), 1, aux_sym_for_statement_repeat1, - STATE(5105), 1, + STATE(4706), 1, sym_on_stop_phrase, - STATE(5712), 1, + STATE(5682), 1, sym_body, - STATE(4066), 2, + STATE(4143), 2, sym_comment, sym_include, - [251770] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255277] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2153), 1, + STATE(1526), 1, sym__block_terminator, - STATE(4112), 1, + STATE(4120), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5858), 1, + STATE(5938), 1, sym_body, - STATE(4067), 2, + STATE(4144), 2, sym_comment, sym_include, - [251805] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255312] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2153), 1, + STATE(1526), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5858), 1, + STATE(5938), 1, sym_body, - STATE(4068), 2, + STATE(4145), 2, sym_comment, sym_include, - [251840] = 11, - ACTIONS(67), 1, + [255347] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6093), 1, + aux_sym_buffer_definition_token2, + ACTIONS(6095), 1, + aux_sym_repeat_statement_token1, + ACTIONS(6097), 1, + aux_sym_do_block_token1, + STATE(4146), 2, + sym_comment, + sym_include, + ACTIONS(3607), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [255376] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4452), 1, + STATE(4453), 1, sym_on_quit_phrase, - STATE(5170), 1, + STATE(4873), 1, sym_on_stop_phrase, - STATE(5171), 1, + STATE(4875), 1, aux_sym_for_statement_repeat1, - STATE(5847), 1, + STATE(5754), 1, sym_body, - STATE(4069), 2, + STATE(4147), 2, sym_comment, sym_include, - [251875] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255411] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - STATE(2411), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4070), 2, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4542), 1, + sym_on_quit_phrase, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(4750), 1, + aux_sym_for_statement_repeat1, + STATE(6178), 1, + sym_body, + STATE(4148), 2, sym_comment, sym_include, - [251906] = 11, - ACTIONS(3), 1, + [255446] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4443), 1, + sym_on_quit_phrase, + STATE(4869), 1, + sym_on_stop_phrase, + STATE(4870), 1, + aux_sym_for_statement_repeat1, + STATE(5753), 1, + sym_body, + STATE(4149), 2, sym_comment, sym_include, - [251941] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255481] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4072), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4272), 1, + sym_on_quit_phrase, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, + sym_body, + STATE(4150), 2, sym_comment, sym_include, - 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, + [255516] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4073), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4495), 1, + sym_on_quit_phrase, + STATE(4722), 1, + sym_on_stop_phrase, + STATE(4724), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, + sym_body, + STATE(4151), 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, + [255551] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4536), 1, + sym_on_quit_phrase, + STATE(4751), 1, + sym_on_stop_phrase, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + STATE(6180), 1, + sym_body, + STATE(4152), 2, + sym_comment, + sym_include, + [255586] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(6050), 1, - sym__terminator, - ACTIONS(6052), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6054), 1, + ACTIONS(6059), 1, aux_sym_data_relation_token1, - STATE(416), 1, + ACTIONS(6099), 1, + sym__terminator, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(4554), 1, + STATE(4562), 1, aux_sym_data_relation_repeat1, - STATE(6668), 1, + STATE(6401), 1, sym_data_relation, - STATE(4074), 2, + STATE(4153), 2, sym_comment, sym_include, - [252022] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255621] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4075), 2, + ACTIONS(6103), 1, + aux_sym_variable_tuning_token8, + STATE(4596), 1, + sym_workfile_tuning, + STATE(4154), 3, sym_comment, sym_include, - 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, + aux_sym_workfile_definition_repeat2, + ACTIONS(6101), 4, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_field_definition_token1, + [255648] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4460), 1, + STATE(4438), 1, sym_on_quit_phrase, - STATE(4883), 1, - aux_sym_for_statement_repeat1, - STATE(4889), 1, + STATE(4862), 1, sym_on_stop_phrase, - STATE(5458), 1, + STATE(4863), 1, + aux_sym_for_statement_repeat1, + STATE(5733), 1, sym_body, - STATE(4076), 2, + STATE(4155), 2, sym_comment, sym_include, - [252080] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [255683] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + STATE(1769), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5998), 1, + sym_body, + STATE(4156), 2, + sym_comment, + sym_include, + [255718] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1630), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1769), 1, sym__block_terminator, - STATE(4052), 1, + STATE(4211), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5661), 1, + STATE(5998), 1, sym_body, - STATE(4077), 2, + STATE(4157), 2, sym_comment, sym_include, - [252115] = 11, - ACTIONS(67), 1, + [255753] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(370), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1989), 1, + sym_do_block, + STATE(4065), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6550), 1, + sym_label, + STATE(4158), 2, + sym_comment, + sym_include, + [255788] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4529), 1, + STATE(4489), 1, sym_on_quit_phrase, - STATE(4704), 1, - sym_on_stop_phrase, - STATE(4757), 1, + STATE(5181), 1, aux_sym_for_statement_repeat1, - STATE(5544), 1, + STATE(5182), 1, + sym_on_stop_phrase, + STATE(6158), 1, sym_body, - STATE(4078), 2, + STATE(4159), 2, sym_comment, sym_include, - [252150] = 11, - ACTIONS(67), 1, + [255823] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6106), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4611), 1, + aux_sym_data_relation_repeat1, + STATE(6243), 1, + sym_data_relation, + STATE(4160), 2, + sym_comment, + sym_include, + [255858] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4434), 1, + STATE(4437), 1, sym_on_quit_phrase, - STATE(5162), 1, + STATE(4859), 1, sym_on_stop_phrase, - STATE(5163), 1, + STATE(4860), 1, aux_sym_for_statement_repeat1, - STATE(5857), 1, + STATE(5723), 1, sym_body, - STATE(4079), 2, + STATE(4161), 2, sym_comment, sym_include, - [252185] = 11, - ACTIONS(67), 1, + [255893] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1765), 1, + sym_do_block, + STATE(4214), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(4162), 2, + sym_comment, + sym_include, + [255928] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4255), 1, + STATE(4279), 1, sym_on_quit_phrase, - STATE(4879), 1, + STATE(5059), 1, sym_on_stop_phrase, - STATE(4880), 1, + STATE(5060), 1, aux_sym_for_statement_repeat1, - STATE(5683), 1, + STATE(5898), 1, sym_body, - STATE(4080), 2, + STATE(4163), 2, sym_comment, sym_include, - [252220] = 11, - ACTIONS(67), 1, + [255963] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1765), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(4164), 2, + sym_comment, + sym_include, + [255998] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4364), 1, + STATE(4504), 1, sym_on_quit_phrase, - STATE(4634), 1, - aux_sym_for_statement_repeat1, - STATE(4707), 1, + STATE(5093), 1, sym_on_stop_phrase, - STATE(5491), 1, + STATE(5094), 1, + aux_sym_for_statement_repeat1, + STATE(5555), 1, sym_body, - STATE(4081), 2, + STATE(4165), 2, sym_comment, sym_include, - [252255] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256033] = 11, 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(6058), 1, - sym__terminator, - 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, - [252290] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2291), 1, - sym__block_terminator, - STATE(4596), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4953), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5963), 1, + STATE(6136), 1, sym_body, - STATE(4083), 2, + STATE(4166), 2, sym_comment, sym_include, - [252325] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256068] = 11, 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(6060), 1, - sym__terminator, - 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, - [252360] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4432), 1, + STATE(4435), 1, sym_on_quit_phrase, - STATE(5158), 1, + STATE(4853), 1, sym_on_stop_phrase, - STATE(5159), 1, + STATE(4854), 1, aux_sym_for_statement_repeat1, - STATE(5862), 1, + STATE(5690), 1, sym_body, - STATE(4085), 2, + STATE(4167), 2, sym_comment, sym_include, - [252395] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256103] = 11, 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(6062), 1, - sym__terminator, - 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, - [252430] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4440), 1, + STATE(4268), 1, sym_on_quit_phrase, - STATE(4856), 1, + STATE(4984), 1, sym_on_stop_phrase, - STATE(4858), 1, + STATE(4985), 1, aux_sym_for_statement_repeat1, - STATE(5828), 1, + STATE(6059), 1, sym_body, - STATE(4087), 2, + STATE(4168), 2, sym_comment, sym_include, - [252465] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256138] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(4596), 1, + STATE(4182), 1, aux_sym_repeat_statement_repeat1, - STATE(4721), 1, + STATE(4953), 1, sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5797), 1, + STATE(6136), 1, sym_body, - STATE(4088), 2, + STATE(4169), 2, sym_comment, sym_include, - [252500] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256173] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6064), 1, - sym__terminator, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2118), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6187), 1, + sym_body, + STATE(4170), 2, sym_comment, sym_include, - [252535] = 11, - ACTIONS(67), 1, + [256208] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(4956), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(4171), 2, + sym_comment, + sym_include, + [256243] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2412), 1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2118), 1, sym__block_terminator, - STATE(4113), 1, + STATE(4110), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5549), 1, + STATE(6187), 1, sym_body, - STATE(4090), 2, + STATE(4172), 2, sym_comment, sym_include, - [252570] = 11, + [256278] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(615), 1, + ACTIONS(515), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(1632), 1, - sym_do_block, - STATE(4046), 1, + STATE(4183), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(4956), 1, + sym_do_block, + STATE(5498), 1, sym_widget_phrase, - STATE(6172), 1, + STATE(6371), 1, sym_label, - STATE(4091), 2, + STATE(4173), 2, + sym_comment, + sym_include, + [256313] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4428), 1, + sym_on_quit_phrase, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, + sym_on_stop_phrase, + STATE(5752), 1, + sym_body, + STATE(4174), 2, sym_comment, sym_include, - [252605] = 11, + [256348] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(615), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(1632), 1, + STATE(1935), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6172), 1, + STATE(6870), 1, sym_label, - STATE(4092), 2, + STATE(4175), 2, sym_comment, sym_include, - [252640] = 11, - ACTIONS(67), 1, + [256383] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6108), 1, + sym__terminator, + ACTIONS(6110), 1, + aux_sym_query_definition_token3, + STATE(4533), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4176), 2, + sym_comment, + sym_include, + [256416] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4088), 1, - aux_sym_repeat_statement_repeat1, - STATE(4976), 1, + STATE(1560), 1, sym__block_terminator, - STATE(5323), 1, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5686), 1, + STATE(6010), 1, sym_body, - STATE(4093), 2, + STATE(4177), 2, sym_comment, sym_include, - [252675] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256451] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(4976), 1, + STATE(1560), 1, sym__block_terminator, - STATE(5323), 1, + STATE(4145), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5686), 1, + STATE(6010), 1, sym_body, - STATE(4094), 2, - sym_comment, - sym_include, - [252710] = 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(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, + STATE(4178), 2, sym_comment, sym_include, - [252745] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256486] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4418), 1, + STATE(4460), 1, sym_on_quit_phrase, - STATE(5152), 1, + STATE(4987), 1, sym_on_stop_phrase, - STATE(5156), 1, + STATE(4988), 1, aux_sym_for_statement_repeat1, - STATE(5876), 1, + STATE(5501), 1, sym_body, - STATE(4096), 2, + STATE(4179), 2, sym_comment, sym_include, - [252780] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256521] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6112), 1, + sym__terminator, + ACTIONS(6114), 1, + aux_sym_query_definition_token3, + STATE(4370), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4180), 2, sym_comment, sym_include, - [252815] = 11, - ACTIONS(67), 1, + [256554] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5886), 1, + aux_sym__function_argument_with_mode_token4, + STATE(5587), 1, + sym_argument_pass_type, + ACTIONS(5884), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4181), 2, + sym_comment, + sym_include, + ACTIONS(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [256583] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(4187), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(4721), 1, + STATE(4983), 1, sym__block_terminator, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5797), 1, + STATE(6188), 1, sym_body, - STATE(4098), 2, + STATE(4182), 2, sym_comment, sym_include, - [252850] = 5, - ACTIONS(67), 1, + [256618] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4099), 2, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(4986), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(4183), 2, sym_comment, sym_include, - 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, + [256653] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4514), 1, + STATE(4532), 1, sym_on_quit_phrase, - STATE(5074), 1, - sym_on_stop_phrase, - STATE(5079), 1, + STATE(5051), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(5052), 1, + sym_on_stop_phrase, + STATE(5847), 1, sym_body, - STATE(4100), 2, + STATE(4184), 2, sym_comment, sym_include, - [252908] = 11, - ACTIONS(67), 1, + [256688] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(4197), 1, + aux_sym_on_statement_repeat2, + STATE(4986), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(4185), 2, + sym_comment, + sym_include, + [256723] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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(4102), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5963), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4346), 1, + sym_on_quit_phrase, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(4806), 1, + sym_on_stop_phrase, + STATE(5964), 1, sym_body, - STATE(4101), 2, + STATE(4186), 2, sym_comment, sym_include, - [252943] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256758] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2077), 1, - sym__block_terminator, - STATE(4596), 1, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4201), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(4983), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5642), 1, + STATE(6188), 1, sym_body, - STATE(4102), 2, + STATE(4187), 2, sym_comment, sym_include, - [252978] = 11, - ACTIONS(67), 1, + [256793] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4497), 1, + sym_on_quit_phrase, + STATE(5030), 1, + aux_sym_for_statement_repeat1, + STATE(5032), 1, + sym_on_stop_phrase, + STATE(6007), 1, + sym_body, + STATE(4188), 2, + sym_comment, + sym_include, + [256828] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(1835), 1, + STATE(1590), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5714), 1, + STATE(6123), 1, sym_body, - STATE(4103), 2, + STATE(4189), 2, sym_comment, sym_include, - [253013] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256863] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(1835), 1, + STATE(1590), 1, sym__block_terminator, - STATE(4156), 1, + STATE(4177), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5714), 1, + STATE(6123), 1, sym_body, - STATE(4104), 2, + STATE(4190), 2, sym_comment, sym_include, - [253048] = 11, - ACTIONS(3), 1, + [256898] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(4597), 1, - aux_sym_on_statement_repeat2, - STATE(4682), 1, - sym_do_block, - STATE(5271), 1, - sym_widget_phrase, - STATE(6298), 1, - sym_label, - STATE(4105), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6116), 1, + sym__terminator, + ACTIONS(6118), 1, + aux_sym_query_definition_token3, + STATE(4357), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4191), 2, sym_comment, sym_include, - [253083] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [256931] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - STATE(2077), 1, - sym__block_terminator, - STATE(4209), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5642), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4471), 1, + sym_on_quit_phrase, + STATE(4756), 1, + sym_on_stop_phrase, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(6186), 1, sym_body, - STATE(4106), 2, + STATE(4192), 2, sym_comment, sym_include, - [253118] = 11, - ACTIONS(67), 1, + [256966] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4193), 2, + sym_comment, + sym_include, + ACTIONS(6120), 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, + [256989] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2381), 1, + STATE(1857), 1, sym__block_terminator, - STATE(4083), 1, + STATE(4130), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6097), 1, + STATE(5632), 1, sym_body, - STATE(4107), 2, + STATE(4194), 2, sym_comment, sym_include, - [253153] = 11, + [257024] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261400,42349 +264885,41613 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2344), 1, + STATE(2280), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6198), 1, + STATE(6870), 1, sym_label, - STATE(4108), 2, + STATE(4195), 2, + sym_comment, + sym_include, + [257059] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6122), 1, + aux_sym__block_terminator_token1, + ACTIONS(6124), 1, + aux_sym_access_tuning_token1, + STATE(5419), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2113), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4196), 2, sym_comment, sym_include, - [253188] = 11, + [257090] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(563), 1, + ACTIONS(515), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(1831), 1, - sym_do_block, - STATE(4159), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5005), 1, + sym_do_block, + STATE(5498), 1, sym_widget_phrase, - STATE(6365), 1, + STATE(6371), 1, sym_label, - STATE(4109), 2, + STATE(4197), 2, sym_comment, sym_include, - [253223] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257125] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4407), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(5150), 1, - sym_on_stop_phrase, - STATE(5151), 1, + STATE(5109), 1, aux_sym_for_statement_repeat1, - STATE(5879), 1, + STATE(5110), 1, + sym_on_stop_phrase, + STATE(5718), 1, sym_body, - STATE(4110), 2, + STATE(4198), 2, + sym_comment, + sym_include, + [257160] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6126), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4642), 1, + aux_sym_data_relation_repeat1, + STATE(6347), 1, + sym_data_relation, + STATE(4199), 2, sym_comment, sym_include, - [253258] = 11, + [257195] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(563), 1, + ACTIONS(515), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(1831), 1, - sym_do_block, - STATE(4597), 1, + STATE(4203), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5005), 1, + sym_do_block, + STATE(5498), 1, sym_widget_phrase, - STATE(6365), 1, + STATE(6371), 1, sym_label, - STATE(4111), 2, + STATE(4200), 2, sym_comment, sym_include, - [253293] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257230] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2092), 1, - sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5001), 1, + sym__block_terminator, + STATE(5299), 1, sym_repeat_tuning, - STATE(5733), 1, + STATE(6177), 1, sym_body, - STATE(4112), 2, + STATE(4201), 2, sym_comment, sym_include, - [253328] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257265] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2381), 1, + STATE(1857), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6097), 1, + STATE(5632), 1, sym_body, - STATE(4113), 2, + STATE(4202), 2, sym_comment, sym_include, - [253363] = 11, - ACTIONS(67), 1, + [257300] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(515), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5014), 1, + sym_do_block, + STATE(5498), 1, + sym_widget_phrase, + STATE(6371), 1, + sym_label, + STATE(4203), 2, + sym_comment, + sym_include, + [257335] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6130), 1, + aux_sym_sort_clause_token1, + ACTIONS(6133), 1, + aux_sym_sort_clause_token2, + STATE(4592), 1, + sym_sort_clause, + ACTIONS(6128), 3, anon_sym_COLON, - ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4405), 1, - sym_on_quit_phrase, - STATE(5148), 1, - sym_on_stop_phrase, - STATE(5149), 1, - aux_sym_for_statement_repeat1, - STATE(5882), 1, - sym_body, - STATE(4114), 2, + STATE(4204), 3, sym_comment, sym_include, - [253398] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_phrase_repeat2, + [257364] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(2092), 1, + STATE(1995), 1, sym__block_terminator, - STATE(4136), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5733), 1, + STATE(5585), 1, sym_body, - STATE(4115), 2, + STATE(4205), 2, sym_comment, sym_include, - [253433] = 11, - ACTIONS(3), 1, + [257399] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4447), 1, + sym_on_quit_phrase, + STATE(4760), 1, + sym_on_stop_phrase, + STATE(4761), 1, + aux_sym_for_statement_repeat1, + STATE(6189), 1, + sym_body, + STATE(4206), 2, sym_comment, sym_include, - [253468] = 11, - ACTIONS(3), 1, + [257434] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, + sym_body, + STATE(4207), 2, sym_comment, sym_include, - [253503] = 11, + [257469] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2089), 1, + STATE(2280), 1, sym_do_block, - STATE(4597), 1, + STATE(4133), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6870), 1, sym_label, - STATE(4118), 2, + STATE(4208), 2, sym_comment, sym_include, - [253538] = 11, - ACTIONS(67), 1, + [257504] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4321), 1, + sym_on_quit_phrase, + STATE(4790), 1, + sym_on_stop_phrase, + STATE(4791), 1, + aux_sym_for_statement_repeat1, + STATE(6086), 1, + sym_body, + STATE(4209), 2, + sym_comment, + sym_include, + [257539] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4404), 1, + STATE(4399), 1, sym_on_quit_phrase, - STATE(5130), 1, + STATE(5031), 1, sym_on_stop_phrase, - STATE(5132), 1, + STATE(5035), 1, aux_sym_for_statement_repeat1, - STATE(5887), 1, + STATE(5992), 1, sym_body, - STATE(4119), 2, + STATE(4210), 2, + sym_comment, + sym_include, + [257574] = 11, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1735), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6036), 1, + sym_body, + STATE(4211), 2, sym_comment, sym_include, - [253573] = 10, - ACTIONS(67), 1, + [257609] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1735), 1, + sym__block_terminator, + STATE(4244), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6036), 1, + sym_body, + STATE(4212), 2, + sym_comment, + sym_include, + [257644] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6136), 1, + aux_sym__block_terminator_token1, + ACTIONS(6138), 1, + aux_sym_access_tuning_token1, + STATE(5215), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(1856), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4213), 2, sym_comment, sym_include, - [253606] = 11, + [257675] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(569), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2130), 1, + STATE(1733), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6198), 1, + STATE(6394), 1, sym_label, - STATE(4121), 2, + STATE(4214), 2, sym_comment, sym_include, - [253641] = 11, + [257710] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(569), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2089), 1, + STATE(1733), 1, sym_do_block, - STATE(4137), 1, + STATE(4245), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6394), 1, sym_label, - STATE(4122), 2, + STATE(4215), 2, sym_comment, sym_include, - [253676] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257745] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(4385), 1, - sym_on_quit_phrase, - STATE(4836), 1, - sym_on_stop_phrase, - STATE(4837), 1, - aux_sym_for_statement_repeat1, - STATE(5886), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2279), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6035), 1, sym_body, - STATE(4123), 2, + STATE(4216), 2, sym_comment, sym_include, - [253711] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257780] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6140), 1, + aux_sym__block_terminator_token1, + ACTIONS(6142), 1, + aux_sym_access_tuning_token1, + STATE(5255), 1, + sym_dot_body, + ACTIONS(5894), 2, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(4455), 1, - sym_on_quit_phrase, - STATE(4909), 1, - sym_on_stop_phrase, - STATE(5157), 1, - aux_sym_for_statement_repeat1, - STATE(5812), 1, - sym_body, - STATE(4124), 2, + anon_sym_DOT, + STATE(1606), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4217), 2, sym_comment, sym_include, - [253746] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257811] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2225), 1, + STATE(2279), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4248), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5940), 1, + STATE(6035), 1, sym_body, - STATE(4125), 2, + STATE(4218), 2, sym_comment, sym_include, - [253781] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257846] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6072), 1, - sym__terminator, - 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, - [253814] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6191), 1, sym_body, - STATE(4127), 2, + STATE(4219), 2, sym_comment, sym_include, - [253849] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257881] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2225), 1, + STATE(1607), 1, sym__block_terminator, - STATE(4068), 1, + STATE(4189), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5940), 1, + STATE(6191), 1, sym_body, - STATE(4128), 2, + STATE(4220), 2, sym_comment, sym_include, - [253884] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257916] = 11, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4129), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5848), 1, - aux_sym__function_argument_with_mode_token4, - STATE(5972), 1, - sym_argument_pass_type, - ACTIONS(5846), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4130), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4306), 1, + sym_on_quit_phrase, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(4783), 1, + sym_on_stop_phrase, + STATE(6124), 1, + sym_body, + STATE(4221), 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, + [257951] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4473), 1, + STATE(4313), 1, sym_on_quit_phrase, - STATE(4898), 1, - aux_sym_for_statement_repeat1, - STATE(4901), 1, + STATE(5096), 1, sym_on_stop_phrase, - STATE(5762), 1, + STATE(5097), 1, + aux_sym_for_statement_repeat1, + STATE(6139), 1, sym_body, - STATE(4131), 2, + STATE(4222), 2, sym_comment, sym_include, - [253971] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [257986] = 11, 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, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4464), 1, + STATE(4335), 1, sym_on_quit_phrase, - STATE(4865), 1, + STATE(4770), 1, sym_on_stop_phrase, - STATE(4866), 1, + STATE(4771), 1, aux_sym_for_statement_repeat1, - STATE(5970), 1, + STATE(6131), 1, sym_body, - STATE(4133), 2, + STATE(4223), 2, sym_comment, sym_include, - [254035] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258021] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6082), 1, - sym__namedot, - STATE(4134), 2, + STATE(4224), 2, sym_comment, sym_include, - 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, + ACTIONS(6144), 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, + [258044] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2288), 1, + sym__block_terminator, + STATE(4071), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5693), 1, + sym_body, + STATE(4225), 2, + sym_comment, + sym_include, + [258079] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(6052), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6054), 1, + ACTIONS(6059), 1, aux_sym_data_relation_token1, - ACTIONS(6084), 1, + ACTIONS(6146), 1, sym__terminator, - STATE(416), 1, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(4534), 1, + STATE(4566), 1, aux_sym_data_relation_repeat1, - STATE(6424), 1, + STATE(6707), 1, sym_data_relation, - STATE(4135), 2, + STATE(4226), 2, sym_comment, sym_include, - [254095] = 11, - ACTIONS(67), 1, + [258114] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2288), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5693), 1, + sym_body, + STATE(4227), 2, + sym_comment, + sym_include, + [258149] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(2059), 1, + STATE(2177), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5756), 1, + STATE(5863), 1, sym_body, - STATE(4136), 2, + STATE(4228), 2, sym_comment, sym_include, - [254130] = 11, + [258184] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2055), 1, + STATE(2222), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6870), 1, sym_label, - STATE(4137), 2, + STATE(4229), 2, sym_comment, sym_include, - [254165] = 11, + [258219] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2055), 1, + STATE(2222), 1, sym_do_block, - STATE(4161), 1, + STATE(4074), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6870), 1, sym_label, - STATE(4138), 2, + STATE(4230), 2, sym_comment, sym_include, - [254200] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258254] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4484), 1, + STATE(4485), 1, sym_on_quit_phrase, - STATE(4965), 1, - aux_sym_for_statement_repeat1, - STATE(4985), 1, + STATE(4716), 1, sym_on_stop_phrase, - STATE(5740), 1, + STATE(4717), 1, + aux_sym_for_statement_repeat1, + STATE(5745), 1, sym_body, - STATE(4139), 2, + STATE(4231), 2, sym_comment, sym_include, - [254235] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258289] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(2059), 1, + STATE(2177), 1, sym__block_terminator, - STATE(4163), 1, + STATE(4170), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5756), 1, + STATE(5863), 1, sym_body, - STATE(4140), 2, + STATE(4232), 2, sym_comment, sym_include, - [254270] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258324] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6086), 1, + ACTIONS(6148), 1, sym__terminator, - ACTIONS(6088), 1, + ACTIONS(6150), 1, aux_sym_query_definition_token3, - STATE(4513), 1, + STATE(4284), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4141), 2, + STATE(4233), 2, sym_comment, sym_include, - [254303] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258357] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4482), 1, + STATE(4417), 1, sym_on_quit_phrase, - STATE(4921), 1, - aux_sym_for_statement_repeat1, - STATE(4933), 1, + STATE(4997), 1, sym_on_stop_phrase, - STATE(5743), 1, + STATE(4998), 1, + aux_sym_for_statement_repeat1, + STATE(5502), 1, sym_body, - STATE(4142), 2, + STATE(4234), 2, sym_comment, sym_include, - [254338] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258392] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4235), 2, + sym_comment, + sym_include, + ACTIONS(6152), 7, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1925), 1, - sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5512), 1, - sym_body, - STATE(4143), 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, + [258415] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6154), 1, + sym__terminator, + ACTIONS(6156), 1, + aux_sym_query_definition_token3, + STATE(4386), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4236), 2, + sym_comment, + sym_include, + [258448] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4237), 2, sym_comment, sym_include, - [254373] = 11, - ACTIONS(67), 1, + ACTIONS(3587), 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, + [258471] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4238), 2, + sym_comment, + sym_include, + ACTIONS(6158), 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, + [258494] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 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, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4280), 1, + sym_on_quit_phrase, + STATE(5009), 1, + sym_on_stop_phrase, + STATE(5010), 1, + aux_sym_for_statement_repeat1, + STATE(6045), 1, + sym_body, + STATE(4239), 2, + sym_comment, + sym_include, + [258529] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4240), 2, sym_comment, sym_include, - [254408] = 11, - ACTIONS(67), 1, + ACTIONS(6160), 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, + [258552] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4241), 2, + sym_comment, + sym_include, + ACTIONS(6162), 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, + [258575] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1925), 1, + STATE(2229), 1, sym__block_terminator, - STATE(4048), 1, + STATE(4227), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5512), 1, + STATE(5518), 1, sym_body, - STATE(4145), 2, + STATE(4242), 2, sym_comment, sym_include, - [254443] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258610] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4439), 1, + STATE(4340), 1, sym_on_quit_phrase, - STATE(4893), 1, - aux_sym_for_statement_repeat1, - STATE(4896), 1, + STATE(5104), 1, sym_on_stop_phrase, - STATE(5569), 1, + STATE(5105), 1, + aux_sym_for_statement_repeat1, + STATE(5572), 1, sym_body, - STATE(4146), 2, + STATE(4243), 2, sym_comment, sym_include, - [254478] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258645] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1718), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(6047), 1, + sym_body, + STATE(4244), 2, + sym_comment, + sym_include, + [258680] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1715), 1, + sym_do_block, + STATE(4570), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(4245), 2, sym_comment, sym_include, - [254511] = 11, - ACTIONS(67), 1, + [258715] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(569), 1, + aux_sym_do_block_token1, + ACTIONS(2647), 1, + sym_identifier, + ACTIONS(2651), 1, + aux_sym_input_expression_token2, + STATE(1715), 1, + sym_do_block, + STATE(4262), 1, + aux_sym_on_statement_repeat2, + STATE(5498), 1, + sym_widget_phrase, + STATE(6394), 1, + sym_label, + STATE(4246), 2, + sym_comment, + sym_include, + [258750] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2168), 1, + sym__block_terminator, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5914), 1, sym_body, - STATE(4148), 2, + STATE(4247), 2, sym_comment, sym_include, - [254546] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258785] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1607), 1, + STATE(2229), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5909), 1, + STATE(5518), 1, sym_body, - STATE(4149), 2, + STATE(4248), 2, sym_comment, sym_include, - [254581] = 10, - ACTIONS(67), 1, + [258820] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4469), 1, + sym_on_quit_phrase, + STATE(5140), 1, + sym_on_stop_phrase, + STATE(5141), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(4249), 2, + sym_comment, + sym_include, + [258855] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4250), 2, sym_comment, sym_include, - [254614] = 11, - ACTIONS(67), 1, + ACTIONS(6164), 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, + [258878] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4251), 2, + sym_comment, + sym_include, + ACTIONS(6166), 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, + [258901] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4453), 1, + STATE(4463), 1, sym_on_quit_phrase, - STATE(4860), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(4861), 1, + STATE(5003), 1, aux_sym_for_statement_repeat1, - STATE(5815), 1, + STATE(6049), 1, sym_body, - STATE(4151), 2, + STATE(4252), 2, sym_comment, sym_include, - [254649] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258936] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - STATE(2274), 1, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2215), 1, sym__block_terminator, - STATE(4246), 1, + STATE(4228), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6066), 1, + STATE(5642), 1, sym_body, - STATE(4152), 2, + STATE(4253), 2, sym_comment, sym_include, - [254684] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [258971] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1681), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1718), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4266), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(6089), 1, + STATE(6047), 1, sym_body, - STATE(4153), 2, + STATE(4254), 2, sym_comment, sym_include, - [254719] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259006] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2141), 1, + sym__block_terminator, + STATE(4216), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, + sym_repeat_tuning, + STATE(5699), 1, sym_body, - STATE(4154), 2, + STATE(4255), 2, sym_comment, sym_include, - [254754] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259041] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4480), 1, + STATE(4365), 1, sym_on_quit_phrase, - STATE(4911), 1, - aux_sym_for_statement_repeat1, - STATE(4913), 1, + STATE(4766), 1, sym_on_stop_phrase, - STATE(5749), 1, + STATE(4767), 1, + aux_sym_for_statement_repeat1, + STATE(6194), 1, sym_body, - STATE(4155), 2, + STATE(4256), 2, sym_comment, sym_include, - [254789] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259076] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6168), 1, + sym__terminator, + ACTIONS(6170), 1, + aux_sym_query_definition_token3, + STATE(4269), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4257), 2, sym_comment, sym_include, - [254824] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259109] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1810), 1, + STATE(2215), 1, sym__block_terminator, - STATE(4188), 1, + STATE(4621), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5775), 1, + STATE(5642), 1, sym_body, - STATE(4157), 2, + STATE(4258), 2, sym_comment, sym_include, - [254859] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259144] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(6172), 1, aux_sym__block_terminator_token1, - STATE(2280), 1, + ACTIONS(6174), 1, + aux_sym_access_tuning_token1, + STATE(5259), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2211), 2, sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6015), 1, - sym_body, - STATE(4158), 2, + sym__procedure_terminator, + STATE(4259), 2, sym_comment, sym_include, - [254894] = 11, - ACTIONS(3), 1, + [259175] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1808), 1, - sym_do_block, - STATE(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(4159), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4491), 1, + sym_on_quit_phrase, + STATE(5111), 1, + sym_on_stop_phrase, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5844), 1, + sym_body, + STATE(4260), 2, sym_comment, sym_include, - [254929] = 11, - ACTIONS(3), 1, + [259210] = 11, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4432), 1, + sym_on_quit_phrase, + STATE(4993), 1, + sym_on_stop_phrase, + STATE(4994), 1, + aux_sym_for_statement_repeat1, + STATE(6054), 1, + sym_body, + STATE(4261), 2, sym_comment, sym_include, - [254964] = 11, + [259245] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(569), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2043), 1, + STATE(1705), 1, sym_do_block, - STATE(4597), 1, + STATE(4570), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6394), 1, sym_label, - STATE(4161), 2, + STATE(4262), 2, sym_comment, sym_include, - [254999] = 11, + [259280] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(284), 1, + ACTIONS(569), 1, aux_sym_do_block_token1, - ACTIONS(2631), 1, + ACTIONS(2647), 1, sym_identifier, - ACTIONS(2635), 1, + ACTIONS(2651), 1, aux_sym_input_expression_token2, - STATE(2043), 1, + STATE(1705), 1, sym_do_block, - STATE(4182), 1, + STATE(4057), 1, aux_sym_on_statement_repeat2, - STATE(5271), 1, + STATE(5498), 1, sym_widget_phrase, - STATE(6498), 1, + STATE(6394), 1, sym_label, - STATE(4162), 2, + STATE(4263), 2, sym_comment, sym_include, - [255034] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259315] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, + ACTIONS(5170), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2044), 1, + STATE(2205), 1, sym__block_terminator, - STATE(4596), 1, + STATE(4247), 1, aux_sym_repeat_statement_repeat1, - STATE(5323), 1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5744), 1, + STATE(5983), 1, sym_body, - STATE(4163), 2, + STATE(4264), 2, sym_comment, sym_include, - [255069] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259350] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2280), 1, - sym__block_terminator, - STATE(4125), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6015), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4294), 1, + sym_on_quit_phrase, + STATE(4774), 1, + sym_on_stop_phrase, + STATE(4775), 1, + aux_sym_for_statement_repeat1, + STATE(5950), 1, sym_body, - STATE(4164), 2, + STATE(4265), 2, sym_comment, sym_include, - [255104] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259385] = 11, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5160), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(4253), 1, - aux_sym_repeat_statement_repeat1, - STATE(4780), 1, + ACTIONS(5170), 1, + aux_sym_repeat_tuning_token1, + STATE(1706), 1, sym__block_terminator, - STATE(5323), 1, + STATE(4621), 1, + aux_sym_repeat_statement_repeat1, + STATE(5299), 1, sym_repeat_tuning, - STATE(5726), 1, + STATE(6056), 1, sym_body, - STATE(4165), 2, + STATE(4266), 2, sym_comment, sym_include, - [255139] = 11, - ACTIONS(67), 1, + [259420] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6178), 1, + aux_sym_variable_definition_token2, + STATE(4267), 2, + sym_comment, + sym_include, + ACTIONS(6176), 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, + [259444] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4367), 1, - sym_on_quit_phrase, - STATE(4636), 1, + STATE(4977), 1, sym_on_stop_phrase, - STATE(4646), 1, + STATE(4978), 1, aux_sym_for_statement_repeat1, - STATE(5508), 1, + STATE(6079), 1, sym_body, - STATE(4166), 2, + STATE(4268), 2, sym_comment, sym_include, - [255174] = 11, - ACTIONS(3), 1, + [259476] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2279), 1, - sym_do_block, - STATE(4108), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6198), 1, - sym_label, - STATE(4167), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6182), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4269), 2, sym_comment, sym_include, - [255209] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259506] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6186), 1, + aux_sym_do_tuning_token1, + STATE(4952), 1, + sym_do_tuning, + ACTIONS(6184), 3, 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, + aux_sym_stop_after_phrase_token1, + STATE(4270), 3, sym_comment, sym_include, - [255244] = 11, - ACTIONS(3), 1, + aux_sym_do_block_repeat1, + [259532] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1592), 1, - sym_do_block, - STATE(4092), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6172), 1, - sym_label, - STATE(4169), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5331), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4271), 2, sym_comment, sym_include, - [255279] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [259562] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4335), 1, - sym_on_quit_phrase, - STATE(5018), 1, - aux_sym_for_statement_repeat1, - STATE(5019), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(5747), 1, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5844), 1, sym_body, - STATE(4170), 2, + STATE(4272), 2, sym_comment, sym_include, - [255314] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259594] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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(4780), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5726), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5022), 1, + sym_on_stop_phrase, + STATE(5023), 1, + aux_sym_for_statement_repeat1, + STATE(6028), 1, sym_body, - STATE(4171), 2, + STATE(4273), 2, sym_comment, sym_include, - [255349] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259626] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6100), 1, - aux_sym__block_terminator_token1, - ACTIONS(6102), 1, - aux_sym_access_tuning_token1, - STATE(5324), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4172), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6189), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4274), 2, sym_comment, sym_include, - STATE(4806), 2, - sym__block_terminator, - sym__procedure_terminator, - [255380] = 11, - ACTIONS(67), 1, + [259656] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6191), 1, + sym__terminator, + STATE(4278), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4275), 2, + sym_comment, + sym_include, + [259686] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(4860), 1, + sym__namedot, + STATE(3382), 1, + aux_sym_qualified_name_repeat1, + STATE(4276), 2, + sym_comment, + sym_include, + ACTIONS(4126), 4, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5180), 1, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + [259712] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6009), 1, aux_sym__block_terminator_token1, - STATE(1681), 1, + STATE(2250), 1, + sym__function_terminator, + STATE(2276), 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, + STATE(5487), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4277), 2, sym_comment, sym_include, - [255415] = 11, - ACTIONS(3), 1, + [259742] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6193), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4278), 2, sym_comment, sym_include, - [255450] = 11, - ACTIONS(3), 1, + [259772] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2279), 1, - sym_do_block, - STATE(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6198), 1, - sym_label, - STATE(4175), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5031), 1, + sym_on_stop_phrase, + STATE(5035), 1, + aux_sym_for_statement_repeat1, + STATE(5992), 1, + sym_body, + STATE(4279), 2, sym_comment, sym_include, - [255485] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [259804] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4322), 1, - sym_on_quit_phrase, - STATE(5006), 1, + STATE(4997), 1, sym_on_stop_phrase, - STATE(5012), 1, + STATE(4998), 1, aux_sym_for_statement_repeat1, - STATE(5698), 1, + STATE(5502), 1, sym_body, - STATE(4176), 2, + STATE(4280), 2, + sym_comment, + sym_include, + [259836] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + aux_sym_variable_definition_token2, + STATE(4281), 2, sym_comment, sym_include, - [255520] = 10, - ACTIONS(67), 1, + ACTIONS(6195), 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, + [259860] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6201), 1, + aux_sym_variable_definition_token2, + STATE(4282), 2, + sym_comment, + sym_include, + 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, + [259884] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6104), 1, + ACTIONS(6168), 1, sym__terminator, - ACTIONS(6106), 1, - aux_sym_query_definition_token3, - STATE(4303), 1, + STATE(4269), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4177), 2, + STATE(4283), 2, sym_comment, sym_include, - [255553] = 11, - ACTIONS(67), 1, + [259914] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6203), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4284), 2, + sym_comment, + sym_include, + [259944] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4436), 1, - sym_on_quit_phrase, - STATE(4804), 1, - sym_on_stop_phrase, - STATE(4827), 1, - aux_sym_for_statement_repeat1, - STATE(5697), 1, + STATE(5957), 1, sym_body, - STATE(4178), 2, + STATE(4285), 2, sym_comment, sym_include, - [255588] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5731), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [259972] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4487), 1, - sym_on_quit_phrase, - STATE(4744), 1, - sym_on_stop_phrase, - STATE(4899), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(5536), 1, sym_body, - STATE(4179), 2, + STATE(4286), 2, sym_comment, sym_include, - [255623] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5537), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [260000] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - 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, + aux_sym_on_error_phrase_token1, + STATE(5826), 1, sym_body, - STATE(4180), 2, + STATE(4287), 2, sym_comment, sym_include, - [255658] = 11, - ACTIONS(67), 1, + STATE(5942), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [260028] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5075), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5580), 1, - sym_body, - STATE(4181), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6205), 1, + sym_identifier, + STATE(3278), 1, + sym_function_call, + STATE(3385), 1, + sym_qualified_name, + STATE(5595), 1, + sym_object_access, + STATE(5893), 1, + sym_new_expression, + STATE(4288), 2, sym_comment, sym_include, - [255693] = 11, + [260060] = 9, 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, + ACTIONS(6207), 1, sym_identifier, - ACTIONS(2635), 1, - aux_sym_input_expression_token2, - STATE(2035), 1, - sym_do_block, - STATE(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6498), 1, - sym_label, - STATE(4182), 2, + ACTIONS(6209), 1, + sym__integer_literal, + ACTIONS(6211), 1, + sym__escaped_string, + STATE(5418), 1, + sym__decimal_literal, + STATE(4289), 2, sym_comment, sym_include, - [255728] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5038), 2, + sym_number_literal, + sym_string_literal, + [260090] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - 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, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5045), 1, + sym_on_stop_phrase, + STATE(5046), 1, + aux_sym_for_statement_repeat1, + STATE(5977), 1, sym_body, - STATE(4183), 2, + STATE(4290), 2, sym_comment, sym_include, - [255763] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260122] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4321), 1, - sym_on_quit_phrase, STATE(5002), 1, sym_on_stop_phrase, - STATE(5004), 1, + STATE(5003), 1, aux_sym_for_statement_repeat1, - STATE(5678), 1, + STATE(6049), 1, sym_body, - STATE(4184), 2, + STATE(4291), 2, sym_comment, sym_include, - [255798] = 11, - ACTIONS(67), 1, + [260154] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(6213), 1, sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - 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, + STATE(4292), 3, sym_comment, sym_include, - [255833] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [260178] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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(4186), 2, + ACTIONS(6216), 1, + aux_sym_else_statement_token1, + STATE(4475), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4293), 2, sym_comment, sym_include, - [255868] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2803), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [260206] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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(4725), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5838), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4722), 1, + sym_on_stop_phrase, + STATE(4724), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, sym_body, - STATE(4187), 2, + STATE(4294), 2, sym_comment, sym_include, - [255903] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260238] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6220), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4295), 2, sym_comment, sym_include, - [255938] = 11, - ACTIONS(3), 1, + [260268] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1790), 1, - sym_do_block, - STATE(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(4189), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6222), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4296), 2, sym_comment, sym_include, - [255973] = 11, - ACTIONS(3), 1, + [260298] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1790), 1, - sym_do_block, - STATE(4206), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(4190), 2, + ACTIONS(6172), 1, + aux_sym__block_terminator_token1, + STATE(5251), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2175), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4297), 2, sym_comment, sym_include, - [256008] = 11, - ACTIONS(3), 1, + [260326] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(4597), 1, - aux_sym_on_statement_repeat2, - STATE(4728), 1, - sym_do_block, - STATE(5271), 1, - sym_widget_phrase, - STATE(6298), 1, - sym_label, - STATE(4191), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5096), 1, + sym_on_stop_phrase, + STATE(5097), 1, + aux_sym_for_statement_repeat1, + STATE(6139), 1, + sym_body, + STATE(4298), 2, sym_comment, sym_include, - [256043] = 11, - ACTIONS(67), 1, + [260358] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4860), 1, + sym__namedot, + STATE(3382), 1, + aux_sym_qualified_name_repeat1, + STATE(4299), 2, + sym_comment, + sym_include, + ACTIONS(4054), 4, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + [260384] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4339), 1, - sym_on_quit_phrase, - STATE(4748), 1, - aux_sym_for_statement_repeat1, - STATE(4749), 1, + STATE(4774), 1, sym_on_stop_phrase, - STATE(5602), 1, + STATE(4775), 1, + aux_sym_for_statement_repeat1, + STATE(5950), 1, sym_body, - STATE(4192), 2, + STATE(4300), 2, sym_comment, sym_include, - [256078] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260416] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4319), 1, - sym_on_quit_phrase, - STATE(4998), 1, + STATE(4737), 1, sym_on_stop_phrase, - STATE(4999), 1, + STATE(4738), 1, aux_sym_for_statement_repeat1, - STATE(5669), 1, + STATE(6163), 1, sym_body, - STATE(4193), 2, + STATE(4301), 2, sym_comment, sym_include, - [256113] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260448] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6110), 1, - aux_sym__block_terminator_token1, - 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, - sym__procedure_terminator, - STATE(4194), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6224), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4302), 2, sym_comment, sym_include, - [256144] = 11, - ACTIONS(67), 1, + [260478] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6228), 1, + aux_sym_variable_definition_token2, + STATE(4303), 2, + sym_comment, + sym_include, + ACTIONS(6226), 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, + [260502] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, + ACTIONS(6140), 1, aux_sym__block_terminator_token1, - STATE(2313), 1, + STATE(5257), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(1589), 2, sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6104), 1, - sym_body, - STATE(4195), 2, + sym__procedure_terminator, + STATE(4304), 2, sym_comment, sym_include, - [256179] = 11, - ACTIONS(3), 1, + [260530] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(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, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4482), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6446), 1, + sym_interface_body, + STATE(4305), 2, sym_comment, sym_include, - [256214] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260562] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4389), 1, - sym_on_quit_phrase, - STATE(4844), 1, + STATE(4766), 1, sym_on_stop_phrase, - STATE(4845), 1, + STATE(4767), 1, aux_sym_for_statement_repeat1, - STATE(5870), 1, + STATE(6194), 1, sym_body, - STATE(4197), 2, + STATE(4306), 2, sym_comment, sym_include, - [256249] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260594] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(6230), 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, + ACTIONS(6232), 1, + aux_sym_when_expression_token1, + ACTIONS(6234), 1, + aux_sym_case_otherwise_branch_token1, + STATE(4612), 1, + aux_sym_case_body_repeat1, + STATE(5351), 1, + sym_case_when_branch, + STATE(6850), 1, + sym_case_otherwise_branch, + STATE(4307), 2, + sym_comment, + sym_include, + [260626] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4475), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4308), 2, sym_comment, sym_include, - [256284] = 11, - ACTIONS(67), 1, + ACTIONS(2787), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [260652] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6236), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4309), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [260682] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4476), 1, - sym_on_quit_phrase, - STATE(4902), 1, - aux_sym_for_statement_repeat1, - STATE(4904), 1, - sym_on_stop_phrase, - STATE(5754), 1, + STATE(6037), 1, sym_body, - STATE(4199), 2, + STATE(4310), 2, + sym_comment, + sym_include, + STATE(6021), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [260710] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4475), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4311), 2, sym_comment, sym_include, - [256319] = 11, - ACTIONS(67), 1, + ACTIONS(2787), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [260736] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6154), 1, + sym__terminator, + STATE(4386), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4312), 2, + sym_comment, + sym_include, + [260766] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2313), 1, - sym__block_terminator, - STATE(4158), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6104), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5090), 1, + sym_on_stop_phrase, + STATE(5091), 1, + aux_sym_for_statement_repeat1, + STATE(5542), 1, sym_body, - STATE(4200), 2, + STATE(4313), 2, sym_comment, sym_include, - [256354] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260798] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6114), 1, + ACTIONS(6148), 1, sym__terminator, - ACTIONS(6116), 1, - aux_sym_query_definition_token3, - STATE(4293), 1, + STATE(4284), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4201), 2, + STATE(4314), 2, sym_comment, sym_include, - [256387] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [260828] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6118), 1, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6238), 1, sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(4544), 1, - aux_sym_data_relation_repeat1, - STATE(6472), 1, - sym_data_relation, - STATE(4202), 2, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4315), 2, sym_comment, sym_include, - [256422] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [260858] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - STATE(1956), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4203), 2, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + STATE(5636), 1, + sym_body, + STATE(4316), 2, sym_comment, sym_include, - [256453] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5908), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [260886] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(6240), 1, + aux_sym_else_statement_token1, + STATE(4475), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4317), 2, + sym_comment, + sym_include, + ACTIONS(2801), 3, aux_sym__block_terminator_token1, - STATE(1955), 1, - sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5565), 1, - sym_body, - STATE(4204), 2, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [260914] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5174), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4318), 2, sym_comment, sym_include, - [256488] = 11, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [260944] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4838), 1, + aux_sym_variable_definition_token2, + STATE(4319), 2, + sym_comment, + sym_include, + ACTIONS(4836), 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, + [260968] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4320), 2, + sym_comment, + sym_include, + ACTIONS(6243), 6, anon_sym_COLON, - ACTIONS(5138), 1, + sym__terminator, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, + anon_sym_COMMA, 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, + aux_sym_on_error_phrase_token1, + [260990] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4770), 1, + sym_on_stop_phrase, + STATE(4771), 1, + aux_sym_for_statement_repeat1, + STATE(6131), 1, sym_body, - STATE(4205), 2, + STATE(4321), 2, sym_comment, sym_include, - [256523] = 11, + [261022] = 6, 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, + ACTIONS(6245), 1, + anon_sym_COMMA, + STATE(4322), 3, + sym_comment, + sym_include, + aux_sym_on_statement_repeat1, + ACTIONS(3617), 4, 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, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [261046] = 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(6248), 1, + sym_identifier, + STATE(5065), 1, + sym_object_access, + STATE(5881), 1, + sym_qualified_name, + STATE(4323), 2, sym_comment, sym_include, - [256558] = 11, + STATE(5513), 2, + sym_function_call, + sym_new_expression, + [261076] = 8, 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, + ACTIONS(6252), 1, + aux_sym_field_definition_token1, + STATE(4510), 1, + aux_sym_widget_phrase_repeat1, + STATE(5066), 1, + sym_widget_field, + STATE(4324), 2, + sym_comment, + sym_include, + ACTIONS(6250), 3, 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, + aux_sym_do_block_token1, + [261104] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4325), 2, sym_comment, sym_include, - [256593] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6254), 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, + [261126] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4483), 1, - sym_on_quit_phrase, - STATE(4941), 1, + STATE(5030), 1, aux_sym_for_statement_repeat1, - STATE(4948), 1, + STATE(5032), 1, sym_on_stop_phrase, - STATE(5742), 1, + STATE(6007), 1, sym_body, - STATE(4208), 2, + STATE(4326), 2, sym_comment, sym_include, - [256628] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261158] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, - 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, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6256), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4327), 2, sym_comment, sym_include, - [256663] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [261188] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5236), 1, + ACTIONS(6051), 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, + STATE(5322), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4328), 2, sym_comment, sym_include, - [256698] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4815), 2, + sym__block_terminator, + sym__procedure_terminator, + [261216] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(1955), 1, - sym__block_terminator, - STATE(4143), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5565), 1, - sym_body, - STATE(4211), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6258), 1, + sym__terminator, + STATE(4315), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4329), 2, sym_comment, sym_include, - [256733] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [261246] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4330), 2, + sym_comment, + sym_include, + ACTIONS(6260), 6, anon_sym_COLON, - ACTIONS(3817), 1, + sym__terminator, + aux_sym__block_terminator_token1, anon_sym_COMMA, - ACTIONS(6023), 1, + aux_sym_repeat_tuning_token1, 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, + [261268] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4292), 1, - sym_on_quit_phrase, - STATE(4986), 1, - sym_on_stop_phrase, - STATE(4988), 1, + STATE(4779), 1, aux_sym_for_statement_repeat1, - STATE(5648), 1, + STATE(4783), 1, + sym_on_stop_phrase, + STATE(6124), 1, sym_body, - STATE(4213), 2, + STATE(4331), 2, sym_comment, sym_include, - [256803] = 11, - ACTIONS(67), 1, + [261300] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4332), 2, + sym_comment, + sym_include, + ACTIONS(5864), 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, + [261322] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 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, + STATE(6142), 1, sym_body, - STATE(4214), 2, + STATE(4333), 2, sym_comment, sym_include, - [256838] = 11, - ACTIONS(3), 1, + STATE(5931), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261350] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(1772), 1, - sym_do_block, - STATE(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6365), 1, - sym_label, - STATE(4215), 2, + STATE(4334), 2, sym_comment, sym_include, - [256873] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6262), 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, + [261372] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4481), 1, - sym_on_quit_phrase, - STATE(4847), 1, + STATE(4760), 1, sym_on_stop_phrase, - STATE(4848), 1, + STATE(4761), 1, aux_sym_for_statement_repeat1, - STATE(5866), 1, + STATE(6189), 1, sym_body, - STATE(4216), 2, + STATE(4335), 2, sym_comment, sym_include, - [256908] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261404] = 9, 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(1554), 1, - sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5786), 1, - sym_body, - STATE(4217), 2, - sym_comment, - sym_include, - [256943] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(1554), 1, - sym__block_terminator, - STATE(4183), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5786), 1, - sym_body, - STATE(4218), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5174), 1, + sym__terminator, + STATE(4343), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4336), 2, sym_comment, sym_include, - [256978] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [261434] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, + ACTIONS(6136), 1, aux_sym__block_terminator_token1, - ACTIONS(6126), 1, - aux_sym_access_tuning_token1, - STATE(5295), 1, + STATE(5222), 1, sym_dot_body, - ACTIONS(5874), 2, + ACTIONS(5894), 2, anon_sym_COLON, anon_sym_DOT, - STATE(1709), 2, + STATE(1834), 2, sym__block_terminator, sym__procedure_terminator, - STATE(4219), 2, + STATE(4337), 2, sym_comment, sym_include, - [257009] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261462] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1715), 1, - sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6110), 1, + aux_sym_on_error_phrase_token1, + STATE(5750), 1, sym_body, - STATE(4220), 2, + STATE(4338), 2, sym_comment, sym_include, - [257044] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5785), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261490] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4221), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4290), 1, - sym_on_quit_phrase, - STATE(4983), 1, + STATE(5009), 1, sym_on_stop_phrase, - STATE(4984), 1, + STATE(5010), 1, aux_sym_for_statement_repeat1, - STATE(5652), 1, + STATE(6045), 1, sym_body, - STATE(4223), 2, + STATE(4339), 2, sym_comment, sym_include, - [257137] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261522] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 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, + STATE(5099), 1, sym_on_stop_phrase, - STATE(5865), 1, + STATE(5100), 1, + aux_sym_for_statement_repeat1, + STATE(5560), 1, sym_body, - STATE(4224), 2, + STATE(4340), 2, sym_comment, sym_include, - [257172] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261554] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1715), 1, - sym__block_terminator, - STATE(4153), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, + aux_sym_on_error_phrase_token1, STATE(6110), 1, sym_body, - STATE(4225), 2, + STATE(4341), 2, sym_comment, sym_include, - [257207] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5956), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261582] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4283), 1, - sym_on_quit_phrase, - STATE(4966), 1, - sym_on_stop_phrase, - STATE(4970), 1, - aux_sym_for_statement_repeat1, - STATE(5466), 1, + STATE(6083), 1, sym_body, - STATE(4226), 2, + STATE(4342), 2, sym_comment, sym_include, - [257242] = 11, - ACTIONS(3), 1, + STATE(5758), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261610] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5297), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4343), 2, sym_comment, sym_include, - [257277] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [261640] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4415), 1, - sym_on_quit_phrase, - STATE(4849), 1, + STATE(4696), 1, sym_on_stop_phrase, - STATE(4850), 1, + STATE(4699), 1, aux_sym_for_statement_repeat1, - STATE(5864), 1, + STATE(5639), 1, sym_body, - STATE(4228), 2, + STATE(4344), 2, sym_comment, sym_include, - [257312] = 11, - ACTIONS(67), 1, + [261672] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6264), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4345), 2, + sym_comment, + sym_include, + [261702] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4276), 1, - sym_on_quit_phrase, - STATE(4961), 1, + STATE(4790), 1, sym_on_stop_phrase, - STATE(4963), 1, + STATE(4791), 1, aux_sym_for_statement_repeat1, - STATE(5632), 1, + STATE(6086), 1, sym_body, - STATE(4229), 2, + STATE(4346), 2, sym_comment, sym_include, - [257347] = 11, - ACTIONS(3), 1, + [261734] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6172), 1, - sym_label, - STATE(4230), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6266), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4347), 2, sym_comment, sym_include, - [257382] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261764] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6067), 1, + sym__terminator, + STATE(4345), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4348), 2, sym_comment, sym_include, - [257417] = 11, - ACTIONS(3), 1, + [261794] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2057), 1, - sym_do_block, - STATE(4121), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6198), 1, - sym_label, - STATE(4232), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6268), 1, + sym__terminator, + STATE(4347), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4349), 2, sym_comment, sym_include, - [257452] = 11, - ACTIONS(3), 1, + [261824] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(4597), 1, - aux_sym_on_statement_repeat2, - STATE(4957), 1, - sym_do_block, - STATE(5271), 1, - sym_widget_phrase, - STATE(6298), 1, - sym_label, - STATE(4233), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6270), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4350), 2, sym_comment, sym_include, - [257487] = 11, - ACTIONS(67), 1, + [261854] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(6272), 1, sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6130), 1, - sym__terminator, - STATE(416), 1, + STATE(4420), 1, aux_sym_qualified_name_repeat1, - STATE(4581), 1, - aux_sym_data_relation_repeat1, - STATE(6369), 1, - sym_data_relation, - STATE(4234), 2, + STATE(4351), 2, sym_comment, sym_include, - [257522] = 5, - ACTIONS(67), 1, + ACTIONS(4128), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [261880] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4235), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6274), 1, + sym_identifier, + STATE(3286), 1, + sym_function_call, + STATE(3396), 1, + sym_qualified_name, + STATE(5595), 1, + sym_object_access, + STATE(5893), 1, + sym_new_expression, + STATE(4352), 2, sym_comment, sym_include, - 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, + [261912] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 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, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + STATE(5990), 1, sym_body, - STATE(4236), 2, + STATE(4353), 2, sym_comment, sym_include, - [257580] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5989), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261940] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4449), 1, - sym_on_quit_phrase, - STATE(4857), 1, + STATE(5084), 1, sym_on_stop_phrase, - STATE(4862), 1, + STATE(5085), 1, aux_sym_for_statement_repeat1, - STATE(5831), 1, + STATE(5524), 1, sym_body, - STATE(4237), 2, + STATE(4354), 2, sym_comment, sym_include, - [257615] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [261972] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4307), 1, - sym_on_quit_phrase, - STATE(4784), 1, + STATE(5093), 1, sym_on_stop_phrase, - STATE(4788), 1, + STATE(5094), 1, aux_sym_for_statement_repeat1, - STATE(5713), 1, + STATE(5555), 1, sym_body, - STATE(4238), 2, + STATE(4355), 2, sym_comment, sym_include, - [257650] = 11, + [262004] = 9, 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6276), 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, + STATE(5064), 1, + sym_object_access, + STATE(6074), 1, + sym_qualified_name, + STATE(4356), 2, sym_comment, sym_include, - [257685] = 8, - ACTIONS(67), 1, + STATE(5513), 2, + sym_function_call, + sym_new_expression, + [262034] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6278), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4357), 2, + sym_comment, + sym_include, + [262064] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6280), 1, + sym__terminator, + STATE(4350), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4358), 2, + sym_comment, + sym_include, + [262094] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4842), 1, + aux_sym_variable_definition_token2, + STATE(4359), 2, + sym_comment, + sym_include, + ACTIONS(4840), 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, + [262118] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6122), 1, + aux_sym__block_terminator_token1, + STATE(5368), 1, + sym_dot_body, + ACTIONS(5894), 2, anon_sym_COLON, - anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - STATE(4240), 3, + anon_sym_DOT, + STATE(2277), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4360), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat2, - [257714] = 5, - ACTIONS(67), 1, + [262146] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4593), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6345), 1, + sym_interface_body, + STATE(4361), 2, + sym_comment, + sym_include, + [262178] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4241), 2, + ACTIONS(6284), 1, + aux_sym_variable_definition_token2, + STATE(4362), 2, sym_comment, sym_include, - 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, + ACTIONS(6282), 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, + [262202] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, aux_sym_field_definition_token1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - [257737] = 11, - ACTIONS(3), 1, + ACTIONS(6286), 1, + sym__terminator, + STATE(4309), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4363), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [262232] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(4597), 1, - aux_sym_on_statement_repeat2, - STATE(4873), 1, - sym_do_block, - STATE(5271), 1, - sym_widget_phrase, - STATE(6298), 1, - sym_label, - STATE(4242), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6116), 1, + sym__terminator, + STATE(4357), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4364), 2, sym_comment, sym_include, - [257772] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262262] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(6180), 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, + STATE(4756), 1, sym_on_stop_phrase, - STATE(5794), 1, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(6186), 1, sym_body, - STATE(4243), 2, + STATE(4365), 2, sym_comment, sym_include, - [257807] = 11, - ACTIONS(3), 1, + [262294] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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(2057), 1, - sym_do_block, - STATE(4597), 1, - aux_sym_on_statement_repeat2, - STATE(5271), 1, - sym_widget_phrase, - STATE(6198), 1, - sym_label, - STATE(4244), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6288), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4366), 2, sym_comment, sym_include, - [257842] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262324] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 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, + STATE(6193), 1, sym_body, - STATE(4245), 2, + STATE(4367), 2, sym_comment, sym_include, - [257877] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6116), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [262352] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, - STATE(2343), 1, - sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5991), 1, - sym_body, - STATE(4246), 2, + ACTIONS(6290), 1, + aux_sym_else_statement_token1, + STATE(4446), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4368), 2, sym_comment, sym_include, - [257912] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2803), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [262380] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(4247), 2, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4361), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6311), 1, + sym_interface_body, + STATE(4369), 2, sym_comment, sym_include, - 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, + [262412] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6146), 1, + ACTIONS(6293), 1, sym__terminator, - ACTIONS(6148), 1, - aux_sym_query_definition_token3, - STATE(4430), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4248), 2, + STATE(4370), 2, sym_comment, sym_include, - [257972] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262442] = 8, 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(4181), 1, - aux_sym_repeat_statement_repeat1, - STATE(5113), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5503), 1, - sym_body, - STATE(4249), 2, - sym_comment, - sym_include, - [258007] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4394), 1, - sym_on_quit_phrase, - STATE(4868), 1, - aux_sym_for_statement_repeat1, - STATE(4874), 1, - sym_on_stop_phrase, - STATE(5904), 1, - sym_body, - STATE(4250), 2, + ACTIONS(6295), 1, + aux_sym_else_statement_token1, + STATE(4446), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4371), 2, sym_comment, sym_include, - [258042] = 11, - ACTIONS(67), 1, + ACTIONS(2801), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [262470] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4236), 1, - aux_sym_repeat_statement_repeat1, - STATE(4725), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5838), 1, - sym_body, - STATE(4251), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6297), 1, + sym_identifier, + STATE(3289), 1, + sym_function_call, + STATE(3375), 1, + sym_qualified_name, + STATE(5595), 1, + sym_object_access, + STATE(5893), 1, + sym_new_expression, + STATE(4372), 2, sym_comment, sym_include, - [258077] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262502] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4462), 1, - sym_on_quit_phrase, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(4894), 1, - sym_on_stop_phrase, - STATE(5770), 1, + STATE(5576), 1, sym_body, - STATE(4252), 2, + STATE(4373), 2, sym_comment, sym_include, - [258112] = 11, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5812), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [262530] = 9, 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(5113), 1, - sym__block_terminator, - STATE(5323), 1, - sym_repeat_tuning, - STATE(5503), 1, - sym_body, - STATE(4253), 2, - sym_comment, - sym_include, - [258147] = 11, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5138), 1, + ACTIONS(5896), 1, aux_sym__block_terminator_token1, - ACTIONS(5142), 1, - aux_sym_repeat_tuning_token1, - STATE(2274), 1, + STATE(1557), 1, + sym__function_terminator, + STATE(1588), 1, sym__block_terminator, - STATE(4596), 1, - aux_sym_repeat_statement_repeat1, - STATE(5323), 1, - sym_repeat_tuning, - STATE(6066), 1, - sym_body, - STATE(4254), 2, - sym_comment, - sym_include, - [258182] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(5268), 1, + sym_dot_body, + ACTIONS(5894), 2, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4865), 1, - sym_on_stop_phrase, - STATE(4866), 1, - aux_sym_for_statement_repeat1, - STATE(5970), 1, - sym_body, - STATE(4255), 2, + anon_sym_DOT, + STATE(4374), 2, sym_comment, sym_include, - [258214] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262560] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4885), 1, + STATE(4805), 1, aux_sym_for_statement_repeat1, - STATE(4887), 1, + STATE(4806), 1, sym_on_stop_phrase, - STATE(5794), 1, + STATE(5964), 1, sym_body, - STATE(4256), 2, + STATE(4375), 2, sym_comment, sym_include, - [258246] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262592] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5670), 1, - sym_body, - STATE(4257), 2, + STATE(4593), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6603), 1, + sym_interface_body, + STATE(4376), 2, sym_comment, sym_include, - STATE(5671), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [258274] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262624] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5250), 1, + ACTIONS(6286), 1, sym__terminator, - STATE(4419), 1, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4258), 2, + STATE(4377), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [258304] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262654] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5250), 1, + ACTIONS(5331), 1, sym__terminator, - STATE(4271), 1, + STATE(4506), 1, aux_sym_temp_table_definition_repeat2, - STATE(4259), 2, + STATE(4378), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [258334] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262684] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4260), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(6154), 1, - sym_identifier, - STATE(5022), 1, - sym_object_access, - STATE(5814), 1, - sym_qualified_name, - STATE(4261), 2, + ACTIONS(6301), 1, + aux_sym_variable_definition_token2, + STATE(4379), 2, sym_comment, sym_include, - STATE(6109), 2, - sym_function_call, - sym_new_expression, - [258386] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6299), 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, + [262708] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5958), 1, + ACTIONS(6013), 1, aux_sym__block_terminator_token1, - STATE(5069), 1, - sym__function_terminator, - STATE(5168), 1, + STATE(4817), 1, sym__block_terminator, - STATE(5223), 1, + STATE(4876), 1, + sym__function_terminator, + STATE(5340), 1, sym_dot_body, - ACTIONS(5874), 2, + ACTIONS(5894), 2, anon_sym_COLON, anon_sym_DOT, - STATE(4262), 2, + STATE(4380), 2, sym_comment, sym_include, - [258416] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262738] = 8, 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(4263), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(5463), 1, + STATE(5714), 1, sym_body, - STATE(4264), 2, + STATE(4381), 2, sym_comment, sym_include, - STATE(6032), 3, + STATE(5716), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [258470] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262766] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(5599), 1, + STATE(5895), 1, sym_body, - STATE(4265), 2, + STATE(4382), 2, sym_comment, sym_include, - STATE(5597), 3, + STATE(6004), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [258498] = 10, - ACTIONS(3), 1, + [262794] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(6156), 1, - sym_identifier, - 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, + ACTIONS(6025), 1, + aux_sym__block_terminator_token1, + STATE(1799), 1, + sym__function_terminator, + STATE(1833), 1, + sym__block_terminator, + STATE(5247), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4383), 2, sym_comment, sym_include, - [258530] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262824] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6160), 1, + ACTIONS(6305), 1, aux_sym_variable_definition_token2, - STATE(4267), 2, + STATE(4384), 2, sym_comment, sym_include, - ACTIONS(6158), 5, + ACTIONS(6303), 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, + [262848] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6164), 1, + ACTIONS(4830), 1, aux_sym_variable_definition_token2, - STATE(4268), 2, + STATE(4385), 2, sym_comment, sym_include, - ACTIONS(6162), 5, + ACTIONS(4828), 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, + [262872] = 9, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6166), 1, + ACTIONS(6307), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4270), 2, + STATE(4386), 2, sym_comment, sym_include, - [258638] = 8, - ACTIONS(67), 1, + [262902] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(4387), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat2, - [258666] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3601), 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, + [262924] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4272), 2, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4422), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6526), 1, + sym_interface_body, + STATE(4388), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [258696] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [262956] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6110), 1, - aux_sym__block_terminator_token1, - STATE(5287), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(2278), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4273), 2, + ACTIONS(6309), 1, + anon_sym_COMMA, + STATE(4389), 3, sym_comment, sym_include, - [258724] = 9, + aux_sym_data_relation_repeat1, + ACTIONS(6071), 4, + sym__terminator, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [262980] = 5, 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(6176), 1, - sym_identifier, - STATE(5047), 1, - sym_object_access, - STATE(6055), 1, - sym_qualified_name, - STATE(4274), 2, + STATE(4390), 2, sym_comment, sym_include, - STATE(6109), 2, - sym_function_call, - sym_new_expression, - [258754] = 10, - ACTIONS(67), 1, + ACTIONS(6312), 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, + [263002] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(4391), 2, + sym_comment, + sym_include, + ACTIONS(3227), 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, + [263024] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(5180), 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, + STATE(6000), 1, sym_body, - STATE(4275), 2, + STATE(4392), 2, sym_comment, sym_include, - [258786] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5994), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [263052] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4949), 1, - sym_on_stop_phrase, - STATE(4951), 1, - aux_sym_for_statement_repeat1, - STATE(5614), 1, + STATE(5625), 1, sym_body, - STATE(4276), 2, + STATE(4393), 2, sym_comment, sym_include, - [258818] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6046), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [263080] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6178), 1, + ACTIONS(6314), 1, sym__terminator, - STATE(4347), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4277), 2, + STATE(4394), 2, sym_comment, sym_include, - [258848] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263110] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4278), 2, - sym_comment, - sym_include, - ACTIONS(6180), 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, - [258870] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6318), 1, + aux_sym_variable_definition_token2, + STATE(4395), 2, sym_comment, sym_include, - ACTIONS(2795), 3, + ACTIONS(6316), 5, 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, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [263134] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5997), 1, + aux_sym__block_terminator_token1, + STATE(2114), 1, + sym__function_terminator, + STATE(2165), 1, + sym__block_terminator, + STATE(5252), 1, + sym_dot_body, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4396), 2, sym_comment, sym_include, - 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, + [263164] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6187), 1, + ACTIONS(6320), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4281), 2, + STATE(4397), 2, sym_comment, sym_include, - [258956] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263194] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4454), 1, - aux_sym_if_statement_repeat1, - STATE(4692), 1, - sym_else_statement, - STATE(4282), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6061), 1, + sym__terminator, + STATE(4505), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4398), 2, sym_comment, sym_include, - 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, + [263224] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4958), 1, + STATE(4758), 1, sym_on_stop_phrase, - STATE(4959), 1, + STATE(4759), 1, aux_sym_for_statement_repeat1, - STATE(5627), 1, + STATE(5924), 1, sym_body, - STATE(4283), 2, + STATE(4399), 2, sym_comment, sym_include, - [259014] = 10, - ACTIONS(3), 1, + [263256] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(6189), 1, - sym_identifier, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5125), 1, + sym_on_stop_phrase, + STATE(6152), 1, + sym_body, + STATE(4400), 2, sym_comment, sym_include, - [259046] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263288] = 9, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [259076] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4818), 1, - aux_sym_variable_definition_token2, - STATE(4286), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6322), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4401), 2, sym_comment, sym_include, - 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, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [263318] = 9, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6120), 1, - aux_sym__block_terminator_token1, - STATE(5428), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(1924), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4287), 2, - sym_comment, - sym_include, - [259128] = 9, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6193), 1, + ACTIONS(6112), 1, sym__terminator, - STATE(4429), 1, + STATE(4370), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4288), 2, + STATE(4402), 2, sym_comment, sym_include, - [259158] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263348] = 10, 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(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, - [259190] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4961), 1, - sym_on_stop_phrase, - STATE(4963), 1, + STATE(5051), 1, aux_sym_for_statement_repeat1, - STATE(5632), 1, + STATE(5052), 1, + sym_on_stop_phrase, + STATE(5847), 1, sym_body, - STATE(4290), 2, + STATE(4403), 2, sym_comment, sym_include, - [259222] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263380] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5190), 1, + ACTIONS(5200), 1, sym__terminator, - STATE(4392), 1, + STATE(4456), 1, aux_sym_temp_table_definition_repeat2, - STATE(4291), 2, + STATE(4404), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [259252] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263410] = 9, 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(4966), 1, - sym_on_stop_phrase, - STATE(4970), 1, - aux_sym_for_statement_repeat1, - STATE(5466), 1, - sym_body, - STATE(4292), 2, - sym_comment, - sym_include, - [259284] = 9, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6195), 1, + ACTIONS(6324), 1, sym__terminator, - STATE(4429), 1, + STATE(4528), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4293), 2, + STATE(4405), 2, sym_comment, sym_include, - [259314] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263440] = 9, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4294), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6197), 1, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5200), 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, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4406), 2, sym_comment, sym_include, - [259366] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [263470] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6201), 1, + ACTIONS(6328), 1, aux_sym_variable_definition_token2, - STATE(4296), 2, + STATE(4407), 2, sym_comment, sym_include, - ACTIONS(6199), 5, + 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, - [259390] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - anon_sym_DOT, - STATE(4297), 2, - sym_comment, - sym_include, - [259420] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263494] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4454), 1, - aux_sym_if_statement_repeat1, - STATE(4692), 1, - sym_else_statement, - STATE(4298), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6332), 1, + aux_sym_variable_definition_token2, + STATE(4408), 2, sym_comment, sym_include, - ACTIONS(2779), 3, + ACTIONS(6330), 5, 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(73), 1, - anon_sym_LBRACE, - STATE(4300), 2, - sym_comment, - sym_include, - 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, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [263518] = 9, 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(4983), 1, - sym_on_stop_phrase, - STATE(4984), 1, - aux_sym_for_statement_repeat1, - STATE(5652), 1, - sym_body, - STATE(4301), 2, - sym_comment, - sym_include, - [259528] = 9, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6114), 1, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5225), 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, + STATE(4499), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4409), 2, sym_comment, sym_include, - [259558] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [263548] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4305), 2, + STATE(4410), 2, sym_comment, sym_include, - ACTIONS(6207), 6, + ACTIONS(6334), 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, - [259640] = 5, - ACTIONS(3), 1, + [263570] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4306), 2, + ACTIONS(6336), 1, + aux_sym_else_statement_token1, + STATE(4672), 1, + sym_else_statement, + ACTIONS(2780), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + STATE(4411), 3, sym_comment, sym_include, - 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, + aux_sym_if_statement_repeat1, + [263596] = 8, 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(4748), 1, - aux_sym_for_statement_repeat1, - STATE(4749), 1, - sym_on_stop_phrase, - STATE(5602), 1, - sym_body, - STATE(4307), 2, - sym_comment, - sym_include, - [259694] = 9, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6211), 1, + ACTIONS(6339), 1, sym__terminator, - STATE(4429), 1, - aux_sym_query_definition_repeat1, - STATE(4830), 1, + ACTIONS(6341), 1, + aux_sym_query_definition_tuning_token1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(6344), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4308), 2, - sym_comment, - sym_include, - [259724] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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, + STATE(4412), 3, sym_comment, sym_include, - ACTIONS(6213), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [259752] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_definition_repeat1, + [263624] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5190), 1, + ACTIONS(5225), 1, sym__terminator, - STATE(4271), 1, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4310), 2, + STATE(4413), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [259782] = 8, - ACTIONS(3), 1, + [263654] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6217), 1, - sym_identifier, - STATE(3023), 1, - sym_qualified_name, - STATE(5692), 1, - sym_for_phrase, - STATE(4311), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5079), 1, + sym_on_stop_phrase, + STATE(5081), 1, + aux_sym_for_statement_repeat1, + STATE(5516), 1, + sym_body, + STATE(4414), 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, + [263686] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6347), 1, + sym_identifier, + STATE(3306), 1, + sym_function_call, + STATE(3374), 1, + sym_qualified_name, + STATE(5595), 1, + sym_object_access, + STATE(5893), 1, + sym_new_expression, + STATE(4415), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [259840] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263718] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, + ACTIONS(3852), 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, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + STATE(6106), 1, + sym_body, + STATE(4416), 2, sym_comment, sym_include, - [259872] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6146), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [263746] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4804), 1, + STATE(4987), 1, sym_on_stop_phrase, - STATE(4827), 1, + STATE(4988), 1, aux_sym_for_statement_repeat1, - STATE(5697), 1, + STATE(5501), 1, sym_body, - STATE(4314), 2, + STATE(4417), 2, sym_comment, sym_include, - [259904] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263778] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6104), 1, + STATE(4418), 2, + sym_comment, + sym_include, + ACTIONS(6349), 6, + anon_sym_COLON, 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, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [263800] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6353), 1, + aux_sym_variable_definition_token2, + STATE(4419), 2, sym_comment, sym_include, - [259934] = 7, + ACTIONS(6351), 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, + [263824] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6223), 1, + ACTIONS(6272), 1, sym__namedot, - STATE(4366), 1, + STATE(4292), 1, aux_sym_qualified_name_repeat1, - STATE(4316), 2, + STATE(4420), 2, sym_comment, sym_include, - ACTIONS(4087), 4, + ACTIONS(134), 4, sym_identifier, sym__terminator, anon_sym_LBRACK, aux_sym_scope_tuning_token1, - [259960] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [263850] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6227), 1, - aux_sym_variable_definition_token2, - STATE(4317), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6108), 1, + sym__terminator, + STATE(4533), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4421), 2, sym_comment, sym_include, - 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, + [263880] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4593), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6316), 1, + sym_interface_body, + STATE(4422), 2, + sym_comment, + sym_include, + [263912] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6231), 1, + ACTIONS(4834), 1, aux_sym_variable_definition_token2, - STATE(4318), 2, + STATE(4423), 2, sym_comment, sym_include, - ACTIONS(6229), 5, + ACTIONS(4832), 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, + [263936] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4986), 1, - sym_on_stop_phrase, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(5648), 1, - sym_body, - STATE(4319), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6355), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4424), 2, sym_comment, sym_include, - [260040] = 8, - ACTIONS(67), 1, + [263966] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6258), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4425), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [263996] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6100), 1, - aux_sym__block_terminator_token1, - STATE(5187), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4320), 2, + STATE(4426), 2, sym_comment, sym_include, - STATE(5153), 2, - sym__block_terminator, - sym__procedure_terminator, - [260068] = 10, - ACTIONS(67), 1, + ACTIONS(6357), 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, + [264018] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5587), 1, + sym_argument_pass_type, + ACTIONS(5884), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4427), 2, + sym_comment, + sym_include, + ACTIONS(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [264044] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4992), 1, + STATE(5059), 1, sym_on_stop_phrase, - STATE(4993), 1, + STATE(5060), 1, aux_sym_for_statement_repeat1, - STATE(5655), 1, + STATE(5898), 1, sym_body, - STATE(4321), 2, + STATE(4428), 2, sym_comment, sym_include, - [260100] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264076] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4998), 1, - sym_on_stop_phrase, - STATE(4999), 1, + STATE(5109), 1, aux_sym_for_statement_repeat1, - STATE(5669), 1, + STATE(5110), 1, + sym_on_stop_phrase, + STATE(5718), 1, sym_body, - STATE(4322), 2, + STATE(4429), 2, sym_comment, sym_include, - [260132] = 8, + [264108] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6233), 1, + ACTIONS(6209), 1, + sym__integer_literal, + ACTIONS(6211), 1, + sym__escaped_string, + ACTIONS(6359), 1, sym_identifier, - ACTIONS(6238), 1, - aux_sym_field_definition_token1, - STATE(4782), 1, - sym_widget_field, - ACTIONS(6236), 2, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - STATE(4323), 3, + STATE(5418), 1, + sym__decimal_literal, + STATE(4430), 2, sym_comment, sym_include, - aux_sym_widget_phrase_repeat1, - [260160] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5285), 2, + sym_number_literal, + sym_string_literal, + [264138] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(6361), 1, + sym__terminator, + ACTIONS(6363), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(6366), 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, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [260190] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4431), 3, + sym_comment, + sym_include, + aux_sym_temp_table_definition_repeat2, + [264166] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6245), 1, - aux_sym_do_tuning_token1, - STATE(4926), 1, - sym_do_tuning, - ACTIONS(6243), 3, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - STATE(4325), 3, + STATE(4984), 1, + sym_on_stop_phrase, + STATE(4985), 1, + aux_sym_for_statement_repeat1, + STATE(6059), 1, + sym_body, + STATE(4432), 2, sym_comment, sym_include, - aux_sym_do_block_repeat1, - [260216] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264198] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5115), 1, + aux_sym_for_statement_repeat1, + STATE(5120), 1, + sym_on_stop_phrase, + STATE(5752), 1, + sym_body, + STATE(4433), 2, sym_comment, sym_include, - [260246] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264230] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(5688), 1, + STATE(5958), 1, sym_body, - STATE(4327), 2, + STATE(4434), 2, sym_comment, sym_include, - STATE(6131), 3, + STATE(5968), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [260274] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264258] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4328), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4850), 1, + sym_on_stop_phrase, + STATE(4851), 1, + aux_sym_for_statement_repeat1, + STATE(5681), 1, + sym_body, + STATE(4435), 2, sym_comment, sym_include, - 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, - [260296] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264290] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4329), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6369), 1, + sym__terminator, + STATE(4424), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4436), 2, sym_comment, sym_include, - ACTIONS(6250), 6, + [264320] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, anon_sym_COLON, - sym__terminator, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, anon_sym_COMMA, - aux_sym_repeat_tuning_token1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - [260318] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4853), 1, + sym_on_stop_phrase, + STATE(4854), 1, + aux_sym_for_statement_repeat1, + STATE(5690), 1, + sym_body, + STATE(4437), 2, + sym_comment, + sym_include, + [264352] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(6018), 1, + STATE(4855), 1, + sym_on_stop_phrase, + STATE(4856), 1, + aux_sym_for_statement_repeat1, + STATE(5704), 1, sym_body, - STATE(4330), 2, + STATE(4438), 2, sym_comment, sym_include, - STATE(6017), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [260346] = 10, - ACTIONS(67), 1, + [264384] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, - anon_sym_COLON, - 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, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6371), 1, + sym_identifier, + STATE(4836), 1, + sym_object_access, + STATE(6078), 1, + sym_qualified_name, + STATE(4439), 2, sym_comment, sym_include, - [260378] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5513), 2, + sym_function_call, + sym_new_expression, + [264414] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6241), 1, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6373), 1, sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4332), 2, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4440), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [260408] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264444] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6252), 1, - anon_sym_COMMA, - STATE(4333), 3, + ACTIONS(6377), 1, + aux_sym_variable_definition_token2, + STATE(4441), 2, sym_comment, sym_include, - 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, + ACTIONS(6375), 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, + [264468] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6379), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4442), 2, sym_comment, sym_include, - ACTIONS(6255), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [260460] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264498] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5002), 1, + STATE(4859), 1, sym_on_stop_phrase, - STATE(5004), 1, + STATE(4860), 1, aux_sym_for_statement_repeat1, - STATE(5678), 1, + STATE(5723), 1, sym_body, - STATE(4335), 2, + STATE(4443), 2, sym_comment, sym_include, - [260492] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264530] = 9, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, - anon_sym_COLON, - 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, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5194), 1, + sym__terminator, + STATE(4525), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4444), 2, sym_comment, sym_include, - [260550] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [264560] = 10, 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(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, - [260582] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4990), 1, + STATE(5181), 1, aux_sym_for_statement_repeat1, - STATE(5000), 1, + STATE(5182), 1, sym_on_stop_phrase, - STATE(6093), 1, + STATE(6158), 1, sym_body, - STATE(4339), 2, + STATE(4445), 2, sym_comment, sym_include, - [260614] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264592] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4340), 2, + ACTIONS(6295), 1, + aux_sym_else_statement_token1, + STATE(4411), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4446), 2, sym_comment, sym_include, - ACTIONS(6257), 6, - anon_sym_COLON, - sym__terminator, + ACTIONS(2774), 3, 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, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [264620] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [260664] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5006), 1, + STATE(4751), 1, sym_on_stop_phrase, - STATE(5012), 1, + STATE(4752), 1, aux_sym_for_statement_repeat1, - STATE(5698), 1, + STATE(6180), 1, sym_body, - STATE(4342), 2, + STATE(4447), 2, sym_comment, sym_include, - [260696] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264652] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4343), 2, + ACTIONS(6383), 1, + aux_sym_variable_definition_token2, + STATE(4448), 2, sym_comment, sym_include, - ACTIONS(6259), 6, - anon_sym_COLON, - sym__terminator, + ACTIONS(6381), 5, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [260718] = 9, - ACTIONS(3), 1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [264676] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6385), 1, + sym__terminator, + STATE(4401), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4449), 2, sym_comment, sym_include, - STATE(6109), 2, - sym_function_call, - sym_new_expression, - [260748] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [264706] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5018), 1, - aux_sym_for_statement_repeat1, - STATE(5019), 1, - sym_on_stop_phrase, - STATE(5747), 1, - sym_body, - STATE(4345), 2, + ACTIONS(6389), 1, + aux_sym_variable_definition_token2, + STATE(4450), 2, sym_comment, sym_include, - [260780] = 6, + ACTIONS(6387), 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, + [264730] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, + ACTIONS(6272), 1, sym__namedot, - STATE(4346), 3, + STATE(4420), 1, + aux_sym_qualified_name_repeat1, + STATE(4451), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(110), 4, + ACTIONS(4056), 4, sym_identifier, sym__terminator, anon_sym_LBRACK, aux_sym_scope_tuning_token1, - [260804] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264756] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6266), 1, + ACTIONS(6391), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4347), 2, + STATE(4452), 2, sym_comment, sym_include, - [260834] = 9, - ACTIONS(67), 1, + [264786] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4862), 1, + sym_on_stop_phrase, + STATE(4863), 1, + aux_sym_for_statement_repeat1, + STATE(5733), 1, + sym_body, + STATE(4453), 2, + sym_comment, + sym_include, + [264818] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6393), 1, sym__terminator, - ACTIONS(5134), 1, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4454), 2, + sym_comment, + sym_include, + [264848] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - STATE(4399), 1, + ACTIONS(6385), 1, + sym__terminator, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4348), 2, + STATE(4455), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [260864] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264878] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5774), 1, - sym_body, - STATE(4349), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5317), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4456), 2, sym_comment, sym_include, - STATE(6118), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [260892] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [264908] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - sym__terminator, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - STATE(4271), 1, + ACTIONS(5317), 1, + sym__terminator, + STATE(4509), 1, aux_sym_temp_table_definition_repeat2, - STATE(4350), 2, + STATE(4457), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [260922] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264938] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6268), 1, + ACTIONS(6395), 1, sym__terminator, - STATE(4426), 1, + STATE(4442), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4351), 2, + STATE(4458), 2, sym_comment, sym_include, - [260952] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264968] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5222), 1, + ACTIONS(5194), 1, sym__terminator, - STATE(4355), 1, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4352), 2, + STATE(4459), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [260982] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [264998] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5024), 1, + STATE(4979), 1, sym_on_stop_phrase, - STATE(5038), 1, + STATE(4980), 1, aux_sym_for_statement_repeat1, - STATE(5798), 1, + STATE(6060), 1, sym_body, - STATE(4353), 2, + STATE(4460), 2, sym_comment, sym_include, - [261014] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265030] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(5202), 1, - sym__terminator, - STATE(4332), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4354), 2, + STATE(5768), 1, + sym_argument_pass_type, + ACTIONS(6397), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4461), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [261044] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4856), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [265056] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(5202), 1, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6399), 1, sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4355), 2, + STATE(4274), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4462), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [261074] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265086] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5523), 1, + STATE(4993), 1, + sym_on_stop_phrase, + STATE(4994), 1, + aux_sym_for_statement_repeat1, + STATE(6054), 1, sym_body, - STATE(4356), 2, + STATE(4463), 2, sym_comment, sym_include, - STATE(6001), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [261102] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265118] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6272), 1, - aux_sym_variable_definition_token2, - STATE(4357), 2, - sym_comment, - sym_include, - 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, - [261126] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5863), 1, + STATE(4740), 1, + sym_on_stop_phrase, + STATE(4741), 1, + aux_sym_for_statement_repeat1, + STATE(6165), 1, sym_body, - STATE(4358), 2, + STATE(4464), 2, sym_comment, sym_include, - STATE(6101), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [261154] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265150] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6276), 1, - aux_sym_variable_definition_token2, - STATE(4359), 2, - sym_comment, - sym_include, - 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, - [261178] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, + ACTIONS(4656), 1, aux_sym_inherits_token1, - ACTIONS(5912), 1, + ACTIONS(5892), 1, anon_sym_COLON, - STATE(4444), 1, + STATE(4376), 1, aux_sym_interface_statement_repeat1, - STATE(5615), 1, + STATE(5799), 1, sym_interface_tuning, - STATE(5620), 1, + STATE(5800), 1, sym_inherits, - STATE(6242), 1, + STATE(6629), 1, sym_interface_body, - STATE(4360), 2, + STATE(4465), 2, sym_comment, sym_include, - [261210] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265182] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4466), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [261240] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6401), 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, + [265204] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5924), 1, - aux_sym__block_terminator_token1, - STATE(2271), 1, - sym__function_terminator, - STATE(2367), 1, - sym__block_terminator, - STATE(5246), 1, - sym_dot_body, - ACTIONS(5874), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4362), 2, + ACTIONS(6405), 1, + aux_sym_variable_definition_token2, + STATE(4467), 2, sym_comment, sym_include, - [261270] = 5, + ACTIONS(6403), 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, + [265228] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4363), 2, + ACTIONS(6407), 1, + sym_identifier, + STATE(3021), 1, + sym_qualified_name, + STATE(5660), 1, + sym_for_phrase, + STATE(4468), 2, sym_comment, sym_include, - 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_SLASH, + ACTIONS(6409), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [265256] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4852), 1, - aux_sym_for_statement_repeat1, - STATE(4855), 1, + STATE(5095), 1, sym_on_stop_phrase, - STATE(5707), 1, + STATE(5103), 1, + aux_sym_for_statement_repeat1, + STATE(5824), 1, sym_body, - STATE(4364), 2, + STATE(4469), 2, sym_comment, sym_include, - [261324] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265288] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5053), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(4869), 1, sym_on_stop_phrase, - STATE(5939), 1, + STATE(4870), 1, + aux_sym_for_statement_repeat1, + STATE(5753), 1, sym_body, - STATE(4365), 2, + STATE(4470), 2, sym_comment, sym_include, - [261356] = 7, - ACTIONS(3), 1, + [265320] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6223), 1, - sym__namedot, - STATE(4346), 1, - aux_sym_qualified_name_repeat1, - STATE(4366), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(4750), 1, + aux_sym_for_statement_repeat1, + STATE(6178), 1, + sym_body, + STATE(4471), 2, sym_comment, sym_include, - ACTIONS(106), 4, - sym_identifier, - sym__terminator, - anon_sym_LBRACK, - aux_sym_scope_tuning_token1, - [261382] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265352] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4883), 1, - aux_sym_for_statement_repeat1, - STATE(4889), 1, + STATE(4742), 1, sym_on_stop_phrase, - STATE(5458), 1, + STATE(4743), 1, + aux_sym_for_statement_repeat1, + STATE(6166), 1, sym_body, - STATE(4367), 2, + STATE(4472), 2, sym_comment, sym_include, - [261414] = 5, - ACTIONS(3), 1, + [265384] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4368), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4873), 1, + sym_on_stop_phrase, + STATE(4875), 1, + aux_sym_for_statement_repeat1, + STATE(5754), 1, + sym_body, + STATE(4473), 2, sym_comment, sym_include, - 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_SLASH, + [265416] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5717), 1, - sym_body, - STATE(4369), 2, + ACTIONS(6413), 1, + aux_sym_variable_definition_token2, + STATE(4474), 2, sym_comment, sym_include, - 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(6411), 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, + [265440] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 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(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, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6415), 1, + aux_sym_else_statement_token1, + STATE(4411), 1, + aux_sym_if_statement_repeat1, + STATE(4672), 1, + sym_else_statement, + STATE(4475), 2, sym_comment, sym_include, - [261496] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2774), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [265468] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(6072), 1, + STATE(5101), 1, + sym_on_stop_phrase, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5565), 1, sym_body, - STATE(4371), 2, + STATE(4476), 2, sym_comment, sym_include, - STATE(6069), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [261524] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265500] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(5222), 1, - sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4372), 2, + ACTIONS(6420), 1, + aux_sym_variable_definition_token2, + STATE(4477), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [261554] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + 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, + [265524] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6280), 1, - aux_sym__block_terminator_token1, - 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, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6422), 1, + sym__terminator, + STATE(4541), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4478), 2, sym_comment, sym_include, - [261586] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265554] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6286), 1, + ACTIONS(6424), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4374), 2, + STATE(4479), 2, sym_comment, sym_include, - [261616] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265584] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6288), 1, + ACTIONS(6073), 1, sym__terminator, - STATE(4429), 1, + STATE(4454), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4375), 2, + STATE(4480), 2, sym_comment, sym_include, - [261646] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265614] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4893), 1, - aux_sym_for_statement_repeat1, - STATE(4896), 1, + STATE(4716), 1, sym_on_stop_phrase, - STATE(5569), 1, + STATE(4717), 1, + aux_sym_for_statement_repeat1, + STATE(5745), 1, sym_body, - STATE(4376), 2, + STATE(4481), 2, sym_comment, sym_include, - [261678] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265646] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6292), 1, - aux_sym_variable_definition_token2, - STATE(4377), 2, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4593), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6422), 1, + sym_interface_body, + STATE(4482), 2, sym_comment, sym_include, - 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, + [265678] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(6008), 1, + STATE(4879), 1, + sym_on_stop_phrase, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, sym_body, - STATE(4378), 2, + STATE(4483), 2, sym_comment, sym_include, - STATE(6078), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [261730] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265710] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6296), 1, + ACTIONS(6428), 1, aux_sym_variable_definition_token2, - STATE(4379), 2, + STATE(4484), 2, sym_comment, sym_include, - ACTIONS(6294), 5, + ACTIONS(6426), 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, - [261754] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265734] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(5226), 1, - sym__terminator, - STATE(4441), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4380), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4685), 1, + aux_sym_for_statement_repeat1, + STATE(4706), 1, + sym_on_stop_phrase, + STATE(5682), 1, + sym_body, + STATE(4485), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [261784] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265766] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5876), 1, - aux_sym__block_terminator_token1, - STATE(1604), 1, - sym__function_terminator, - STATE(1679), 1, - sym__block_terminator, - STATE(5249), 1, - sym_dot_body, - ACTIONS(5874), 2, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_DOT, - STATE(4381), 2, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + STATE(5669), 1, + sym_body, + STATE(4486), 2, sym_comment, sym_include, - [261814] = 10, - ACTIONS(67), 1, + STATE(5696), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [265794] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6430), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4487), 2, + sym_comment, + sym_include, + [265824] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4909), 1, + STATE(4884), 1, sym_on_stop_phrase, - STATE(5157), 1, + STATE(4885), 1, aux_sym_for_statement_repeat1, - STATE(5812), 1, + STATE(5783), 1, sym_body, - STATE(4382), 2, + STATE(4488), 2, sym_comment, sym_include, - [261846] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265856] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6300), 1, - aux_sym_variable_definition_token2, - STATE(4383), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5140), 1, + sym_on_stop_phrase, + STATE(5141), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(4489), 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, + [265888] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4384), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6432), 1, + sym_identifier, + STATE(5137), 1, + sym_object_access, + STATE(5668), 1, + sym_qualified_name, + STATE(4490), 2, sym_comment, sym_include, - 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, - [261892] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5513), 2, + sym_function_call, + sym_new_expression, + [265918] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4833), 1, + STATE(5107), 1, sym_on_stop_phrase, - STATE(4834), 1, + STATE(5108), 1, aux_sym_for_statement_repeat1, - STATE(5892), 1, + STATE(5590), 1, sym_body, - STATE(4385), 2, + STATE(4491), 2, sym_comment, sym_include, - [261924] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [265950] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4836), 1, - sym_on_stop_phrase, - STATE(4837), 1, - aux_sym_for_statement_repeat1, - STATE(5886), 1, + STATE(5882), 1, sym_body, - STATE(4386), 2, + STATE(4492), 2, sym_comment, sym_include, - [261956] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6195), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [265978] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6306), 1, + ACTIONS(6436), 1, aux_sym_variable_definition_token2, - STATE(4387), 2, + STATE(4493), 2, sym_comment, sym_include, - ACTIONS(6304), 5, + ACTIONS(6434), 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, - [261980] = 9, - ACTIONS(3), 1, + [266002] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5072), 1, + sym_on_stop_phrase, + STATE(5073), 1, + aux_sym_for_statement_repeat1, + STATE(5564), 1, + sym_body, + STATE(4494), 2, sym_comment, sym_include, - STATE(6109), 2, - sym_function_call, - sym_new_expression, - [262010] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266034] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4838), 1, + STATE(4708), 1, sym_on_stop_phrase, - STATE(4839), 1, + STATE(4709), 1, aux_sym_for_statement_repeat1, - STATE(5878), 1, + STATE(5700), 1, sym_body, - STATE(4389), 2, + STATE(4495), 2, sym_comment, sym_include, - [262042] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266066] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5226), 1, + ACTIONS(5311), 1, sym__terminator, - STATE(4271), 1, + STATE(4377), 1, aux_sym_temp_table_definition_repeat2, - STATE(4390), 2, + STATE(4496), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [262072] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266096] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4793), 1, - aux_sym_variable_definition_token2, - STATE(4391), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5016), 1, + sym_on_stop_phrase, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(6051), 1, + sym_body, + STATE(4497), 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, + [266128] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5321), 1, + ACTIONS(6438), 1, sym__terminator, - STATE(4271), 1, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4392), 2, + STATE(4498), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [262126] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266158] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5321), 1, + ACTIONS(5311), 1, sym__terminator, - STATE(4524), 1, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4393), 2, + STATE(4499), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [262156] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266188] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(4636), 1, - sym_on_stop_phrase, - STATE(4646), 1, - aux_sym_for_statement_repeat1, - STATE(5508), 1, + STATE(6112), 1, sym_body, - STATE(4394), 2, + STATE(4500), 2, sym_comment, sym_include, - [262188] = 10, - ACTIONS(3), 1, + STATE(6119), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [266216] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4593), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6212), 1, + sym_interface_body, + STATE(4501), 2, sym_comment, sym_include, - [262220] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266248] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5589), 1, + STATE(4891), 1, + sym_on_stop_phrase, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, sym_body, - STATE(4396), 2, + STATE(4502), 2, sym_comment, sym_include, - STATE(5976), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [262248] = 8, - ACTIONS(67), 1, + [266280] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(6115), 1, - sym_body, - STATE(4397), 2, + ACTIONS(6252), 1, + aux_sym_field_definition_token1, + STATE(4324), 1, + aux_sym_widget_phrase_repeat1, + STATE(5066), 1, + sym_widget_field, + STATE(4503), 2, sym_comment, sym_include, - 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(6440), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [266308] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5972), 1, - sym_argument_pass_type, - ACTIONS(5846), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4398), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5088), 1, + sym_on_stop_phrase, + STATE(5089), 1, + aux_sym_for_statement_repeat1, + STATE(5539), 1, + sym_body, + STATE(4504), 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, + [266340] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(5264), 1, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6442), 1, sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4399), 2, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4505), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [262332] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266370] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(5264), 1, + ACTIONS(5285), 1, sym__terminator, - STATE(4450), 1, + STATE(4431), 1, aux_sym_temp_table_definition_repeat2, - STATE(4400), 2, + STATE(4506), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [262362] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266400] = 10, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4744), 1, + STATE(4973), 1, sym_on_stop_phrase, - STATE(4899), 1, + STATE(4974), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(6087), 1, sym_body, - STATE(4402), 2, + STATE(4507), 2, sym_comment, sym_include, - [262418] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266432] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(6096), 1, + STATE(6019), 1, sym_body, - STATE(4403), 2, + STATE(4508), 2, sym_comment, sym_include, - STATE(5631), 3, + STATE(6020), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [262446] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266460] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5123), 1, - sym_on_stop_phrase, - STATE(5128), 1, - aux_sym_for_statement_repeat1, - STATE(5891), 1, - sym_body, - STATE(4404), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6444), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4509), 2, sym_comment, sym_include, - [262478] = 10, - ACTIONS(67), 1, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [266490] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5130), 1, - sym_on_stop_phrase, - STATE(5132), 1, - aux_sym_for_statement_repeat1, - STATE(5887), 1, - sym_body, - STATE(4405), 2, + ACTIONS(6446), 1, + sym_identifier, + ACTIONS(6451), 1, + aux_sym_field_definition_token1, + STATE(5066), 1, + sym_widget_field, + ACTIONS(6449), 2, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + STATE(4510), 3, sym_comment, sym_include, - [262510] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_widget_phrase_repeat1, + [266518] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6318), 1, + ACTIONS(6456), 1, aux_sym_variable_definition_token2, - STATE(4406), 2, + STATE(4511), 2, sym_comment, sym_include, - ACTIONS(6316), 5, + ACTIONS(6454), 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, + [266542] = 6, 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(5135), 1, - sym_on_stop_phrase, - STATE(5145), 1, - aux_sym_for_statement_repeat1, - STATE(5885), 1, - sym_body, - STATE(4407), 2, - sym_comment, - sym_include, - [262566] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, - anon_sym_COLON, - 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, + ACTIONS(6460), 1, + aux_sym_variable_definition_token2, + STATE(4512), 2, sym_comment, sym_include, - [262598] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6458), 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, + [266566] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6322), 1, + ACTIONS(6464), 1, aux_sym_variable_definition_token2, - STATE(4409), 2, + STATE(4513), 2, sym_comment, sym_include, - ACTIONS(6320), 5, + ACTIONS(6462), 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, + [266590] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5297), 1, + sym__terminator, + STATE(4498), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4514), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [266620] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6324), 1, + ACTIONS(6466), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4410), 2, + STATE(4515), 2, sym_comment, sym_include, - [262652] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266650] = 6, 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(5562), 1, - sym_body, - STATE(4411), 2, - sym_comment, - sym_include, - STATE(5841), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [262680] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6328), 1, + ACTIONS(6470), 1, aux_sym_variable_definition_token2, - STATE(4412), 2, + STATE(4516), 2, sym_comment, sym_include, - ACTIONS(6326), 5, + ACTIONS(6468), 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_SLASH, + [266674] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6068), 1, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6444), 1, sym__terminator, - 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(4413), 2, + STATE(4530), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4517), 2, sym_comment, sym_include, - [262734] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [266704] = 10, 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(5980), 1, - sym_body, - STATE(4414), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4844), 1, + STATE(4897), 1, sym_on_stop_phrase, - STATE(4845), 1, + STATE(4898), 1, aux_sym_for_statement_repeat1, - STATE(5870), 1, + STATE(5889), 1, sym_body, - STATE(4415), 2, + STATE(4518), 2, sym_comment, sym_include, - [262794] = 6, - ACTIONS(67), 1, + [266736] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6332), 1, - aux_sym_variable_definition_token2, - STATE(4416), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6472), 1, + sym_identifier, + STATE(4958), 1, + sym_object_access, + STATE(6090), 1, + sym_qualified_name, + STATE(4519), 2, sym_comment, sym_include, - 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, + STATE(5513), 2, + sym_function_call, + sym_new_expression, + [266766] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4785), 1, - sym_on_stop_phrase, - STATE(4789), 1, - aux_sym_for_statement_repeat1, - STATE(5947), 1, - sym_body, - STATE(4417), 2, + ACTIONS(5920), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6474), 1, + sym__terminator, + STATE(4412), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, + sym_query_definition_tuning, + ACTIONS(5922), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4520), 2, sym_comment, sym_include, - [262850] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266796] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5148), 1, - sym_on_stop_phrase, - STATE(5149), 1, + STATE(4926), 1, aux_sym_for_statement_repeat1, - STATE(5882), 1, + STATE(4929), 1, + sym_on_stop_phrase, + STATE(6016), 1, sym_body, - STATE(4418), 2, + STATE(4521), 2, sym_comment, sym_include, - [262882] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266828] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5160), 1, aux_sym_field_definition_token1, - ACTIONS(5136), 1, + ACTIONS(5162), 1, aux_sym_index_definition_token1, - ACTIONS(6278), 1, + ACTIONS(5285), 1, sym__terminator, - STATE(4271), 1, + STATE(4425), 1, aux_sym_temp_table_definition_repeat2, - STATE(4419), 2, + STATE(4522), 2, sym_comment, sym_include, - STATE(5184), 2, + STATE(5213), 2, sym_field_definition, sym_index_definition, - [262912] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [266858] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(4523), 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(160), 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, + [266880] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4841), 1, - aux_sym_for_statement_repeat1, - STATE(4851), 1, - sym_on_stop_phrase, - STATE(5865), 1, - sym_body, - STATE(4421), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5299), 1, + sym__terminator, + STATE(4455), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4524), 2, sym_comment, sym_include, - [262972] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [266910] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6336), 1, - aux_sym_variable_definition_token2, - STATE(4422), 2, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(5299), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4525), 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, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [266940] = 10, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + aux_sym_inherits_token1, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4501), 1, + aux_sym_interface_statement_repeat1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(6264), 1, + sym_interface_body, + STATE(4526), 2, + sym_comment, + sym_include, + [266972] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6338), 1, + ACTIONS(6476), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4423), 2, + STATE(4527), 2, sym_comment, sym_include, - [263026] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267002] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6340), 1, + ACTIONS(6478), 1, sym__terminator, - STATE(4423), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4424), 2, + STATE(4528), 2, sym_comment, sym_include, - [263056] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267032] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4847), 1, + STATE(5104), 1, sym_on_stop_phrase, - STATE(4848), 1, + STATE(5105), 1, aux_sym_for_statement_repeat1, - STATE(5866), 1, + STATE(5572), 1, sym_body, - STATE(4425), 2, + STATE(4529), 2, sym_comment, sym_include, - [263088] = 9, - ACTIONS(67), 1, + [267064] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6480), 1, + sym__terminator, + STATE(4431), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4530), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [267094] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6342), 1, + ACTIONS(6482), 1, sym__terminator, - STATE(4429), 1, + STATE(4296), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4426), 2, + STATE(4531), 2, sym_comment, sym_include, - [263118] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267124] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4797), 1, - aux_sym_variable_definition_token2, - STATE(4427), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5039), 1, + sym_on_stop_phrase, + STATE(5041), 1, + aux_sym_for_statement_repeat1, + STATE(5993), 1, + sym_body, + STATE(4532), 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, - [263142] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267156] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6344), 1, + ACTIONS(6484), 1, sym__terminator, - STATE(4429), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4428), 2, + STATE(4533), 2, + sym_comment, + sym_include, + [267186] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym_field_definition_token1, + ACTIONS(5162), 1, + aux_sym_index_definition_token1, + ACTIONS(6438), 1, + sym__terminator, + STATE(4327), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4534), 2, + sym_comment, + sym_include, + STATE(5213), 2, + sym_field_definition, + sym_index_definition, + [267216] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(4903), 1, + sym_on_stop_phrase, + STATE(5911), 1, + sym_body, + STATE(4535), 2, + sym_comment, + sym_include, + [267248] = 10, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(4746), 1, + sym_on_stop_phrase, + STATE(4748), 1, + aux_sym_for_statement_repeat1, + STATE(6169), 1, + sym_body, + STATE(4536), 2, + sym_comment, + sym_include, + [267280] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + STATE(5878), 1, + sym_body, + STATE(4537), 2, + sym_comment, + sym_include, + STATE(5886), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [267308] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + aux_sym_on_error_phrase_token1, + STATE(5933), 1, + sym_body, + STATE(4538), 2, sym_comment, sym_include, - [263172] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(6179), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [267336] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6346), 1, - sym__terminator, - ACTIONS(6348), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - STATE(4830), 1, + ACTIONS(6079), 1, + sym__terminator, + STATE(4487), 1, + aux_sym_query_definition_repeat1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(6351), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4429), 3, + STATE(4539), 2, sym_comment, sym_include, - aux_sym_query_definition_repeat1, - [263200] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267366] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6354), 1, + ACTIONS(6486), 1, sym__terminator, - STATE(4429), 1, + STATE(4527), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4430), 2, + STATE(4540), 2, sym_comment, sym_include, - [263230] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267396] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, + ACTIONS(5920), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6356), 1, + ACTIONS(6488), 1, sym__terminator, - STATE(4428), 1, + STATE(4412), 1, aux_sym_query_definition_repeat1, - STATE(4830), 1, + STATE(5150), 1, sym_query_definition_tuning, - ACTIONS(5866), 2, + ACTIONS(5922), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4431), 2, + STATE(4541), 2, sym_comment, sym_include, - [263260] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267426] = 10, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5150), 1, + STATE(4744), 1, sym_on_stop_phrase, - STATE(5151), 1, + STATE(4745), 1, aux_sym_for_statement_repeat1, - STATE(5879), 1, + STATE(6168), 1, sym_body, - STATE(4432), 2, + STATE(4542), 2, sym_comment, sym_include, - [263292] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267458] = 10, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4789), 1, - aux_sym_variable_definition_token2, - STATE(4433), 2, - sym_comment, - sym_include, - 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, - [263316] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(5152), 1, + STATE(4906), 1, sym_on_stop_phrase, - STATE(5156), 1, + STATE(4907), 1, aux_sym_for_statement_repeat1, - STATE(5876), 1, + STATE(5946), 1, sym_body, - STATE(4434), 2, + STATE(4543), 2, sym_comment, sym_include, - [263348] = 8, - ACTIONS(67), 1, + [267490] = 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(6490), 1, + sym_identifier, + STATE(3299), 1, + sym_function_call, + STATE(3390), 1, + sym_qualified_name, + STATE(5595), 1, + sym_object_access, + STATE(5893), 1, + sym_new_expression, + STATE(4544), 2, + sym_comment, + sym_include, + [267522] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(5180), 1, aux_sym_on_error_phrase_token1, - STATE(5843), 1, + STATE(5981), 1, sym_body, - STATE(4435), 2, + STATE(4545), 2, sym_comment, sym_include, - STATE(5718), 3, + STATE(6157), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [263376] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267550] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4784), 1, - sym_on_stop_phrase, - STATE(4788), 1, - aux_sym_for_statement_repeat1, - STATE(5713), 1, - sym_body, - STATE(4436), 2, + STATE(4546), 2, sym_comment, sym_include, - [263408] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(184), 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, + [267572] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, - anon_sym_COLON, - STATE(4583), 1, - aux_sym_interface_statement_repeat1, - STATE(5615), 1, - sym_interface_tuning, - STATE(5620), 1, - sym_inherits, - STATE(6273), 1, - sym_interface_body, - STATE(4437), 2, + ACTIONS(6492), 1, + aux_sym_return_type_token2, + ACTIONS(6496), 1, + aux_sym_on_error_phrase_token8, + STATE(4547), 2, sym_comment, sym_include, - [263440] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6494), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [267597] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4857), 1, - sym_on_stop_phrase, - STATE(4862), 1, - aux_sym_for_statement_repeat1, - STATE(5831), 1, - sym_body, - STATE(4438), 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, - [263472] = 10, - ACTIONS(67), 1, + ACTIONS(6500), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [267622] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6504), 1, + sym_identifier, + STATE(4549), 2, + sym_comment, + sym_include, + ACTIONS(6506), 4, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(4879), 1, - sym_on_stop_phrase, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5683), 1, - sym_body, - STATE(4439), 2, + [267645] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6508), 1, + aux_sym_return_type_token2, + ACTIONS(6512), 1, + aux_sym_on_error_phrase_token8, + STATE(4550), 2, sym_comment, sym_include, - [263504] = 10, - ACTIONS(67), 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, + [267670] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4551), 2, + sym_comment, + sym_include, + ACTIONS(6514), 5, anon_sym_COLON, - ACTIONS(3817), 1, + aux_sym__block_terminator_token1, anon_sym_COMMA, - ACTIONS(6150), 1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(4849), 1, - sym_on_stop_phrase, - STATE(4850), 1, - aux_sym_for_statement_repeat1, - STATE(5864), 1, - sym_body, - STATE(4440), 2, + [267691] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6083), 1, + sym__terminator, + STATE(4613), 1, + aux_sym_data_relation_repeat1, + STATE(6516), 1, + sym_data_relation, + STATE(4552), 2, sym_comment, sym_include, - [263536] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267720] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(5266), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6085), 1, sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4441), 2, + STATE(4600), 1, + aux_sym_data_relation_repeat1, + STATE(6352), 1, + sym_data_relation, + STATE(4553), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [263566] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267749] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6072), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5898), 1, + anon_sym_LPAREN, + ACTIONS(6516), 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, + STATE(5894), 1, + sym_function_parameters, + STATE(6445), 1, + sym_body, + STATE(4554), 2, sym_comment, sym_include, - [263596] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267778] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6146), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6518), 1, sym__terminator, - 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, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6518), 1, + sym_data_relation, + STATE(4555), 2, sym_comment, sym_include, - [263626] = 10, - ACTIONS(67), 1, + [267807] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - aux_sym_inherits_token1, - ACTIONS(5912), 1, - anon_sym_COLON, - 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, + ACTIONS(6520), 1, + anon_sym_DQUOTE, + ACTIONS(6524), 1, + sym__special_character, + STATE(4609), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(6522), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(4556), 2, sym_comment, sym_include, - [263658] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267834] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6087), 1, + sym__terminator, + STATE(4586), 1, + aux_sym_data_relation_repeat1, + STATE(6320), 1, + sym_data_relation, + STATE(4557), 2, sym_comment, sym_include, - ACTIONS(2805), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [263686] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267863] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, - aux_sym_else_statement_token1, - STATE(4454), 1, - aux_sym_if_statement_repeat1, - STATE(4692), 1, - sym_else_statement, - STATE(4446), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6089), 1, + sym__terminator, + STATE(4555), 1, + aux_sym_data_relation_repeat1, + STATE(6443), 1, + sym_data_relation, + STATE(4558), 2, sym_comment, sym_include, - ACTIONS(2795), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [263714] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267892] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6367), 1, - aux_sym_variable_definition_token2, - STATE(4447), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4691), 1, + sym_on_quit_phrase, + STATE(5614), 1, + sym_on_stop_phrase, + ACTIONS(6526), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4559), 2, sym_comment, sym_include, - 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, - [263738] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267919] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - 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, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4585), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6253), 1, + sym_enum_body, + STATE(4560), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [263768] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267948] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(4894), 1, + STATE(4711), 1, + sym_on_quit_phrase, + STATE(5705), 1, sym_on_stop_phrase, - STATE(5770), 1, - sym_body, - STATE(4449), 2, + ACTIONS(5823), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4561), 2, sym_comment, sym_include, - [263800] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [267975] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6369), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6532), 1, sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4450), 2, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6440), 1, + sym_data_relation, + STATE(4562), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [263830] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268004] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6371), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6534), 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, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5262), 1, + aux_sym_data_relation_repeat1, + STATE(4563), 2, sym_comment, sym_include, - [263860] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268033] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5158), 1, - sym_on_stop_phrase, - STATE(5159), 1, - aux_sym_for_statement_repeat1, - STATE(5862), 1, - sym_body, - STATE(4452), 2, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4698), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6411), 1, + sym_enum_body, + STATE(4564), 2, sym_comment, sym_include, - [263892] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268062] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4853), 1, + STATE(4710), 1, + sym_on_quit_phrase, + STATE(5703), 1, sym_on_stop_phrase, - STATE(4854), 1, - aux_sym_for_statement_repeat1, - STATE(5856), 1, - sym_body, - STATE(4453), 2, + ACTIONS(4515), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4565), 2, sym_comment, sym_include, - [263924] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268089] = 9, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6373), 1, - aux_sym_else_statement_token1, - STATE(4528), 1, - aux_sym_if_statement_repeat1, - STATE(4692), 1, - sym_else_statement, - STATE(4454), 2, - sym_comment, - sym_include, - ACTIONS(2779), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [263952] = 10, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4868), 1, - aux_sym_for_statement_repeat1, - STATE(4874), 1, - sym_on_stop_phrase, - STATE(5904), 1, - sym_body, - STATE(4455), 2, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6536), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6521), 1, + sym_data_relation, + STATE(4566), 2, sym_comment, sym_include, - [263984] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268118] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6376), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6538), 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(4456), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5302), 1, + aux_sym_data_relation_repeat1, + STATE(4567), 2, sym_comment, sym_include, - [264014] = 8, - ACTIONS(67), 1, + [268147] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5779), 1, - sym_body, - STATE(4457), 2, + ACTIONS(6542), 1, + aux_sym_widget_field_token1, + STATE(4568), 2, sym_comment, sym_include, - STATE(5745), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [264042] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6540), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [268170] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6369), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6091), 1, sym__terminator, - STATE(4493), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4458), 2, + STATE(4616), 1, + aux_sym_data_relation_repeat1, + STATE(6344), 1, + sym_data_relation, + STATE(4569), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [264072] = 10, - ACTIONS(67), 1, + [268199] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(4898), 1, - aux_sym_for_statement_repeat1, - STATE(4901), 1, - sym_on_stop_phrase, - STATE(5762), 1, - sym_body, - STATE(4459), 2, + ACTIONS(6546), 1, + aux_sym_input_expression_token2, + STATE(5498), 1, + sym_widget_phrase, + ACTIONS(6544), 2, + sym_identifier, + aux_sym_do_block_token1, + STATE(4570), 3, sym_comment, sym_include, - [264104] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_statement_repeat2, + [268224] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5041), 1, - aux_sym_for_statement_repeat1, - STATE(5115), 1, - sym_on_stop_phrase, - STATE(5924), 1, - sym_body, - STATE(4460), 2, + ACTIONS(6549), 1, + aux_sym_return_type_token2, + ACTIONS(6553), 1, + aux_sym_on_error_phrase_token8, + STATE(4571), 2, sym_comment, sym_include, - [264136] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6551), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [268249] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6380), 1, - aux_sym_variable_definition_token2, - STATE(4461), 2, + ACTIONS(841), 1, + sym__namecolon, + STATE(4638), 1, + aux_sym_object_access_repeat1, + STATE(4572), 2, sym_comment, sym_include, - 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_SLASH, + ACTIONS(91), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [268274] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4902), 1, - aux_sym_for_statement_repeat1, - STATE(4904), 1, - sym_on_stop_phrase, - STATE(5754), 1, - sym_body, - STATE(4462), 2, + ACTIONS(6555), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5284), 1, + aux_sym_data_relation_repeat1, + STATE(4573), 2, sym_comment, sym_include, - [264192] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268303] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6382), 1, + STATE(4574), 2, + sym_comment, + sym_include, + ACTIONS(6557), 5, sym__terminator, - STATE(4429), 1, - aux_sym_query_definition_repeat1, - STATE(4830), 1, - sym_query_definition_tuning, - ACTIONS(5866), 2, + aux_sym_query_definition_tuning_token1, 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, + aux_sym_query_definition_token3, + [268324] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4856), 1, - sym_on_stop_phrase, - STATE(4858), 1, - aux_sym_for_statement_repeat1, - STATE(5828), 1, - sym_body, - STATE(4464), 2, + ACTIONS(6559), 1, + aux_sym_data_relation_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5336), 1, + aux_sym_data_relation_repeat1, + STATE(4575), 2, sym_comment, sym_include, - [264254] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268353] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6384), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6561), 1, sym__terminator, - 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, + ACTIONS(6563), 1, + aux_sym_input_expression_token2, + ACTIONS(6565), 1, + aux_sym_prompt_for_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4576), 2, sym_comment, sym_include, - [264284] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268382] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6386), 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(4466), 2, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4698), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6355), 1, + sym_enum_body, + STATE(4577), 2, sym_comment, sym_include, - [264314] = 9, - ACTIONS(67), 1, + [268411] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4578), 2, + sym_comment, + sym_include, + ACTIONS(6567), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268432] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6388), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6569), 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(4467), 2, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6797), 1, + sym_data_relation, + STATE(4579), 2, sym_comment, sym_include, - [264344] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268461] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6528), 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, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4633), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6570), 1, + sym_enum_body, + STATE(4580), 2, sym_comment, sym_include, - [264376] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268490] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6390), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6571), 1, sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4469), 2, + ACTIONS(6573), 1, + aux_sym_input_expression_token2, + ACTIONS(6575), 1, + aux_sym_prompt_for_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4581), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [264406] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268519] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6394), 1, - aux_sym_variable_definition_token2, - STATE(4470), 2, + STATE(4582), 2, sym_comment, sym_include, - ACTIONS(6392), 5, + ACTIONS(6577), 5, + anon_sym_COLON, 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, - [264430] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268540] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5807), 1, - sym_body, - STATE(4471), 2, + ACTIONS(6579), 1, + aux_sym_return_type_token2, + ACTIONS(6583), 1, + aux_sym_on_error_phrase_token8, + STATE(4583), 2, sym_comment, sym_include, - 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(6581), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [268565] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6096), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6099), 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, + STATE(4562), 1, + aux_sym_data_relation_repeat1, + STATE(6401), 1, + sym_data_relation, + STATE(4584), 2, sym_comment, sym_include, - [264488] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268594] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4905), 1, - aux_sym_for_statement_repeat1, - STATE(4908), 1, - sym_on_stop_phrase, - STATE(5750), 1, - sym_body, - STATE(4473), 2, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4698), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6210), 1, + sym_enum_body, + STATE(4585), 2, sym_comment, sym_include, - [264520] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268623] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6396), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6585), 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, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6246), 1, + sym_data_relation, + STATE(4586), 2, sym_comment, sym_include, - [264550] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268652] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6587), 1, + aux_sym_return_type_token2, + ACTIONS(6591), 1, + aux_sym_on_error_phrase_token8, + STATE(4587), 2, sym_comment, sym_include, - [264580] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6589), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [268677] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6528), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4911), 1, - aux_sym_for_statement_repeat1, - STATE(4913), 1, - sym_on_stop_phrase, - STATE(5749), 1, - sym_body, - STATE(4476), 2, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4644), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6623), 1, + sym_enum_body, + STATE(4588), 2, sym_comment, sym_include, - [264612] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268706] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(6057), 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, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6106), 1, + sym__terminator, + STATE(4611), 1, + aux_sym_data_relation_repeat1, + STATE(6243), 1, + sym_data_relation, + STATE(4589), 2, sym_comment, sym_include, - [264644] = 9, - ACTIONS(67), 1, + [268735] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6092), 1, - sym__terminator, - 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, + ACTIONS(6593), 1, + sym_identifier, + STATE(4590), 2, sym_comment, sym_include, - [264674] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6595), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268758] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6400), 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(4479), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4701), 1, + sym_on_quit_phrase, + STATE(5651), 1, + sym_on_stop_phrase, + ACTIONS(5769), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4591), 2, sym_comment, sym_include, - [264704] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [268785] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4592), 2, + sym_comment, + sym_include, + ACTIONS(6597), 5, 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, - [264736] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [268806] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6599), 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, + ACTIONS(6601), 1, + aux_sym_inherits_token1, + STATE(5799), 1, + sym_interface_tuning, + STATE(5800), 1, + sym_inherits, + STATE(4593), 3, sym_comment, sym_include, - [264768] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_interface_statement_repeat1, + [268833] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4594), 2, + sym_comment, + sym_include, + ACTIONS(6604), 5, anon_sym_COLON, - ACTIONS(3817), 1, + aux_sym__block_terminator_token1, anon_sym_COMMA, - ACTIONS(6150), 1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(4953), 1, - aux_sym_for_statement_repeat1, - STATE(4955), 1, - sym_on_stop_phrase, - STATE(5741), 1, - sym_body, - STATE(4482), 2, + [268854] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(841), 1, + sym__namecolon, + STATE(4638), 1, + aux_sym_object_access_repeat1, + STATE(4595), 2, sym_comment, sym_include, - [264800] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(91), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [268879] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(4596), 2, sym_comment, sym_include, - [264832] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6606), 5, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token8, + aux_sym_field_definition_token1, + [268900] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4994), 1, - aux_sym_for_statement_repeat1, - STATE(4996), 1, - sym_on_stop_phrase, - STATE(5735), 1, - sym_body, - STATE(4484), 2, + ACTIONS(6608), 1, + aux_sym_return_type_token2, + ACTIONS(6612), 1, + aux_sym_on_error_phrase_token8, + STATE(4597), 2, sym_comment, sym_include, - [264864] = 10, - ACTIONS(3), 1, + ACTIONS(6610), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [268925] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - aux_sym_scope_tuning_token1, - ACTIONS(6402), 1, - sym_identifier, - STATE(3287), 1, - sym_function_call, - STATE(3386), 1, - sym_qualified_name, - STATE(5641), 1, - sym_object_access, - STATE(5673), 1, - sym_new_expression, - STATE(4485), 2, + ACTIONS(841), 1, + sym__namecolon, + STATE(4638), 1, + aux_sym_object_access_repeat1, + STATE(4598), 2, sym_comment, sym_include, - [264896] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(91), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [268950] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(4599), 2, sym_comment, sym_include, - [264926] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6614), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268971] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(4634), 1, - aux_sym_for_statement_repeat1, - STATE(4707), 1, - sym_on_stop_phrase, - STATE(5491), 1, - sym_body, - STATE(4487), 2, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6616), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6514), 1, + sym_data_relation, + STATE(4600), 2, sym_comment, sym_include, - [264958] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269000] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4728), 1, + sym_on_quit_phrase, + STATE(5790), 1, + sym_on_stop_phrase, + ACTIONS(4541), 2, anon_sym_COLON, - anon_sym_DOT, - STATE(4488), 2, + anon_sym_COMMA, + STATE(4601), 2, sym_comment, sym_include, - [264988] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269027] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6406), 1, - sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4489), 2, + ACTIONS(6579), 1, + aux_sym_return_type_token2, + ACTIONS(6583), 1, + aux_sym_on_error_phrase_token8, + STATE(4602), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [265018] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6618), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [269052] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6034), 1, - sym__terminator, - STATE(4479), 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(4490), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6620), 1, + anon_sym_RPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5261), 1, + aux_sym_data_relation_repeat1, + STATE(4603), 2, sym_comment, sym_include, - [265048] = 6, - ACTIONS(67), 1, + [269081] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6410), 1, - aux_sym_variable_definition_token2, - STATE(4491), 2, + ACTIONS(6524), 1, + sym__special_character, + ACTIONS(6622), 1, + anon_sym_DQUOTE, + STATE(4556), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(6522), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(4604), 2, sym_comment, sym_include, - 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, + [269108] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(4605), 2, sym_comment, sym_include, - [265102] = 9, - ACTIONS(67), 1, + ACTIONS(6071), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [269129] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6412), 1, - sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4493), 2, + ACTIONS(6624), 1, + sym_identifier, + STATE(4606), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [265132] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6626), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [269152] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6414), 1, - sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4494), 2, + STATE(4607), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [265162] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6628), 5, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [269173] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + STATE(4608), 2, + sym_comment, + sym_include, + ACTIONS(6630), 5, anon_sym_COLON, - ACTIONS(3817), 1, + aux_sym__block_terminator_token1, anon_sym_COMMA, - ACTIONS(6150), 1, + aux_sym_repeat_tuning_token1, 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, - [265194] = 7, + [269194] = 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, + ACTIONS(6632), 1, + anon_sym_DQUOTE, + ACTIONS(6637), 1, + sym__special_character, + ACTIONS(6634), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(4609), 3, 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, + aux_sym_double_quoted_string_repeat1, + [269219] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5776), 1, - sym_body, - STATE(4497), 2, + STATE(4610), 2, sym_comment, sym_include, - 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(6640), 5, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token8, + aux_sym_field_definition_token1, + [269240] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6416), 1, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6642), 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, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6220), 1, + sym_data_relation, + STATE(4611), 2, sym_comment, sym_include, - [265278] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269269] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5499), 1, - sym_body, - STATE(4499), 2, + ACTIONS(6646), 1, + aux_sym_when_expression_token1, + STATE(5351), 1, + sym_case_when_branch, + ACTIONS(6644), 2, + aux_sym__block_terminator_token1, + aux_sym_case_otherwise_branch_token1, + STATE(4612), 3, sym_comment, sym_include, - STATE(5874), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [265306] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_case_body_repeat1, + [269294] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6420), 1, - aux_sym_variable_definition_token2, - STATE(4500), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6649), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6397), 1, + sym_data_relation, + STATE(4613), 2, sym_comment, sym_include, - 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, - [265330] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269323] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(4704), 1, - sym_on_stop_phrase, - STATE(4757), 1, - aux_sym_for_statement_repeat1, - STATE(5544), 1, - sym_body, - STATE(4501), 2, + ACTIONS(6651), 1, + aux_sym_return_type_token2, + ACTIONS(6655), 1, + aux_sym_on_error_phrase_token8, + STATE(4614), 2, sym_comment, sym_include, - [265362] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6653), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [269348] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5074), 1, - sym_on_stop_phrase, - STATE(5079), 1, - aux_sym_for_statement_repeat1, - STATE(5464), 1, - sym_body, - STATE(4502), 2, + ACTIONS(6657), 1, + anon_sym_RPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5267), 1, + aux_sym_data_relation_repeat1, + STATE(4615), 2, sym_comment, sym_include, - [265394] = 6, - ACTIONS(3), 1, + [269377] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6422), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - STATE(4503), 3, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6659), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6349), 1, + sym_data_relation, + STATE(4616), 2, sym_comment, sym_include, - 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, + [269406] = 9, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4577), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6324), 1, + sym_enum_body, + STATE(4617), 2, sym_comment, sym_include, - [265450] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269435] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6429), 1, - aux_sym_variable_definition_token2, - STATE(4505), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6126), 1, + sym__terminator, + STATE(4642), 1, + aux_sym_data_relation_repeat1, + STATE(6347), 1, + sym_data_relation, + STATE(4618), 2, sym_comment, sym_include, - 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, - [265474] = 7, - ACTIONS(67), 1, + [269464] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5534), 1, - sym_argument_pass_type, - ACTIONS(6431), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4506), 2, + ACTIONS(121), 1, + sym__namedot, + STATE(4619), 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, - [265500] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(123), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [269487] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5591), 1, - sym_body, - STATE(4507), 2, + ACTIONS(6587), 1, + aux_sym_return_type_token2, + ACTIONS(6591), 1, + aux_sym_on_error_phrase_token8, + STATE(4620), 2, sym_comment, sym_include, - 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(6661), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [269512] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6665), 1, + aux_sym_repeat_tuning_token1, + STATE(5299), 1, + sym_repeat_tuning, + ACTIONS(6663), 2, 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, + aux_sym__block_terminator_token1, + STATE(4621), 3, sym_comment, sym_include, - [265560] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_repeat_statement_repeat1, + [269537] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5124), 1, - aux_sym_for_statement_repeat1, - STATE(5126), 1, - sym_on_stop_phrase, - STATE(5772), 1, - sym_body, - STATE(4509), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6668), 1, + sym__terminator, + ACTIONS(6670), 1, + aux_sym_input_expression_token2, + ACTIONS(6672), 1, + aux_sym_prompt_for_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4622), 2, sym_comment, sym_include, - [265592] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269566] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(5152), 1, - aux_sym_on_error_phrase_token1, - STATE(5705), 1, + ACTIONS(6674), 1, + sym__terminator, + ACTIONS(6676), 1, + anon_sym_LPAREN, + STATE(5365), 1, + sym_function_parameters, + STATE(6301), 1, sym_body, - STATE(4510), 2, + STATE(4623), 2, sym_comment, sym_include, - STATE(5944), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [265620] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269595] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4564), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6435), 1, + sym_enum_body, + STATE(4624), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [265650] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269624] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6435), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6678), 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, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5270), 1, + aux_sym_data_relation_repeat1, + STATE(4625), 2, sym_comment, sym_include, - [265680] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269653] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6437), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(5898), 1, + anon_sym_LPAREN, + ACTIONS(6680), 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, + STATE(6066), 1, + sym_function_parameters, + STATE(6309), 1, + sym_body, + STATE(4626), 2, sym_comment, sym_include, - [265710] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269682] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(5102), 1, - aux_sym_for_statement_repeat1, - STATE(5105), 1, + STATE(4702), 1, + sym_on_quit_phrase, + STATE(5653), 1, sym_on_stop_phrase, - STATE(5712), 1, - sym_body, - STATE(4514), 2, + ACTIONS(6682), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4627), 2, sym_comment, sym_include, - [265742] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269709] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6684), 1, + aux_sym_return_type_token2, + ACTIONS(6688), 1, + aux_sym_on_error_phrase_token8, + STATE(4628), 2, sym_comment, sym_include, - [265772] = 9, - ACTIONS(67), 1, + ACTIONS(6686), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [269734] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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, + ACTIONS(5942), 1, + sym_identifier, + STATE(4629), 2, sym_comment, sym_include, - [265802] = 9, - ACTIONS(67), 1, + ACTIONS(5944), 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, + [269757] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6441), 1, - sym__terminator, - STATE(4469), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4517), 2, + STATE(4630), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [265832] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6690), 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, + [269778] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6692), 1, + aux_sym_return_type_token2, + ACTIONS(6696), 1, + aux_sym_on_error_phrase_token8, + STATE(4631), 2, sym_comment, sym_include, - [265862] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6694), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [269803] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, - aux_sym__block_terminator_token1, - STATE(5283), 1, - sym_dot_body, - ACTIONS(5874), 2, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(5049), 1, + sym_on_quit_phrase, + STATE(5967), 1, + sym_on_stop_phrase, + ACTIONS(4492), 2, anon_sym_COLON, - anon_sym_DOT, - STATE(1680), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4519), 2, + anon_sym_COMMA, + STATE(4632), 2, sym_comment, sym_include, - [265890] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269830] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6433), 1, - sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4520), 2, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4698), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6689), 1, + sym_enum_body, + STATE(4633), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [265920] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269859] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5152), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(5727), 1, - sym_body, - STATE(4521), 2, + STATE(4777), 1, + sym_on_quit_phrase, + STATE(5954), 1, + sym_on_stop_phrase, + ACTIONS(4494), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4634), 2, sym_comment, sym_include, - STATE(5925), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [265948] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269886] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5111), 1, - sym_on_stop_phrase, - STATE(5112), 1, - aux_sym_for_statement_repeat1, - STATE(5760), 1, - sym_body, - STATE(4522), 2, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6146), 1, + sym__terminator, + STATE(4566), 1, + aux_sym_data_relation_repeat1, + STATE(6707), 1, + sym_data_relation, + STATE(4635), 2, sym_comment, sym_include, - [265980] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269915] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(4860), 1, + STATE(5047), 1, + sym_on_quit_phrase, + STATE(5974), 1, sym_on_stop_phrase, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5815), 1, - sym_body, - STATE(4523), 2, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4636), 2, sym_comment, sym_include, - [266012] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [269942] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, - aux_sym_field_definition_token1, - ACTIONS(5136), 1, - aux_sym_index_definition_token1, - ACTIONS(6441), 1, - sym__terminator, - STATE(4271), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4524), 2, + ACTIONS(6698), 1, + aux_sym_return_type_token2, + ACTIONS(6702), 1, + aux_sym_on_error_phrase_token8, + STATE(4637), 2, sym_comment, sym_include, - STATE(5184), 2, - sym_field_definition, - sym_index_definition, - [266042] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6700), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [269967] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6704), 1, + sym__namecolon, + ACTIONS(95), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + STATE(4638), 3, sym_comment, sym_include, - [266072] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_object_access_repeat1, + [269990] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6447), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6707), 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(4526), 2, + ACTIONS(6709), 1, + aux_sym_input_expression_token2, + ACTIONS(6711), 1, + aux_sym_prompt_for_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4639), 2, sym_comment, sym_include, - [266102] = 5, - ACTIONS(67), 1, + [270019] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4527), 2, + ACTIONS(6713), 1, + sym_identifier, + STATE(4640), 2, sym_comment, sym_include, - ACTIONS(6449), 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, - [266124] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6715), 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, + [270042] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6055), 1, + sym__terminator, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + STATE(4579), 1, + aux_sym_data_relation_repeat1, + STATE(6666), 1, + sym_data_relation, + STATE(4641), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - [266150] = 10, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270071] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(6057), 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, + ACTIONS(6059), 1, + aux_sym_data_relation_token1, + ACTIONS(6717), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(6319), 1, + sym_data_relation, + STATE(4642), 2, sym_comment, sym_include, - [266182] = 10, - ACTIONS(67), 1, + [270100] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6719), 1, + sym_identifier, + STATE(4643), 2, + sym_comment, + sym_include, + ACTIONS(6721), 4, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(4869), 1, - aux_sym_for_statement_repeat1, - STATE(4870), 1, - sym_on_stop_phrase, - STATE(5764), 1, - sym_body, - STATE(4530), 2, + [270123] = 9, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + anon_sym_COLON, + ACTIONS(6530), 1, + aux_sym_enum_tuning_token1, + STATE(4698), 1, + aux_sym_enum_statement_repeat1, + STATE(5737), 1, + sym_enum_tuning, + STATE(6578), 1, + sym_enum_body, + STATE(4644), 2, sym_comment, sym_include, - [266214] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270152] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6454), 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(4531), 2, + ACTIONS(6579), 1, + aux_sym_return_type_token2, + ACTIONS(6583), 1, + aux_sym_on_error_phrase_token8, + STATE(4645), 2, sym_comment, sym_include, - [266244] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6723), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [270177] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6456), 1, - sym__terminator, - 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, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(4726), 1, + sym_on_quit_phrase, + STATE(5779), 1, + sym_on_stop_phrase, + ACTIONS(4548), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4646), 2, sym_comment, sym_include, - [266274] = 6, + [270204] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6458), 1, + ACTIONS(6725), 1, sym_identifier, - STATE(4533), 2, + STATE(4647), 2, sym_comment, sym_include, - ACTIONS(6460), 4, + ACTIONS(6727), 4, anon_sym_COLON, aux_sym__block_terminator_token1, aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [266297] = 9, - ACTIONS(67), 1, + [270227] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6729), 1, + aux_sym_return_type_token2, + ACTIONS(6733), 1, + aux_sym_on_error_phrase_token8, + STATE(4648), 2, + sym_comment, + sym_include, + ACTIONS(6731), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [270252] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6462), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6735), 1, sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6444), 1, - sym_data_relation, - STATE(4534), 2, + ACTIONS(6737), 1, + aux_sym_input_expression_token2, + ACTIONS(6739), 1, + aux_sym_prompt_for_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(4649), 2, sym_comment, sym_include, - [266326] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270281] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(6049), 1, + aux_sym_on_error_phrase_token1, + STATE(5098), 1, + sym_on_quit_phrase, + STATE(5818), 1, + sym_on_stop_phrase, + ACTIONS(4462), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6464), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6411), 1, - sym_data_relation, - STATE(4535), 2, + STATE(4650), 2, sym_comment, sym_include, - [266355] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270308] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, + ACTIONS(6049), 1, aux_sym_on_error_phrase_token1, - STATE(5101), 1, + STATE(4804), 1, sym_on_quit_phrase, - STATE(6038), 1, + STATE(5991), 1, sym_on_stop_phrase, - ACTIONS(6466), 2, + ACTIONS(4554), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4536), 2, + STATE(4651), 2, sym_comment, sym_include, - [266382] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270335] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6062), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(6676), 1, + anon_sym_LPAREN, + ACTIONS(6741), 1, sym__terminator, - STATE(4547), 1, - aux_sym_data_relation_repeat1, - STATE(6413), 1, - sym_data_relation, - STATE(4537), 2, + STATE(5305), 1, + sym_function_parameters, + STATE(6447), 1, + sym_body, + STATE(4652), 2, sym_comment, sym_include, - [266411] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270364] = 9, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6060), 1, + ACTIONS(6743), 1, sym__terminator, - STATE(4550), 1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5374), 1, aux_sym_data_relation_repeat1, - STATE(6432), 1, - sym_data_relation, - STATE(4538), 2, + STATE(4653), 2, sym_comment, sym_include, - [266440] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270393] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6468), 1, + ACTIONS(6587), 1, aux_sym_return_type_token2, - ACTIONS(6472), 1, + ACTIONS(6591), 1, aux_sym_on_error_phrase_token8, - STATE(4539), 2, + STATE(4654), 2, sym_comment, sym_include, - ACTIONS(6470), 3, + ACTIONS(6745), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [266465] = 9, - ACTIONS(67), 1, + [270418] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - 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, + ACTIONS(6749), 1, + aux_sym_widget_field_token1, + STATE(4655), 2, sym_comment, sym_include, - [266494] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6747), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [270441] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6476), 1, - aux_sym_return_type_token2, - ACTIONS(6480), 1, - aux_sym_on_error_phrase_token8, - STATE(4541), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6751), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4656), 2, sym_comment, sym_include, - 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, + [270467] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4657), 2, sym_comment, sym_include, - [266548] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3545), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270487] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6488), 1, - aux_sym_return_type_token2, - ACTIONS(6492), 1, - aux_sym_on_error_phrase_token8, - STATE(4543), 2, + ACTIONS(6753), 1, + aux_sym_using_statement_token2, + ACTIONS(6755), 1, + aux_sym_stream_definition_token1, + ACTIONS(6757), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6759), 1, + aux_sym_input_close_statement_token2, + STATE(4658), 2, sym_comment, sym_include, - 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, + [270513] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6494), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6527), 1, - sym_data_relation, - STATE(4544), 2, + ACTIONS(6761), 1, + sym_identifier, + ACTIONS(6763), 1, + sym__escaped_string, + STATE(3291), 2, + sym_qualified_name, + sym_string_literal, + STATE(4659), 2, sym_comment, sym_include, - [266602] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270537] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6496), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5180), 1, - aux_sym_data_relation_repeat1, - STATE(4545), 2, + ACTIONS(6765), 1, + aux_sym_stream_definition_token1, + ACTIONS(6767), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6769), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6771), 1, + aux_sym_output_stream_statement_token1, + STATE(4660), 2, sym_comment, sym_include, - [266631] = 7, - ACTIONS(67), 1, + [270563] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6498), 1, - aux_sym_return_type_token2, - ACTIONS(6502), 1, - aux_sym_on_error_phrase_token8, - STATE(4546), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6773), 1, + sym_identifier, + STATE(4388), 2, + sym_qualified_name, + sym_string_literal, + STATE(4661), 2, sym_comment, sym_include, - 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, + [270587] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6504), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6452), 1, - sym_data_relation, - STATE(4547), 2, + STATE(4662), 2, sym_comment, sym_include, - [266685] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6775), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + [270607] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6498), 1, - aux_sym_return_type_token2, - ACTIONS(6502), 1, - aux_sym_on_error_phrase_token8, - STATE(4548), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + ACTIONS(845), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4663), 2, sym_comment, sym_include, - 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, + [270631] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, - aux_sym_return_type_token2, - ACTIONS(6512), 1, - aux_sym_on_error_phrase_token8, - STATE(4549), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6777), 1, + sym_identifier, + STATE(4369), 2, + sym_qualified_name, + sym_string_literal, + STATE(4664), 2, sym_comment, sym_include, - 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, + [270655] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - 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, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6779), 1, + sym_identifier, + STATE(3294), 2, + sym_qualified_name, + sym_string_literal, + STATE(4665), 2, sym_comment, sym_include, - [266764] = 9, - ACTIONS(67), 1, + [270679] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - 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, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6781), 1, + sym_identifier, + STATE(4526), 2, + sym_qualified_name, + sym_string_literal, + STATE(4666), 2, sym_comment, sym_include, - [266793] = 9, - ACTIONS(67), 1, + [270703] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6783), 1, + sym_identifier, + STATE(3302), 2, + sym_qualified_name, + sym_string_literal, + STATE(4667), 2, sym_comment, sym_include, - [266822] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270727] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(6787), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6801), 1, + sym_number_literal, + STATE(4668), 2, sym_comment, sym_include, - [266851] = 9, - ACTIONS(67), 1, + [270753] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6518), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6247), 1, - sym_data_relation, - STATE(4554), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6789), 1, + sym_identifier, + STATE(4305), 2, + sym_qualified_name, + sym_string_literal, + STATE(4669), 2, sym_comment, sym_include, - [266880] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270777] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, - anon_sym_COMMA, - STATE(4555), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6791), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5961), 1, + sym_function_arguments, + STATE(4670), 2, sym_comment, sym_include, - [266907] = 9, - ACTIONS(67), 1, + [270803] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5878), 1, - anon_sym_LPAREN, - ACTIONS(6520), 1, - sym__terminator, - STATE(6116), 1, - sym_function_parameters, - STATE(6148), 1, - sym_body, - STATE(4556), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6793), 1, + sym_identifier, + STATE(3290), 2, + sym_qualified_name, + sym_string_literal, + STATE(4671), 2, sym_comment, sym_include, - [266936] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270827] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(6522), 1, - sym__terminator, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(5421), 1, - sym_function_parameters, - STATE(6163), 1, - sym_body, - STATE(4557), 2, + STATE(4672), 2, sym_comment, sym_include, - [266965] = 8, - ACTIONS(67), 1, + ACTIONS(3239), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270847] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(5080), 1, - sym_on_quit_phrase, - STATE(5894), 1, - sym_on_stop_phrase, - ACTIONS(6526), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4558), 2, + ACTIONS(6719), 1, + sym_identifier, + STATE(4673), 2, sym_comment, sym_include, - [266992] = 9, - ACTIONS(67), 1, + ACTIONS(6721), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [270869] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(5878), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym__terminator, - STATE(5706), 1, - sym_function_parameters, - STATE(6482), 1, - sym_body, - STATE(4559), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6795), 1, + sym_identifier, + STATE(4465), 2, + sym_qualified_name, + sym_string_literal, + STATE(4674), 2, sym_comment, sym_include, - [267021] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [270893] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6530), 1, - anon_sym_RPAREN, - STATE(416), 1, + ACTIONS(6797), 1, + sym__terminator, + ACTIONS(6799), 1, + aux_sym_using_statement_token2, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(5222), 1, - aux_sym_data_relation_repeat1, - STATE(4560), 2, + STATE(4675), 2, sym_comment, sym_include, - [267050] = 7, - ACTIONS(67), 1, + [270919] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6532), 1, - aux_sym_return_type_token2, - ACTIONS(6536), 1, - aux_sym_on_error_phrase_token8, - STATE(4561), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(6801), 1, + sym_identifier, + STATE(3293), 2, + sym_qualified_name, + sym_string_literal, + STATE(4676), 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, + [270943] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - 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, + STATE(4677), 2, sym_comment, sym_include, - [267104] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3217), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270963] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - STATE(4584), 1, - aux_sym_object_access_repeat1, - STATE(4563), 2, + STATE(4678), 2, sym_comment, sym_include, - ACTIONS(89), 3, - sym__augmented_assignment, - anon_sym_LPAREN, - anon_sym_EQ, - [267129] = 9, - ACTIONS(67), 1, + ACTIONS(3217), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270983] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6540), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5207), 1, - aux_sym_data_relation_repeat1, - STATE(4564), 2, + ACTIONS(6593), 1, + sym_identifier, + STATE(4679), 2, sym_comment, sym_include, - [267158] = 9, - ACTIONS(67), 1, + ACTIONS(6595), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [271005] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6542), 1, - sym__terminator, - 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, + ACTIONS(6624), 1, + sym_identifier, + STATE(4680), 2, sym_comment, sym_include, - [267187] = 6, + ACTIONS(6626), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [271027] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6550), 1, - aux_sym_widget_field_token1, - STATE(4566), 2, + ACTIONS(6725), 1, + sym_identifier, + STATE(4681), 2, sym_comment, sym_include, - 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, + ACTIONS(6727), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [271049] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6084), 1, - sym__terminator, - STATE(4534), 1, - aux_sym_data_relation_repeat1, - STATE(6424), 1, - sym_data_relation, - STATE(4567), 2, + ACTIONS(6504), 1, + sym_identifier, + STATE(4682), 2, sym_comment, sym_include, - [267239] = 9, - ACTIONS(67), 1, + ACTIONS(6506), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [271071] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6108), 1, - sym__terminator, - STATE(4552), 1, - aux_sym_data_relation_repeat1, - STATE(6403), 1, - sym_data_relation, - STATE(4568), 2, + STATE(4683), 2, sym_comment, sym_include, - [267268] = 7, - ACTIONS(67), 1, + ACTIONS(6775), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [271091] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6552), 1, - aux_sym_return_type_token2, - ACTIONS(6556), 1, - aux_sym_on_error_phrase_token8, - STATE(4569), 2, + STATE(4684), 2, sym_comment, sym_include, - 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(194), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [271111] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6558), 1, - aux_sym_return_type_token2, - ACTIONS(6562), 1, - aux_sym_on_error_phrase_token8, - STATE(4570), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5639), 1, + sym_body, + STATE(4685), 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, + [271137] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(244), 1, + sym_identifier, + STATE(4686), 2, + sym_comment, + sym_include, + ACTIONS(246), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [271157] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6564), 1, - sym__terminator, - STATE(416), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(5241), 1, - aux_sym_data_relation_repeat1, - STATE(4571), 2, + STATE(6400), 1, + sym_body, + STATE(4687), 2, sym_comment, sym_include, - [267347] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271183] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6566), 1, - sym__terminator, - STATE(416), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(5304), 1, - aux_sym_data_relation_repeat1, - STATE(4572), 2, + STATE(6375), 1, + sym_body, + STATE(4688), 2, sym_comment, sym_include, - [267376] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271209] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - STATE(4584), 1, - aux_sym_object_access_repeat1, - STATE(4573), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5597), 1, + sym_body, + STATE(4689), 2, sym_comment, sym_include, - ACTIONS(89), 3, - sym__augmented_assignment, - anon_sym_LPAREN, - anon_sym_EQ, - [267401] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271235] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4574), 2, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(6803), 1, + aux_sym_of_token1, + ACTIONS(6805), 1, + aux_sym_on_statement_token1, + STATE(4971), 1, + aux_sym_on_statement_repeat1, + STATE(4690), 2, sym_comment, sym_include, - ACTIONS(6568), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [267422] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271261] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4575), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5600), 1, + sym_on_stop_phrase, + ACTIONS(6807), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4691), 2, sym_comment, sym_include, - ACTIONS(6570), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [267443] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271285] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6572), 1, - aux_sym_return_type_token2, - ACTIONS(6576), 1, - aux_sym_on_error_phrase_token8, - STATE(4576), 2, + ACTIONS(6809), 1, + aux_sym__block_terminator_token1, + ACTIONS(6811), 1, + aux_sym_variable_definition_token1, + STATE(5154), 1, + aux_sym_enum_body_repeat1, + STATE(5612), 1, + sym_enum_definition, + STATE(4692), 2, sym_comment, sym_include, - 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, + [271311] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(6524), 1, - anon_sym_LPAREN, - ACTIONS(6578), 1, - sym__terminator, - STATE(5312), 1, - sym_function_parameters, - STATE(6487), 1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6551), 1, sym_body, - STATE(4577), 2, + STATE(4693), 2, sym_comment, sym_include, - [267497] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271337] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_COMMA, - STATE(4578), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6221), 1, + sym_body, + STATE(4694), 2, sym_comment, sym_include, - [267524] = 8, + [271363] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - 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, + ACTIONS(228), 1, + sym_identifier, + STATE(4695), 2, sym_comment, sym_include, - [267551] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(230), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [271383] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(4935), 1, - sym_on_quit_phrase, - STATE(6073), 1, - sym_on_stop_phrase, - ACTIONS(4430), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4580), 2, + STATE(4689), 1, + aux_sym_for_statement_repeat1, + STATE(5608), 1, + sym_body, + STATE(4696), 2, sym_comment, sym_include, - [267578] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271409] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(3778), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6586), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6803), 1, - sym_data_relation, - STATE(4581), 2, + ACTIONS(6813), 1, + aux_sym_of_token1, + ACTIONS(6815), 1, + aux_sym_on_statement_token1, + STATE(4971), 1, + aux_sym_on_statement_repeat1, + STATE(4697), 2, sym_comment, sym_include, - [267607] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271435] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - STATE(4584), 1, - aux_sym_object_access_repeat1, - STATE(4582), 2, + ACTIONS(6817), 1, + anon_sym_COLON, + ACTIONS(6819), 1, + aux_sym_enum_tuning_token1, + STATE(5737), 1, + sym_enum_tuning, + STATE(4698), 3, sym_comment, sym_include, - ACTIONS(89), 3, - sym__augmented_assignment, - anon_sym_LPAREN, - anon_sym_EQ, - [267632] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_statement_repeat1, + [271459] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6588), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(6590), 1, - aux_sym_inherits_token1, - STATE(5615), 1, - sym_interface_tuning, - STATE(5620), 1, - sym_inherits, - STATE(4583), 3, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5608), 1, + sym_body, + STATE(4699), 2, sym_comment, sym_include, - aux_sym_interface_statement_repeat1, - [267659] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271485] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6593), 1, - sym__namecolon, - ACTIONS(93), 3, - sym__augmented_assignment, - anon_sym_LPAREN, - anon_sym_EQ, - STATE(4584), 3, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5611), 1, + sym_body, + STATE(4700), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - [267682] = 6, - ACTIONS(3), 1, + [271511] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(108), 1, - sym__namedot, - STATE(4585), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5614), 1, + sym_on_stop_phrase, + ACTIONS(6526), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4701), 2, sym_comment, sym_include, - ACTIONS(110), 4, - sym_identifier, - sym__terminator, - anon_sym_LBRACK, - aux_sym_scope_tuning_token1, - [267705] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271535] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4824), 1, - sym_on_quit_phrase, - STATE(5700), 1, + STATE(5617), 1, sym_on_stop_phrase, - ACTIONS(4512), 2, + ACTIONS(6822), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4586), 2, + STATE(4702), 2, sym_comment, sym_include, - [267732] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271559] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6050), 1, - sym__terminator, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - STATE(4554), 1, - aux_sym_data_relation_repeat1, - STATE(6668), 1, - sym_data_relation, - STATE(4587), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6368), 1, + sym_body, + STATE(4703), 2, sym_comment, sym_include, - [267761] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271585] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4588), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6392), 1, + sym_body, + STATE(4704), 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, + [271611] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6598), 1, - aux_sym_return_type_token2, - ACTIONS(6602), 1, - aux_sym_on_error_phrase_token8, - STATE(4589), 2, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(6824), 1, + aux_sym_of_token1, + ACTIONS(6826), 1, + aux_sym_on_statement_token1, + STATE(4971), 1, + aux_sym_on_statement_repeat1, + STATE(4705), 2, sym_comment, sym_include, - ACTIONS(6600), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [267807] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271637] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6058), 1, - sym__terminator, - STATE(4602), 1, - aux_sym_data_relation_repeat1, - STATE(6537), 1, - sym_data_relation, - STATE(4590), 2, + STATE(4699), 1, + aux_sym_for_statement_repeat1, + STATE(5639), 1, + sym_body, + STATE(4706), 2, sym_comment, sym_include, - [267836] = 5, + [271663] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4591), 2, + STATE(4707), 2, sym_comment, sym_include, - ACTIONS(6604), 5, + ACTIONS(6828), 4, 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, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [271683] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, - aux_sym_return_type_token2, - ACTIONS(6502), 1, - aux_sym_on_error_phrase_token8, - STATE(4592), 2, - sym_comment, - sym_include, - ACTIONS(6606), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [267882] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4593), 2, - sym_comment, - sym_include, - ACTIONS(6608), 5, + ACTIONS(3852), 1, anon_sym_COLON, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, 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(5888), 1, - sym_identifier, - STATE(4594), 2, + STATE(4700), 1, + aux_sym_for_statement_repeat1, + STATE(5646), 1, + sym_body, + STATE(4708), 2, sym_comment, sym_include, - 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, + [271709] = 8, 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(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, - [267955] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6614), 1, - aux_sym_repeat_tuning_token1, - STATE(5323), 1, - sym_repeat_tuning, - ACTIONS(6612), 2, + ACTIONS(3852), 1, anon_sym_COLON, - aux_sym__block_terminator_token1, - STATE(4596), 3, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5646), 1, + sym_body, + STATE(4709), 2, sym_comment, sym_include, - aux_sym_repeat_statement_repeat1, - [267980] = 7, - ACTIONS(3), 1, + [271735] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5651), 1, + sym_on_stop_phrase, + ACTIONS(5769), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4710), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat2, - [268005] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271759] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4727), 1, - sym_on_quit_phrase, - STATE(5574), 1, + STATE(5653), 1, sym_on_stop_phrase, - ACTIONS(4420), 2, + ACTIONS(6682), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4598), 2, + STATE(4711), 2, sym_comment, sym_include, - [268032] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271783] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6622), 1, - aux_sym_return_type_token2, - ACTIONS(6626), 1, - aux_sym_on_error_phrase_token8, - STATE(4599), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6525), 1, + sym_body, + STATE(4712), 2, sym_comment, sym_include, - ACTIONS(6624), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [268057] = 6, - ACTIONS(3), 1, + [271809] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6628), 1, - sym_identifier, - STATE(4600), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6545), 1, + sym_body, + STATE(4713), 2, sym_comment, sym_include, - 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, + [271835] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(839), 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, + STATE(5164), 1, aux_sym_qualified_name_repeat1, - STATE(4601), 2, + ACTIONS(132), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4714), 2, sym_comment, sym_include, - [268109] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271859] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(3778), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6638), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6455), 1, - sym_data_relation, - STATE(4602), 2, + ACTIONS(6830), 1, + aux_sym_of_token1, + ACTIONS(6832), 1, + aux_sym_on_statement_token1, + STATE(4971), 1, + aux_sym_on_statement_repeat1, + STATE(4715), 2, sym_comment, sym_include, - [268138] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [271885] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4603), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4685), 1, + aux_sym_for_statement_repeat1, + STATE(5682), 1, + sym_body, + STATE(4716), 2, sym_comment, sym_include, - ACTIONS(6640), 5, + [271911] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [268159] = 9, - ACTIONS(67), 1, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5682), 1, + sym_body, + STATE(4717), 2, + sym_comment, + sym_include, + [271937] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6642), 1, + ACTIONS(6834), 1, + sym_identifier, + ACTIONS(6836), 1, sym__terminator, - ACTIONS(6644), 1, - aux_sym_input_expression_token2, - ACTIONS(6646), 1, - aux_sym_prompt_for_statement_token2, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(4604), 2, + ACTIONS(6838), 1, + anon_sym_COMMA, + STATE(4718), 3, sym_comment, sym_include, - [268188] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_member_repeat1, + [271961] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6090), 1, - sym__terminator, - STATE(4608), 1, - aux_sym_data_relation_repeat1, - STATE(6448), 1, - sym_data_relation, - STATE(4605), 2, + ACTIONS(843), 1, + sym__namedoublecolon, + STATE(5165), 1, + aux_sym_member_access_repeat1, + ACTIONS(144), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4719), 2, sym_comment, sym_include, - [268217] = 6, + [271985] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6648), 1, - sym_identifier, - STATE(4606), 2, + STATE(4720), 2, sym_comment, sym_include, - 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(6841), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [272005] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6476), 1, - aux_sym_return_type_token2, - ACTIONS(6480), 1, - aux_sym_on_error_phrase_token8, - STATE(4607), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6843), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5505), 1, + sym_function_arguments, + STATE(4721), 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, + [272031] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6654), 1, + STATE(4709), 1, + aux_sym_for_statement_repeat1, + STATE(5700), 1, + sym_body, + STATE(4722), 2, + sym_comment, + sym_include, + [272057] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5805), 1, sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(6399), 1, - sym_data_relation, - STATE(4608), 2, + STATE(4780), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4723), 2, sym_comment, sym_include, - [268294] = 6, - ACTIONS(3), 1, + [272083] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6658), 1, - aux_sym_widget_field_token1, - STATE(4609), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5700), 1, + sym_body, + STATE(4724), 2, sym_comment, sym_include, - 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, + [272109] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5805), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4725), 2, sym_comment, sym_include, - [268344] = 9, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272135] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - 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(4611), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5703), 1, + sym_on_stop_phrase, + ACTIONS(4515), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4726), 2, sym_comment, sym_include, - [268373] = 5, - ACTIONS(67), 1, + [272159] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4612), 2, + ACTIONS(6845), 1, + sym_identifier, + STATE(127), 1, + sym_qualified_name, + ACTIONS(6847), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4727), 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, + [272183] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, + ACTIONS(6180), 1, aux_sym_on_error_phrase_token1, - STATE(4796), 1, - sym_on_quit_phrase, - STATE(5684), 1, + STATE(5705), 1, sym_on_stop_phrase, - ACTIONS(5767), 2, + ACTIONS(5823), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4613), 2, + STATE(4728), 2, sym_comment, sym_include, - [268421] = 5, - ACTIONS(67), 1, + [272207] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4614), 2, + ACTIONS(6849), 1, + sym_identifier, + STATE(124), 1, + sym_qualified_name, + ACTIONS(6851), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4729), 2, sym_comment, sym_include, - 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, + [272231] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6853), 1, sym_identifier, - STATE(4615), 2, + STATE(131), 1, + sym_qualified_name, + ACTIONS(6855), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4730), 2, sym_comment, sym_include, - ACTIONS(6674), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [268465] = 6, + [272255] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6676), 1, + ACTIONS(6857), 1, sym_identifier, - STATE(4616), 2, + STATE(110), 1, + sym_qualified_name, + ACTIONS(6859), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4731), 2, sym_comment, sym_include, - 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, + [272279] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - aux_sym_data_relation_token1, - ACTIONS(6130), 1, - sym__terminator, - STATE(4581), 1, - aux_sym_data_relation_repeat1, - STATE(6369), 1, - sym_data_relation, - STATE(4617), 2, + ACTIONS(6861), 1, + sym_identifier, + STATE(113), 1, + sym_qualified_name, + ACTIONS(6863), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4732), 2, sym_comment, sym_include, - [268517] = 7, + [272303] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(6865), 1, + sym_identifier, + STATE(118), 1, + sym_qualified_name, + ACTIONS(6867), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4733), 2, sym_comment, sym_include, - aux_sym_double_quoted_string_repeat1, - [268542] = 5, - ACTIONS(67), 1, + [272327] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4619), 2, + ACTIONS(6869), 1, + sym_identifier, + STATE(122), 1, + sym_qualified_name, + ACTIONS(6871), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4734), 2, sym_comment, sym_include, - 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, + [272351] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6690), 1, + ACTIONS(6873), 1, sym_identifier, - STATE(4620), 2, + STATE(126), 1, + sym_qualified_name, + ACTIONS(6875), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4735), 2, sym_comment, sym_include, - 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, + [272375] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4621), 2, - sym_comment, - sym_include, - ACTIONS(6694), 5, + ACTIONS(3852), 1, anon_sym_COLON, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [268607] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6160), 1, + sym_body, + STATE(4736), 2, + sym_comment, + sym_include, + [272401] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(5154), 1, - sym_on_quit_phrase, - STATE(5942), 1, - sym_on_stop_phrase, - ACTIONS(4436), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4622), 2, + STATE(4736), 1, + aux_sym_for_statement_repeat1, + STATE(6161), 1, + sym_body, + STATE(4737), 2, sym_comment, sym_include, - [268634] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272427] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4623), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6161), 1, + sym_body, + STATE(4738), 2, sym_comment, sym_include, - ACTIONS(6144), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [268655] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272453] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(4678), 1, - sym_on_quit_phrase, - STATE(5468), 1, - sym_on_stop_phrase, - ACTIONS(4534), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4624), 2, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6162), 1, + sym_body, + STATE(4739), 2, sym_comment, sym_include, - [268682] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272479] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - aux_sym_on_error_phrase_token1, - STATE(5127), 1, - sym_on_quit_phrase, - STATE(5941), 1, - sym_on_stop_phrase, - ACTIONS(4478), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4625), 2, + STATE(4738), 1, + aux_sym_for_statement_repeat1, + STATE(6163), 1, + sym_body, + STATE(4740), 2, sym_comment, sym_include, - [268709] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272505] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6696), 1, - aux_sym_return_type_token2, - ACTIONS(6700), 1, - aux_sym_on_error_phrase_token8, - STATE(4626), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6163), 1, + sym_body, + STATE(4741), 2, sym_comment, sym_include, - ACTIONS(6698), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [268734] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272531] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4627), 2, + STATE(4739), 1, + aux_sym_for_statement_repeat1, + STATE(6164), 1, + sym_body, + STATE(4742), 2, sym_comment, sym_include, - [268761] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272557] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6476), 1, - aux_sym_return_type_token2, - ACTIONS(6480), 1, - aux_sym_on_error_phrase_token8, - STATE(4628), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6164), 1, + sym_body, + STATE(4743), 2, sym_comment, sym_include, - 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, + [272583] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4741), 1, + aux_sym_for_statement_repeat1, + STATE(6165), 1, + sym_body, + STATE(4744), 2, sym_comment, sym_include, - aux_sym_case_body_repeat1, - [268811] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272609] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4630), 2, - sym_comment, - sym_include, - ACTIONS(6709), 5, + ACTIONS(3852), 1, anon_sym_COLON, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [268832] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4631), 2, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6165), 1, + sym_body, + STATE(4745), 2, sym_comment, sym_include, - 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, - [268853] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272635] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4632), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4743), 1, + aux_sym_for_statement_repeat1, + STATE(6166), 1, + sym_body, + STATE(4746), 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, - [268873] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272661] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(6713), 1, + ACTIONS(6877), 1, sym__terminator, - STATE(4658), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4633), 2, + STATE(4747), 2, sym_comment, sym_include, - [268899] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272687] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5707), 1, + STATE(6166), 1, sym_body, - STATE(4634), 2, + STATE(4748), 2, sym_comment, sym_include, - [268925] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272713] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4745), 1, + aux_sym_for_statement_repeat1, + STATE(6168), 1, + sym_body, + STATE(4749), 2, sym_comment, sym_include, - [268951] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272739] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4883), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5458), 1, + STATE(6168), 1, sym_body, - STATE(4636), 2, + STATE(4750), 2, sym_comment, sym_include, - [268977] = 7, - ACTIONS(3), 1, + [272765] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6723), 1, - sym_identifier, - ACTIONS(6725), 1, - sym__escaped_string, - STATE(3286), 2, - sym_qualified_name, - sym_string_literal, - STATE(4637), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4748), 1, + aux_sym_for_statement_repeat1, + STATE(6169), 1, + sym_body, + STATE(4751), 2, sym_comment, sym_include, - [269001] = 5, - ACTIONS(3), 1, + [272791] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym_identifier, - STATE(4638), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6169), 1, + sym_body, + STATE(4752), 2, sym_comment, sym_include, - 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, + [272817] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4639), 2, + STATE(4753), 2, sym_comment, sym_include, - ACTIONS(3458), 4, + ACTIONS(3607), 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, + [272837] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4640), 2, + STATE(4754), 2, sym_comment, sym_include, - ACTIONS(3438), 4, + ACTIONS(3615), 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, + [272857] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4641), 2, + STATE(4755), 2, sym_comment, sym_include, - ACTIONS(3434), 4, + ACTIONS(3605), 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(6731), 1, - sym_identifier, - STATE(4642), 2, - sym_comment, - sym_include, - ACTIONS(6733), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [269101] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272877] = 8, 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, - [269127] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5700), 1, - sym_on_stop_phrase, - ACTIONS(4512), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4644), 2, + STATE(4750), 1, + aux_sym_for_statement_repeat1, + STATE(6178), 1, + sym_body, + STATE(4756), 2, sym_comment, sym_include, - [269151] = 7, - ACTIONS(3), 1, + [272903] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6743), 1, - sym_identifier, - STATE(4370), 2, - sym_qualified_name, - sym_string_literal, - STATE(4645), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6178), 1, + sym_body, + STATE(4757), 2, sym_comment, sym_include, - [269175] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272929] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4717), 1, aux_sym_for_statement_repeat1, - STATE(5458), 1, + STATE(5745), 1, sym_body, - STATE(4646), 2, + STATE(4758), 2, sym_comment, sym_include, - [269201] = 7, - ACTIONS(3), 1, + [272955] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6745), 1, - sym_identifier, - STATE(3925), 2, - sym_qualified_name, - sym_string_literal, - STATE(4647), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5745), 1, + sym_body, + STATE(4759), 2, sym_comment, sym_include, - [269225] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [272981] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + STATE(6180), 1, + sym_body, + STATE(4760), 2, sym_comment, sym_include, - [269251] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273007] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - STATE(3531), 1, - sym_function_arguments, - ACTIONS(829), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(4649), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6180), 1, + sym_body, + STATE(4761), 2, sym_comment, sym_include, - [269275] = 5, + [273033] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4650), 2, - sym_comment, - sym_include, - ACTIONS(6749), 4, + ACTIONS(6879), 1, sym_identifier, + ACTIONS(6881), 1, sym__terminator, + ACTIONS(6883), 1, anon_sym_COMMA, - aux_sym_scope_tuning_token1, - [269295] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + STATE(4718), 1, + aux_sym_enum_member_repeat1, + STATE(4762), 2, + sym_comment, + sym_include, + [273059] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4651), 2, + STATE(4763), 2, sym_comment, sym_include, - ACTIONS(3440), 4, + ACTIONS(3599), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6747), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4652), 2, - sym_comment, - sym_include, - [269341] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273079] = 5, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4654), 2, + STATE(4764), 2, sym_comment, sym_include, - ACTIONS(3444), 4, + ACTIONS(3597), 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, + [273099] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6755), 1, - sym_identifier, - 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, - [269411] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6759), 1, - sym_identifier, - STATE(4656), 2, + STATE(4765), 2, sym_comment, sym_include, - ACTIONS(6761), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [269431] = 5, - ACTIONS(3), 1, + ACTIONS(3595), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273119] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4657), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(6186), 1, + sym_body, + STATE(4766), 2, sym_comment, sym_include, - 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, + [273145] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6765), 1, - sym__terminator, - ACTIONS(6767), 1, - aux_sym_field_definition_token1, - STATE(6029), 1, - sym_field_definition, - STATE(4658), 3, - sym_comment, - sym_include, - aux_sym_workfile_definition_repeat3, - [269475] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6770), 1, - sym_identifier, - STATE(4408), 2, - sym_qualified_name, - sym_string_literal, - STATE(4659), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6186), 1, + sym_body, + STATE(4767), 2, sym_comment, sym_include, - [269499] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273171] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6772), 1, - sym__namedot, - ACTIONS(108), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(4660), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - [269521] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4661), 2, + STATE(4768), 2, sym_comment, sym_include, - ACTIONS(3432), 4, + ACTIONS(3593), 4, aux_sym__block_terminator_token1, 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, + [273191] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4662), 2, + STATE(4769), 2, sym_comment, sym_include, - ACTIONS(3430), 4, + ACTIONS(3591), 4, aux_sym__block_terminator_token1, 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, + [273211] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4761), 1, + aux_sym_for_statement_repeat1, + STATE(6189), 1, + sym_body, + STATE(4770), 2, sym_comment, sym_include, - [269587] = 7, - ACTIONS(3), 1, + [273237] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6775), 1, - sym_identifier, - STATE(3292), 2, - sym_qualified_name, - sym_string_literal, - STATE(4664), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6189), 1, + sym_body, + STATE(4771), 2, sym_comment, sym_include, - [269611] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273263] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(5801), 1, + ACTIONS(6885), 1, sym__terminator, - STATE(4658), 1, + STATE(4747), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4665), 2, + STATE(4772), 2, sym_comment, sym_include, - [269637] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273289] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4666), 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, - [269657] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4667), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6885), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4773), 2, sym_comment, sym_include, - 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, + [273315] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6777), 1, - sym__namedoublecolon, - ACTIONS(127), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(4668), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - [269699] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4669), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4724), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, + sym_body, + STATE(4774), 2, sym_comment, sym_include, - ACTIONS(100), 4, - sym__namecolon, - sym__augmented_assignment, - anon_sym_LPAREN, - anon_sym_EQ, - [269719] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273341] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6780), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4670), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, + sym_body, + STATE(4775), 2, sym_comment, sym_include, - [269745] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273367] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(6780), 1, + ACTIONS(6887), 1, sym__terminator, - STATE(4783), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4671), 2, + STATE(4776), 2, sym_comment, sym_include, - [269771] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273393] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5779), 1, + sym_on_stop_phrase, + ACTIONS(4548), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4777), 2, sym_comment, sym_include, - [269797] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273417] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4673), 2, + STATE(4778), 2, sym_comment, sym_include, - ACTIONS(3450), 4, + ACTIONS(3585), 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, + [273437] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6782), 1, - sym_identifier, - STATE(4360), 2, - sym_qualified_name, - sym_string_literal, - STATE(4674), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6194), 1, + sym_body, + STATE(4779), 2, sym_comment, sym_include, - [269841] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273463] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5737), 1, - sym__terminator, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - STATE(4658), 1, + ACTIONS(6889), 1, + sym__terminator, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4675), 2, + STATE(4780), 2, sym_comment, sym_include, - [269867] = 7, - ACTIONS(3), 1, + [273489] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6784), 1, - sym_identifier, - STATE(3277), 2, - sym_qualified_name, - sym_string_literal, - STATE(4676), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6889), 1, + sym__terminator, + STATE(4831), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4781), 2, sym_comment, sym_include, - [269891] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273515] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4677), 2, + STATE(4782), 2, sym_comment, sym_include, - ACTIONS(3620), 4, + ACTIONS(3583), 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, + [273535] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5684), 1, - sym_on_stop_phrase, - ACTIONS(5767), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4678), 2, + STATE(4767), 1, + aux_sym_for_statement_repeat1, + STATE(6194), 1, + sym_body, + STATE(4783), 2, sym_comment, sym_include, - [269935] = 7, - ACTIONS(3), 1, + [273561] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, - [269959] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6788), 1, - sym_identifier, - STATE(4680), 2, + STATE(4784), 2, sym_comment, sym_include, - ACTIONS(6790), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [269979] = 7, - ACTIONS(3), 1, + ACTIONS(3581), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273581] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6792), 1, - sym_identifier, - STATE(3263), 2, - sym_qualified_name, - sym_string_literal, - STATE(4681), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5767), 1, + sym__terminator, + STATE(4839), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4785), 2, sym_comment, sym_include, - [270003] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273607] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4682), 2, + STATE(4786), 2, sym_comment, sym_include, - ACTIONS(3452), 4, + ACTIONS(3579), 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, + [273627] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(5777), 1, + ACTIONS(5767), 1, sym__terminator, - STATE(4916), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4683), 2, + STATE(4787), 2, sym_comment, sym_include, - [270049] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273653] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4684), 2, + STATE(4788), 2, sym_comment, sym_include, - ACTIONS(3622), 4, + ACTIONS(3577), 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, + [273673] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6794), 1, - aux_sym_return_type_token2, - STATE(4685), 2, - sym_comment, - sym_include, - ACTIONS(6796), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [270091] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4789), 2, sym_comment, sym_include, - [270117] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3575), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273693] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [270143] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6802), 1, - sym_identifier, - STATE(4289), 2, - sym_qualified_name, - sym_string_literal, - STATE(4688), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4771), 1, + aux_sym_for_statement_repeat1, + STATE(6131), 1, + sym_body, + STATE(4790), 2, sym_comment, sym_include, - [270167] = 7, - ACTIONS(3), 1, + [273719] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6804), 1, - sym_identifier, - STATE(3928), 2, - sym_qualified_name, - sym_string_literal, - STATE(4689), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6131), 1, + sym_body, + STATE(4791), 2, sym_comment, sym_include, - [270191] = 7, - ACTIONS(3), 1, + [273745] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(6806), 1, - sym_identifier, - STATE(3264), 2, - sym_qualified_name, - sym_string_literal, - STATE(4690), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6124), 1, + sym_body, + STATE(4792), 2, sym_comment, sym_include, - [270215] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273771] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4691), 2, + STATE(4793), 2, sym_comment, sym_include, - ACTIONS(3624), 4, + ACTIONS(3573), 4, aux_sym__block_terminator_token1, 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, + [273791] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4692), 2, + STATE(4794), 2, sym_comment, sym_include, - ACTIONS(3249), 4, + ACTIONS(3571), 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, + [273811] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4795), 2, sym_comment, sym_include, - [270281] = 6, - ACTIONS(3), 1, + ACTIONS(3569), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273831] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6458), 1, - sym_identifier, - STATE(4694), 2, + STATE(4796), 2, sym_comment, sym_include, - 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(3567), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273851] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4695), 2, + STATE(4797), 2, sym_comment, sym_include, - ACTIONS(3632), 4, + ACTIONS(3565), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270323] = 8, - ACTIONS(3), 1, + [273871] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4779), 1, + aux_sym_for_statement_repeat1, + STATE(6124), 1, + sym_body, + STATE(4798), 2, sym_comment, sym_include, - [270349] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273897] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4697), 2, + STATE(4799), 2, sym_comment, sym_include, - 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(3563), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273917] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6818), 1, - aux_sym_return_type_token2, - STATE(4698), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6833), 1, + sym_body, + STATE(4800), 2, sym_comment, sym_include, - 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, + [273943] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4699), 2, + STATE(4801), 2, sym_comment, sym_include, - ACTIONS(3634), 4, + ACTIONS(3561), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270411] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273963] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4700), 2, + STATE(4802), 2, sym_comment, sym_include, - ACTIONS(3596), 4, + ACTIONS(3559), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270431] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [273983] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4701), 2, + STATE(4803), 2, sym_comment, sym_include, - ACTIONS(3618), 4, + ACTIONS(3557), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270451] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274003] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4702), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5790), 1, + sym_on_stop_phrase, + ACTIONS(4541), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4804), 2, sym_comment, sym_include, - ACTIONS(3454), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270471] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274027] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4703), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6086), 1, + sym_body, + STATE(4805), 2, sym_comment, sym_include, - ACTIONS(3618), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270491] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274053] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4825), 1, + STATE(4791), 1, aux_sym_for_statement_repeat1, - STATE(5801), 1, + STATE(6086), 1, sym_body, - STATE(4704), 2, + STATE(4806), 2, sym_comment, sym_include, - [270517] = 6, + [274079] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6676), 1, + ACTIONS(6891), 1, sym_identifier, - STATE(4705), 2, + STATE(4807), 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, + ACTIONS(6893), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [274099] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6690), 1, - sym_identifier, - STATE(4706), 2, + STATE(4808), 2, sym_comment, sym_include, - 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(3555), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274119] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(6895), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6378), 1, + sym_number_literal, + STATE(4809), 2, sym_comment, sym_include, - [270587] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274145] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4708), 2, + STATE(4810), 2, sym_comment, sym_include, - ACTIONS(3592), 4, + ACTIONS(3553), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270607] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274165] = 5, 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(6327), 1, - sym_body, - STATE(4709), 2, - sym_comment, - sym_include, - [270633] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6302), 1, - sym_body, - STATE(4710), 2, + STATE(4811), 2, sym_comment, sym_include, - [270659] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3551), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274185] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4711), 2, + STATE(4812), 2, sym_comment, sym_include, - ACTIONS(3584), 4, + ACTIONS(3549), 4, aux_sym__block_terminator_token1, 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, + [274205] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6822), 1, - anon_sym_LPAREN, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(1342), 1, - sym_function_arguments, - STATE(4712), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5964), 1, + sym_body, + STATE(4813), 2, sym_comment, sym_include, - [270705] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274231] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4814), 2, sym_comment, sym_include, - [270731] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3547), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274251] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4815), 2, sym_comment, sym_include, - [270757] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3543), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274271] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4805), 1, + aux_sym_for_statement_repeat1, + STATE(5964), 1, + sym_body, + STATE(4816), 2, sym_comment, sym_include, - [270783] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274297] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(4817), 2, sym_comment, sym_include, - [270807] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3541), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274317] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(6844), 1, + ACTIONS(5807), 1, sym__terminator, - STATE(4658), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4717), 2, + STATE(4818), 2, sym_comment, sym_include, - [270833] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274343] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4718), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5807), 1, + sym__terminator, + STATE(4773), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4819), 2, sym_comment, sym_include, - ACTIONS(3706), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270853] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274369] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(6846), 1, + ACTIONS(6897), 1, sym__terminator, - STATE(4658), 1, + STATE(4776), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4719), 2, + STATE(4820), 2, sym_comment, sym_include, - [270879] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274395] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(6846), 1, + ACTIONS(6897), 1, sym__terminator, - STATE(4768), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4720), 2, + STATE(4821), 2, sym_comment, sym_include, - [270905] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274421] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4721), 2, + STATE(4822), 2, sym_comment, sym_include, - ACTIONS(3456), 4, + ACTIONS(3539), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270925] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274441] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4722), 2, + STATE(4823), 2, sym_comment, sym_include, - ACTIONS(3428), 4, + ACTIONS(3537), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270945] = 5, - ACTIONS(67), 1, + [274461] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(6899), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6353), 1, + sym_number_literal, + STATE(4824), 2, + sym_comment, + sym_include, + [274487] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4723), 2, + STATE(4825), 2, sym_comment, sym_include, - ACTIONS(3426), 4, + ACTIONS(3535), 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, + [274507] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4826), 2, sym_comment, sym_include, - [270991] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3533), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274527] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4725), 2, + STATE(4827), 2, sym_comment, sym_include, - ACTIONS(3424), 4, + ACTIONS(3531), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271011] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274547] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4828), 2, sym_comment, sym_include, - [271037] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3529), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274567] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(6035), 1, - sym_on_stop_phrase, - ACTIONS(4464), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4727), 2, + STATE(4829), 2, sym_comment, sym_include, - [271061] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3527), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274587] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4728), 2, + STATE(4830), 2, sym_comment, sym_include, - ACTIONS(3422), 4, + ACTIONS(3525), 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, + [274607] = 8, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6901), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4831), 2, + sym_comment, + sym_include, + [274633] = 7, + 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(132), 1, + sym_qualified_name, + ACTIONS(6905), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4832), 2, + sym_comment, + sym_include, + [274657] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(2270), 1, sym__namedot, - STATE(4660), 1, + ACTIONS(6907), 1, + sym__terminator, + ACTIONS(6909), 1, + aux_sym_using_statement_token2, + STATE(697), 1, aux_sym_qualified_name_repeat1, - ACTIONS(104), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(4729), 2, + STATE(4833), 2, sym_comment, sym_include, - [271105] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274683] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4730), 2, + STATE(4834), 2, sym_comment, sym_include, - ACTIONS(3420), 4, + ACTIONS(3523), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271125] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274703] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4731), 2, + STATE(4835), 2, sym_comment, sym_include, - ACTIONS(3418), 4, + ACTIONS(3521), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271145] = 5, - ACTIONS(67), 1, + [274723] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(3561), 1, + sym_function_arguments, + STATE(5263), 1, + sym_case_body, + STATE(4836), 2, + sym_comment, + sym_include, + [274749] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4732), 2, + STATE(4837), 2, sym_comment, sym_include, - ACTIONS(3416), 4, + ACTIONS(3519), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271165] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274769] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6144), 1, - sym_body, - STATE(4733), 2, + STATE(4838), 2, sym_comment, sym_include, - [271191] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3517), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274789] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6153), 1, - sym_body, - STATE(4734), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6911), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4839), 2, sym_comment, sym_include, - [271217] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274815] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6911), 1, + sym__terminator, + STATE(4874), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4840), 2, sym_comment, sym_include, - [271241] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274841] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4736), 2, + STATE(4841), 2, sym_comment, sym_include, - ACTIONS(3414), 4, + ACTIONS(3515), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271261] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274861] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4737), 2, + STATE(4842), 2, sym_comment, sym_include, - ACTIONS(3412), 4, + ACTIONS(3513), 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, + [274881] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4738), 2, + STATE(4843), 2, sym_comment, sym_include, - ACTIONS(3410), 4, + ACTIONS(3511), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271301] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [274901] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4739), 2, + STATE(4844), 2, sym_comment, sym_include, - ACTIONS(3225), 4, + ACTIONS(3509), 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, + [274921] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4845), 2, sym_comment, sym_include, - [271347] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3507), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274941] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(3531), 1, - sym_function_arguments, - STATE(5234), 1, - sym_case_body, - STATE(4741), 2, + STATE(4846), 2, sym_comment, sym_include, - [271373] = 7, - ACTIONS(3), 1, + ACTIONS(3505), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [274961] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6852), 1, - sym_identifier, - STATE(114), 1, - sym_qualified_name, - ACTIONS(6854), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4742), 2, + ACTIONS(6913), 1, + aux_sym_stream_definition_token1, + ACTIONS(6915), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6917), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6919), 1, + aux_sym_output_stream_statement_token1, + STATE(4847), 2, sym_comment, sym_include, - [271397] = 6, - ACTIONS(3), 1, + [274987] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6628), 1, - sym_identifier, - STATE(4743), 2, + ACTIONS(6921), 1, + aux_sym_using_statement_token2, + ACTIONS(6923), 1, + aux_sym_stream_definition_token1, + ACTIONS(6925), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6927), 1, + aux_sym_input_close_statement_token2, + STATE(4848), 2, sym_comment, sym_include, - ACTIONS(6630), 3, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [271419] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275013] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4634), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5491), 1, + STATE(5641), 1, sym_body, - STATE(4744), 2, + STATE(4849), 2, sym_comment, sym_include, - [271445] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275039] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4745), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, - sym_identifier, - STATE(4746), 2, - sym_comment, - sym_include, - ACTIONS(6674), 3, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [271487] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4747), 2, + STATE(4849), 1, + aux_sym_for_statement_repeat1, + STATE(5648), 1, + sym_body, + STATE(4850), 2, sym_comment, sym_include, - 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_SLASH, + [275065] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(6093), 1, + STATE(5648), 1, sym_body, - STATE(4748), 2, + STATE(4851), 2, sym_comment, sym_include, - [271533] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275091] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4990), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(6093), 1, + STATE(5675), 1, sym_body, - STATE(4749), 2, + STATE(4852), 2, sym_comment, sym_include, - [271559] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275117] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [271583] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4851), 1, + aux_sym_for_statement_repeat1, + STATE(5681), 1, + sym_body, + STATE(4853), 2, sym_comment, sym_include, - [271607] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275143] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6342), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5681), 1, sym_body, - STATE(4752), 2, + STATE(4854), 2, sym_comment, sym_include, - [271633] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275169] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6363), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4852), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, sym_body, - STATE(4753), 2, + STATE(4855), 2, sym_comment, sym_include, - [271659] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275195] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - 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, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, + sym_body, + STATE(4856), 2, sym_comment, sym_include, - [271685] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275221] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4755), 2, + STATE(4857), 2, sym_comment, sym_include, - ACTIONS(6862), 4, - anon_sym_COLON, + ACTIONS(3501), 4, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - [271705] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275241] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4756), 2, + STATE(4858), 2, sym_comment, sym_include, - ACTIONS(3710), 4, + ACTIONS(3497), 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, + [275261] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4854), 1, aux_sym_for_statement_repeat1, - STATE(5801), 1, + STATE(5690), 1, sym_body, - STATE(4757), 2, + STATE(4859), 2, sym_comment, sym_include, - [271751] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275287] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4758), 2, - sym_comment, - sym_include, - ACTIONS(6864), 4, + ACTIONS(3852), 1, anon_sym_COLON, - aux_sym__block_terminator_token1, + ACTIONS(3854), 1, 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(73), 1, - anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6866), 1, - sym__terminator, - ACTIONS(6868), 1, - aux_sym_using_statement_token2, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(4759), 2, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5690), 1, + sym_body, + STATE(4860), 2, sym_comment, sym_include, - [271797] = 6, - ACTIONS(3), 1, + [275313] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6870), 1, - sym_identifier, - STATE(4760), 2, + STATE(4861), 2, sym_comment, sym_include, - ACTIONS(6872), 3, - anon_sym_COLON, + ACTIONS(3495), 4, aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - [271819] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275333] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6874), 1, - aux_sym_return_type_token2, - STATE(4761), 2, - sym_comment, - sym_include, - 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(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6878), 1, - sym_identifier, - STATE(4762), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4856), 1, + aux_sym_for_statement_repeat1, + STATE(5704), 1, + sym_body, + STATE(4862), 2, sym_comment, sym_include, - 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, + [275359] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5704), 1, + sym_body, + STATE(4863), 2, sym_comment, sym_include, - [271889] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275385] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5833), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4864), 2, sym_comment, sym_include, - [271915] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275411] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4865), 2, sym_comment, sym_include, - [271941] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3493), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275431] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6471), 1, - sym_body, - STATE(4766), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5833), 1, + sym__terminator, + STATE(4821), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(4866), 2, sym_comment, sym_include, - [271967] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275457] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4867), 2, sym_comment, sym_include, - [271993] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3491), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275477] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6890), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4768), 2, + STATE(4868), 2, sym_comment, sym_include, - [272019] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3489), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275497] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4789), 1, + STATE(4860), 1, aux_sym_for_statement_repeat1, - STATE(5947), 1, + STATE(5723), 1, sym_body, - STATE(4769), 2, + STATE(4869), 2, sym_comment, sym_include, - [272045] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275523] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(6496), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5723), 1, sym_body, - STATE(4770), 2, + STATE(4870), 2, sym_comment, sym_include, - [272071] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275549] = 5, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_COMMA, - 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, + STATE(4871), 2, sym_comment, sym_include, - [272119] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3487), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275569] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_COMMA, - 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, + STATE(4872), 2, sym_comment, sym_include, - [272145] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3485), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275589] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4863), 1, aux_sym_for_statement_repeat1, - STATE(5947), 1, + STATE(5733), 1, sym_body, - STATE(4774), 2, + STATE(4873), 2, sym_comment, sym_include, - [272171] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275615] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [272195] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(6906), 1, + ACTIONS(6929), 1, sym__terminator, - STATE(4658), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(4776), 2, + STATE(4874), 2, sym_comment, sym_include, - [272221] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275641] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6906), 1, - sym__terminator, - STATE(4810), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4777), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5733), 1, + sym_body, + STATE(4875), 2, sym_comment, sym_include, - [272247] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275667] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4778), 2, + STATE(4876), 2, sym_comment, sym_include, - ACTIONS(3712), 4, + ACTIONS(3483), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272267] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275687] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4779), 2, + STATE(4877), 2, sym_comment, sym_include, - ACTIONS(3464), 4, + ACTIONS(3481), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272287] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275707] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4780), 2, + STATE(4878), 2, sym_comment, sym_include, - ACTIONS(3714), 4, + ACTIONS(3479), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272307] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275727] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [272333] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4782), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4870), 1, + aux_sym_for_statement_repeat1, + STATE(5753), 1, + sym_body, + STATE(4879), 2, sym_comment, sym_include, - 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, + [275753] = 8, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4748), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5602), 1, + STATE(5753), 1, sym_body, - STATE(4784), 2, + STATE(4880), 2, sym_comment, sym_include, - [272405] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275779] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4841), 1, - aux_sym_for_statement_repeat1, - STATE(5865), 1, - sym_body, - STATE(4785), 2, + STATE(4881), 2, sym_comment, sym_include, - [272431] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3477), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275799] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4882), 2, sym_comment, sym_include, - [272457] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3475), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275819] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4787), 2, + STATE(4883), 2, sym_comment, sym_include, - ACTIONS(3460), 4, + ACTIONS(3473), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272477] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275839] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4875), 1, aux_sym_for_statement_repeat1, - STATE(5602), 1, + STATE(5754), 1, sym_body, - STATE(4788), 2, + STATE(4884), 2, sym_comment, sym_include, - [272503] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275865] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5865), 1, + STATE(5754), 1, sym_body, - STATE(4789), 2, + STATE(4885), 2, sym_comment, sym_include, - [272529] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [275891] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [272555] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4886), 2, sym_comment, sym_include, - [272581] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3471), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275911] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5574), 1, - sym_on_stop_phrase, - ACTIONS(4420), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4792), 2, + STATE(4887), 2, sym_comment, sym_include, - [272605] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3469), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275931] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4888), 2, sym_comment, sym_include, - [272631] = 5, - ACTIONS(3), 1, + ACTIONS(3467), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275951] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4794), 2, + STATE(4889), 2, sym_comment, sym_include, - ACTIONS(248), 4, - sym_identifier, - sym__terminator, - anon_sym_LBRACK, - aux_sym_scope_tuning_token1, - [272651] = 8, - ACTIONS(3), 1, + ACTIONS(3465), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275971] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4890), 2, sym_comment, sym_include, - [272677] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3463), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275991] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5894), 1, - sym_on_stop_phrase, - ACTIONS(6526), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4796), 2, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, + sym_body, + STATE(4891), 2, sym_comment, sym_include, - [272701] = 7, - ACTIONS(3), 1, + [276017] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5759), 1, + sym_body, + STATE(4892), 2, sym_comment, sym_include, - [272725] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276043] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4893), 2, sym_comment, sym_include, - [272751] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3461), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276063] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4894), 2, sym_comment, sym_include, - [272777] = 7, - ACTIONS(3), 1, + ACTIONS(3459), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276083] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6926), 1, - sym_identifier, - STATE(120), 1, - sym_qualified_name, - ACTIONS(6928), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4800), 2, + STATE(4895), 2, sym_comment, sym_include, - [272801] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3457), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276103] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4896), 2, sym_comment, sym_include, - [272827] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3455), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276123] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4862), 1, + STATE(4885), 1, aux_sym_for_statement_repeat1, - STATE(5831), 1, + STATE(5783), 1, sym_body, - STATE(4802), 2, - sym_comment, - sym_include, - [272853] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6932), 1, - sym_identifier, - STATE(112), 1, - sym_qualified_name, - ACTIONS(6934), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4803), 2, + STATE(4897), 2, sym_comment, sym_include, - [272877] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276149] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4788), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5713), 1, + STATE(5783), 1, sym_body, - STATE(4804), 2, + STATE(4898), 2, sym_comment, sym_include, - [272903] = 7, - ACTIONS(3), 1, + [276175] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4899), 2, sym_comment, sym_include, - [272927] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3453), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276195] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4806), 2, + STATE(4900), 2, sym_comment, sym_include, - ACTIONS(3716), 4, + ACTIONS(3451), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272947] = 5, - ACTIONS(67), 1, + [276215] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, + sym_body, + STATE(4901), 2, + sym_comment, + sym_include, + [276241] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4807), 2, + STATE(4902), 2, sym_comment, sym_include, - ACTIONS(3718), 4, + ACTIONS(3449), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272967] = 5, - ACTIONS(67), 1, + [276261] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(5853), 1, + sym_body, + STATE(4903), 2, + sym_comment, + sym_include, + [276287] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4808), 2, + STATE(4904), 2, sym_comment, sym_include, - ACTIONS(3720), 4, + ACTIONS(3447), 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, + [276307] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4809), 2, + STATE(4905), 2, sym_comment, sym_include, - ACTIONS(3406), 4, + ACTIONS(3445), 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, + [276327] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6940), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4810), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(5889), 1, + sym_body, + STATE(4906), 2, sym_comment, sym_include, - [273033] = 5, - ACTIONS(67), 1, + [276353] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5889), 1, + sym_body, + STATE(4907), 2, + sym_comment, + sym_include, + [276379] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4811), 2, + STATE(4908), 2, sym_comment, sym_include, - ACTIONS(3722), 4, + ACTIONS(3443), 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, + [276399] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5911), 1, + sym_body, + STATE(4909), 2, sym_comment, sym_include, - [273077] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276425] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4813), 2, + STATE(4910), 2, sym_comment, sym_include, - ACTIONS(3724), 4, + ACTIONS(3441), 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, + [276445] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6946), 1, - sym__terminator, - STATE(4786), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4814), 2, - sym_comment, - sym_include, - [273123] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6946), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4815), 2, + STATE(4911), 2, sym_comment, sym_include, - [273149] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3439), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276465] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4816), 2, + STATE(4912), 2, sym_comment, sym_include, - ACTIONS(3726), 4, + ACTIONS(3437), 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, + [276485] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6948), 1, - sym_identifier, - STATE(122), 1, - sym_qualified_name, - ACTIONS(6950), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4817), 2, + STATE(4913), 2, sym_comment, sym_include, - [273193] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3435), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276505] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4818), 2, + STATE(4914), 2, sym_comment, sym_include, - ACTIONS(3728), 4, + ACTIONS(3433), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [273213] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276525] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4819), 2, + STATE(4915), 2, sym_comment, sym_include, - ACTIONS(3730), 4, + ACTIONS(3431), 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, + [276545] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4901), 1, + aux_sym_for_statement_repeat1, + STATE(5911), 1, + sym_body, + STATE(4916), 2, + sym_comment, + sym_include, + [276571] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4820), 2, + STATE(4917), 2, sym_comment, sym_include, - ACTIONS(3732), 4, + ACTIONS(3429), 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, + [276591] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6952), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4821), 2, - sym_comment, - sym_include, - [273279] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(6954), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4822), 2, + STATE(4918), 2, sym_comment, sym_include, - [273305] = 7, - ACTIONS(3), 1, + ACTIONS(3427), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276611] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4919), 2, sym_comment, sym_include, - [273329] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6931), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [276631] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5789), 1, - sym_on_stop_phrase, - ACTIONS(5830), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4824), 2, + STATE(4920), 2, sym_comment, sym_include, - [273353] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3425), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276651] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5812), 1, - sym_body, - STATE(4825), 2, + STATE(4921), 2, sym_comment, sym_include, - [273379] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3423), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276671] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(6960), 1, + ACTIONS(6933), 1, sym__terminator, - ACTIONS(6962), 1, + ACTIONS(6935), 1, aux_sym_using_statement_token2, - STATE(416), 1, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(4826), 2, + STATE(4922), 2, sym_comment, sym_include, - [273405] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276697] = 5, 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(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5713), 1, - sym_body, - STATE(4827), 2, - sym_comment, - sym_include, - [273431] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6964), 1, - sym_identifier, - STATE(134), 1, - sym_qualified_name, - ACTIONS(6966), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4828), 2, + STATE(4923), 2, sym_comment, sym_include, - [273455] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3421), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276717] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5157), 1, - aux_sym_for_statement_repeat1, - STATE(5812), 1, - sym_body, - STATE(4829), 2, + STATE(4924), 2, sym_comment, sym_include, - [273481] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3419), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276737] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4830), 2, + STATE(4925), 2, sym_comment, sym_include, - 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(3417), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276757] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5831), 1, + STATE(5946), 1, sym_body, - STATE(4831), 2, + STATE(4926), 2, sym_comment, sym_include, - [273527] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276783] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5902), 1, - sym_body, - STATE(4832), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6937), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2489), 1, + sym_function_arguments, + STATE(4927), 2, sym_comment, sym_include, - [273553] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276809] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4928), 2, sym_comment, sym_include, - [273579] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3415), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276829] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4907), 1, aux_sym_for_statement_repeat1, - STATE(5900), 1, + STATE(5946), 1, sym_body, - STATE(4834), 2, + STATE(4929), 2, sym_comment, sym_include, - [273605] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276855] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5895), 1, - sym_body, - STATE(4835), 2, + STATE(4930), 2, sym_comment, sym_include, - [273631] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3413), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276875] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4834), 1, - aux_sym_for_statement_repeat1, - STATE(5892), 1, - sym_body, - STATE(4836), 2, + STATE(4931), 2, sym_comment, sym_include, - [273657] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3411), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276895] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5892), 1, - sym_body, - STATE(4837), 2, + STATE(4932), 2, sym_comment, sym_include, - [273683] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3409), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276915] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(6939), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6224), 1, + sym_number_literal, + STATE(4933), 2, sym_comment, sym_include, - [273709] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [276941] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5890), 1, - sym_body, - STATE(4839), 2, + STATE(4934), 2, sym_comment, sym_include, - [273735] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3407), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276961] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4840), 2, + STATE(4935), 2, sym_comment, sym_include, - 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(3405), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276981] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5794), 1, - sym_body, - STATE(4841), 2, + STATE(4936), 2, sym_comment, sym_include, - [273781] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3403), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277001] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4837), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5886), 1, + STATE(6016), 1, sym_body, - STATE(4842), 2, + STATE(4937), 2, sym_comment, sym_include, - [273807] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277027] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5886), 1, - sym_body, - STATE(4843), 2, + STATE(4938), 2, sym_comment, sym_include, - [273833] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3401), 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(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4839), 1, - aux_sym_for_statement_repeat1, - STATE(5878), 1, - sym_body, - STATE(4844), 2, + STATE(4939), 2, sym_comment, sym_include, - [273859] = 8, - ACTIONS(67), 1, + ACTIONS(3399), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277067] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5878), 1, - sym_body, - STATE(4845), 2, + ACTIONS(6941), 1, + sym_identifier, + ACTIONS(6943), 1, + sym__terminator, + ACTIONS(6945), 1, + aux_sym_query_definition_token1, + STATE(5308), 1, + sym_qualified_name, + STATE(4940), 2, sym_comment, sym_include, - [273885] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277093] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6874), 1, - aux_sym_return_type_token2, - STATE(4846), 2, + STATE(4941), 2, sym_comment, sym_include, - 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(3397), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277113] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4843), 1, - aux_sym_for_statement_repeat1, - STATE(5871), 1, - sym_body, - STATE(4847), 2, + STATE(4942), 2, sym_comment, sym_include, - [273933] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3395), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277133] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4926), 1, aux_sym_for_statement_repeat1, - STATE(5871), 1, + STATE(6016), 1, sym_body, - STATE(4848), 2, + STATE(4943), 2, sym_comment, sym_include, - [273959] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277159] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4944), 2, sym_comment, sym_include, - [273985] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3503), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277179] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5870), 1, - sym_body, - STATE(4850), 2, + STATE(4945), 2, sym_comment, sym_include, - [274011] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3387), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277199] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4885), 1, - aux_sym_for_statement_repeat1, - STATE(5794), 1, - sym_body, - STATE(4851), 2, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(6947), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6201), 1, + sym_number_literal, + STATE(4946), 2, sym_comment, sym_include, - [274037] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277225] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5911), 1, - sym_body, - STATE(4852), 2, + STATE(4947), 2, sym_comment, sym_include, - [274063] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3385), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277245] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4848), 1, - aux_sym_for_statement_repeat1, - STATE(5866), 1, - sym_body, - STATE(4853), 2, + STATE(4948), 2, sym_comment, sym_include, - [274089] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3383), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277265] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5866), 1, - sym_body, - STATE(4854), 2, + STATE(4949), 2, sym_comment, sym_include, - [274115] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3381), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277285] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5106), 1, - aux_sym_for_statement_repeat1, - STATE(5911), 1, - sym_body, - STATE(4855), 2, + ACTIONS(79), 1, + anon_sym_LPAREN, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(1454), 1, + sym_function_arguments, + STATE(4950), 2, sym_comment, sym_include, - [274141] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277311] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4951), 2, sym_comment, sym_include, - [274167] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3379), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277331] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4892), 1, - aux_sym_for_statement_repeat1, - STATE(5770), 1, - sym_body, - STATE(4857), 2, + STATE(4952), 2, sym_comment, sym_include, - [274193] = 8, - ACTIONS(67), 1, + ACTIONS(6949), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [277351] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4953), 2, + sym_comment, + sym_include, + ACTIONS(3377), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277371] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5864), 1, - sym_body, - STATE(4858), 2, + STATE(4954), 2, sym_comment, sym_include, - [274219] = 5, + ACTIONS(3375), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277391] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4859), 2, - sym_comment, - sym_include, - ACTIONS(6749), 4, + ACTIONS(6951), 1, 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(73), 1, - anon_sym_LBRACE, - 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, + STATE(125), 1, + sym_qualified_name, + ACTIONS(6953), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4955), 2, sym_comment, sym_include, - [274265] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277415] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5856), 1, - sym_body, - STATE(4861), 2, + STATE(4956), 2, sym_comment, sym_include, - [274291] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3373), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277435] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5770), 1, - sym_body, - STATE(4862), 2, + STATE(4957), 2, sym_comment, sym_include, - [274317] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3369), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277455] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(6974), 1, + ACTIONS(4678), 1, anon_sym_LPAREN, - STATE(333), 1, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(3561), 1, sym_function_arguments, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(4863), 2, + STATE(5341), 1, + sym_case_body, + STATE(4958), 2, sym_comment, sym_include, - [274343] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277481] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4864), 2, + STATE(4959), 2, sym_comment, sym_include, - ACTIONS(3462), 4, + ACTIONS(3367), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [274363] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277501] = 5, 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(4858), 1, - aux_sym_for_statement_repeat1, - STATE(5828), 1, - sym_body, - STATE(4865), 2, - sym_comment, - sym_include, - [274389] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5828), 1, - sym_body, - STATE(4866), 2, + STATE(4960), 2, sym_comment, sym_include, - [274415] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3365), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277521] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4961), 2, sym_comment, sym_include, - [274441] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3363), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277541] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5508), 1, - sym_body, - STATE(4868), 2, + STATE(4962), 2, sym_comment, sym_include, - [274467] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3361), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277561] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5815), 1, - sym_body, - STATE(4869), 2, + STATE(4963), 2, sym_comment, sym_include, - [274493] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3359), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277581] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5815), 1, - sym_body, - STATE(4870), 2, + STATE(4964), 2, sym_comment, sym_include, - [274519] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3357), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277601] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(4965), 2, sym_comment, sym_include, - [274545] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3355), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277621] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4966), 2, sym_comment, sym_include, - [274571] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3353), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277641] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4873), 2, + STATE(4967), 2, sym_comment, sym_include, - ACTIONS(3404), 4, + ACTIONS(3351), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [274591] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277661] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4646), 1, - aux_sym_for_statement_repeat1, - STATE(5508), 1, - sym_body, - STATE(4874), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + ACTIONS(5122), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4968), 2, sym_comment, sym_include, - [274617] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277685] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6955), 1, + aux_sym_stream_definition_token1, + ACTIONS(6957), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6959), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6961), 1, + aux_sym_output_stream_statement_token1, + STATE(4969), 2, sym_comment, sym_include, - [274643] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277711] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(6963), 1, + aux_sym_using_statement_token2, + ACTIONS(6965), 1, + aux_sym_stream_definition_token1, + ACTIONS(6967), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6969), 1, + aux_sym_input_close_statement_token2, + STATE(4970), 2, sym_comment, sym_include, - [274669] = 5, - ACTIONS(3), 1, + [277737] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4877), 2, + ACTIONS(6971), 1, + anon_sym_COMMA, + ACTIONS(3888), 2, + aux_sym_of_token1, + aux_sym_on_statement_token1, + STATE(4971), 3, sym_comment, sym_include, - 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, + aux_sym_on_statement_repeat1, + [277759] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4878), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6098), 1, + sym_body, + STATE(4972), 2, sym_comment, sym_include, - ACTIONS(3400), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [274709] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277785] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4866), 1, + STATE(4972), 1, aux_sym_for_statement_repeat1, - STATE(5970), 1, + STATE(6091), 1, sym_body, - STATE(4879), 2, + STATE(4973), 2, sym_comment, sym_include, - [274735] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277811] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5970), 1, + STATE(6091), 1, sym_body, - STATE(4880), 2, + STATE(4974), 2, sym_comment, sym_include, - [274761] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277837] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5764), 1, + STATE(6089), 1, sym_body, - STATE(4881), 2, + STATE(4975), 2, sym_comment, sym_include, - [274787] = 8, - ACTIONS(67), 1, + [277863] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(4976), 2, + sym_comment, + sym_include, + ACTIONS(3349), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277883] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4974), 1, aux_sym_for_statement_repeat1, - STATE(5544), 1, + STATE(6087), 1, sym_body, - STATE(4882), 2, + STATE(4977), 2, sym_comment, sym_include, - [274813] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277909] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5924), 1, + STATE(6087), 1, sym_body, - STATE(4883), 2, + STATE(4978), 2, sym_comment, sym_include, - [274839] = 5, - ACTIONS(3), 1, + [277935] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(178), 1, - sym_identifier, - STATE(4884), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(4975), 1, + aux_sym_for_statement_repeat1, + STATE(6081), 1, + sym_body, + STATE(4979), 2, sym_comment, sym_include, - 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, + [277961] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5762), 1, + STATE(6081), 1, sym_body, - STATE(4885), 2, + STATE(4980), 2, sym_comment, sym_include, - [274885] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [277987] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6976), 1, + aux_sym_variable_definition_token2, + STATE(4981), 2, sym_comment, sym_include, - [274911] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6974), 3, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + [278009] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4982), 2, sym_comment, sym_include, - [274937] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3347), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278029] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4983), 2, sym_comment, sym_include, - [274963] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3345), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278049] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5041), 1, + STATE(4978), 1, aux_sym_for_statement_repeat1, - STATE(5924), 1, + STATE(6079), 1, sym_body, - STATE(4889), 2, + STATE(4984), 2, sym_comment, sym_include, - [274989] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278075] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4757), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5544), 1, + STATE(6079), 1, sym_body, - STATE(4890), 2, + STATE(4985), 2, sym_comment, sym_include, - [275015] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278101] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4891), 2, + STATE(4986), 2, sym_comment, sym_include, - ACTIONS(3402), 4, + ACTIONS(3343), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275035] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278121] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4980), 1, aux_sym_for_statement_repeat1, - STATE(5754), 1, + STATE(6060), 1, sym_body, - STATE(4892), 2, + STATE(4987), 2, sym_comment, sym_include, - [275061] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278147] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5683), 1, + STATE(6060), 1, sym_body, - STATE(4893), 2, + STATE(4988), 2, sym_comment, sym_include, - [275087] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278173] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(4989), 2, sym_comment, sym_include, - [275113] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6978), 4, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + [278193] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4895), 2, + STATE(4990), 2, sym_comment, sym_include, - ACTIONS(3396), 4, + ACTIONS(3341), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275133] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278213] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5683), 1, - sym_body, - STATE(4896), 2, + STATE(4991), 2, sym_comment, sym_include, - [275159] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3339), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278233] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4897), 2, + STATE(4992), 2, sym_comment, sym_include, - ACTIONS(3466), 4, + ACTIONS(3337), 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, + [278253] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4985), 1, aux_sym_for_statement_repeat1, - STATE(5750), 1, + STATE(6059), 1, sym_body, - STATE(4898), 2, + STATE(4993), 2, sym_comment, sym_include, - [275205] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278279] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5491), 1, + STATE(6059), 1, sym_body, - STATE(4899), 2, + STATE(4994), 2, sym_comment, sym_include, - [275231] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278305] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4900), 2, + STATE(4995), 2, sym_comment, sym_include, - ACTIONS(3468), 4, + ACTIONS(3335), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275251] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278325] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4905), 1, - aux_sym_for_statement_repeat1, - STATE(5750), 1, - sym_body, - STATE(4901), 2, + STATE(4996), 2, sym_comment, sym_include, - [275277] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3331), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278345] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(4988), 1, aux_sym_for_statement_repeat1, - STATE(5749), 1, + STATE(5501), 1, sym_body, - STATE(4902), 2, + STATE(4997), 2, sym_comment, sym_include, - [275303] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278371] = 8, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4911), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5749), 1, + STATE(5501), 1, sym_body, - STATE(4904), 2, + STATE(4998), 2, sym_comment, sym_include, - [275355] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278397] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5743), 1, - sym_body, - STATE(4905), 2, + STATE(4999), 2, sym_comment, sym_include, - [275381] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3329), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278417] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4906), 2, + STATE(5000), 2, sym_comment, sym_include, - 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(3327), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278437] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5569), 1, - sym_body, - STATE(4907), 2, + STATE(5001), 2, sym_comment, sym_include, - [275427] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3325), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278457] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4921), 1, + STATE(4994), 1, aux_sym_for_statement_repeat1, - STATE(5743), 1, + STATE(6054), 1, sym_body, - STATE(4908), 2, + STATE(5002), 2, sym_comment, sym_include, - [275453] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278483] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4868), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5904), 1, + STATE(6054), 1, sym_body, - STATE(4909), 2, + STATE(5003), 2, sym_comment, sym_include, - [275479] = 5, - ACTIONS(67), 1, + [278509] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6980), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5004), 2, + sym_comment, + sym_include, + [278535] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4910), 2, + STATE(5005), 2, sym_comment, sym_include, - ACTIONS(3470), 4, + ACTIONS(3323), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275499] = 8, - ACTIONS(67), 1, + [278555] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6982), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2596), 1, + sym_function_arguments, + STATE(5006), 2, + sym_comment, + sym_include, + [278581] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5742), 1, - sym_body, - STATE(4911), 2, + STATE(5007), 2, sym_comment, sym_include, - [275525] = 8, - ACTIONS(67), 1, + ACTIONS(3321), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278601] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5008), 2, + sym_comment, + sym_include, + ACTIONS(3319), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278621] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4893), 1, + STATE(4998), 1, aux_sym_for_statement_repeat1, - STATE(5569), 1, + STATE(5502), 1, sym_body, - STATE(4912), 2, + STATE(5009), 2, sym_comment, sym_include, - [275551] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278647] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4941), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5742), 1, + STATE(5502), 1, sym_body, - STATE(4913), 2, + STATE(5010), 2, sym_comment, sym_include, - [275577] = 8, - ACTIONS(3), 1, + [278673] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, 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, + aux_sym_return_type_token2, + STATE(5011), 2, sym_comment, sym_include, - [275603] = 5, - ACTIONS(3), 1, + ACTIONS(6986), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [278695] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4915), 2, + STATE(5012), 2, sym_comment, sym_include, - ACTIONS(4087), 4, - sym_identifier, - sym__terminator, - anon_sym_LBRACK, - aux_sym_scope_tuning_token1, - [275623] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3307), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278715] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(5013), 2, sym_comment, sym_include, - [275675] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3301), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278735] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4918), 2, + STATE(5014), 2, sym_comment, sym_include, - ACTIONS(3472), 4, + ACTIONS(3297), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275695] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278755] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4919), 2, + STATE(5015), 2, sym_comment, sym_include, - ACTIONS(3474), 4, + ACTIONS(3293), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275715] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278775] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5003), 1, + aux_sym_for_statement_repeat1, + STATE(6049), 1, + sym_body, + STATE(5016), 2, sym_comment, sym_include, - [275741] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278801] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5741), 1, + STATE(6049), 1, sym_body, - STATE(4921), 2, + STATE(5017), 2, sym_comment, sym_include, - [275767] = 8, - ACTIONS(3), 1, + [278827] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6918), 1, - sym_identifier, - ACTIONS(6920), 1, - aux_sym_input_expression_token2, - STATE(3254), 1, - sym_using_field, - STATE(3261), 1, - sym_qualified_name, - STATE(4922), 2, + STATE(5018), 2, sym_comment, sym_include, - [275793] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3289), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278847] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(5019), 2, sym_comment, sym_include, - [275819] = 7, - ACTIONS(3), 1, + ACTIONS(3285), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278867] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6994), 1, - sym_identifier, - STATE(127), 1, - sym_qualified_name, - ACTIONS(6996), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4924), 2, + STATE(5020), 2, sym_comment, sym_include, - [275843] = 6, - ACTIONS(67), 1, + ACTIONS(3281), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278887] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5021), 2, + sym_comment, + sym_include, + ACTIONS(3277), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278907] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6998), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - ACTIONS(3829), 2, - aux_sym_of_token1, - aux_sym_on_statement_token1, - STATE(4925), 3, + STATE(5010), 1, + aux_sym_for_statement_repeat1, + STATE(6045), 1, + sym_body, + STATE(5022), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - [275865] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278933] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4926), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6045), 1, + sym_body, + STATE(5023), 2, sym_comment, sym_include, - ACTIONS(7001), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [275885] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278959] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4927), 2, + STATE(5024), 2, sym_comment, sym_include, - ACTIONS(3476), 4, + ACTIONS(3273), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275905] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [278979] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4928), 2, + STATE(5025), 2, sym_comment, sym_include, - ACTIONS(3408), 4, + ACTIONS(3271), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [275925] = 5, - ACTIONS(3), 1, + [278999] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(242), 1, - sym_identifier, - STATE(4929), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5026), 2, sym_comment, sym_include, - 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(3371), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279019] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(5027), 2, sym_comment, sym_include, - [275971] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3263), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279039] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5941), 1, - sym_on_stop_phrase, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4931), 2, + STATE(5028), 2, sym_comment, sym_include, - [275995] = 5, - ACTIONS(3), 1, + ACTIONS(3259), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279059] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4932), 2, + STATE(5029), 2, sym_comment, sym_include, - ACTIONS(7003), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_scope_tuning_token1, - [276015] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3255), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279079] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4953), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5741), 1, + STATE(6051), 1, sym_body, - STATE(4933), 2, + STATE(5030), 2, sym_comment, sym_include, - [276041] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279105] = 8, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5942), 1, - sym_on_stop_phrase, - ACTIONS(4436), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4935), 2, + STATE(4759), 1, + aux_sym_for_statement_repeat1, + STATE(5924), 1, + sym_body, + STATE(5031), 2, sym_comment, sym_include, - [276087] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279131] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(7009), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4936), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(6051), 1, + sym_body, + STATE(5032), 2, sym_comment, sym_include, - [276113] = 6, - ACTIONS(3), 1, + [279157] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7013), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4937), 2, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(6158), 1, + sym_body, + STATE(5033), 2, sym_comment, sym_include, - ACTIONS(7011), 3, - sym_identifier, - sym__terminator, - aux_sym_scope_tuning_token1, - [276135] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279183] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6988), 1, + aux_sym_return_type_token2, + STATE(5034), 2, sym_comment, sym_include, - [276161] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6990), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [279205] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4939), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5924), 1, + sym_body, + STATE(5035), 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, - [276181] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279231] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7023), 1, - aux_sym_using_statement_token2, - ACTIONS(7025), 1, - aux_sym_stream_definition_token1, - ACTIONS(7027), 1, - aux_sym_input_close_statement_token1, - ACTIONS(7029), 1, - aux_sym_input_close_statement_token2, - STATE(4940), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6992), 1, + sym__terminator, + STATE(5004), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5036), 2, sym_comment, sym_include, - [276207] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279257] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5740), 1, - sym_body, - STATE(4941), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6992), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5037), 2, sym_comment, sym_include, - [276233] = 8, - ACTIONS(67), 1, + [279283] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(6883), 1, + anon_sym_COMMA, + ACTIONS(6994), 1, + sym_identifier, + ACTIONS(6996), 1, + sym__terminator, + STATE(4762), 1, + aux_sym_enum_member_repeat1, + STATE(5038), 2, sym_comment, sym_include, - [276259] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279309] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5023), 1, aux_sym_for_statement_repeat1, - STATE(5590), 1, + STATE(6028), 1, sym_body, - STATE(4943), 2, + STATE(5039), 2, sym_comment, sym_include, - [276285] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279335] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4943), 1, - aux_sym_for_statement_repeat1, - STATE(5592), 1, - sym_body, - STATE(4944), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(6998), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5040), 2, sym_comment, sym_include, - [276311] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279361] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5592), 1, + STATE(6028), 1, sym_body, - STATE(4945), 2, + STATE(5041), 2, sym_comment, sym_include, - [276337] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279387] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5594), 1, + STATE(6007), 1, sym_body, - STATE(4946), 2, + STATE(5042), 2, sym_comment, sym_include, - [276363] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279413] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4947), 2, + STATE(5043), 2, sym_comment, sym_include, - ACTIONS(3480), 4, + ACTIONS(7000), 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, - [276383] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [279433] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(4965), 1, - aux_sym_for_statement_repeat1, - STATE(5740), 1, - sym_body, - STATE(4948), 2, + STATE(5044), 2, sym_comment, sym_include, - [276409] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7002), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [279453] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4945), 1, + STATE(4775), 1, aux_sym_for_statement_repeat1, - STATE(5604), 1, + STATE(5950), 1, sym_body, - STATE(4949), 2, + STATE(5045), 2, sym_comment, sym_include, - [276435] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279479] = 8, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5604), 1, + STATE(5950), 1, sym_body, - STATE(4951), 2, + STATE(5046), 2, sym_comment, sym_include, - [276481] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279505] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4952), 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, - [276501] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5954), 1, + sym_on_stop_phrase, + ACTIONS(4494), 2, 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, + STATE(5047), 2, sym_comment, sym_include, - [276527] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279529] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(4954), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4989), 1, + STATE(5030), 1, aux_sym_for_statement_repeat1, - STATE(5737), 1, + STATE(6007), 1, sym_body, - STATE(4955), 2, + STATE(5048), 2, sym_comment, sym_include, - [276573] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279555] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4956), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5991), 1, + sym_on_stop_phrase, + ACTIONS(4554), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5049), 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, - [276593] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279579] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4957), 2, + STATE(5050), 2, sym_comment, sym_include, - ACTIONS(3392), 4, + ACTIONS(3267), 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, + [279599] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4946), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5608), 1, + STATE(5993), 1, sym_body, - STATE(4958), 2, + STATE(5051), 2, sym_comment, sym_include, - [276639] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279625] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5041), 1, aux_sym_for_statement_repeat1, - STATE(5608), 1, + STATE(5993), 1, sym_body, - STATE(4959), 2, + STATE(5052), 2, sym_comment, sym_include, - [276665] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279651] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4960), 2, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(7004), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6391), 1, + sym_number_literal, + STATE(5053), 2, sym_comment, sym_include, - 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, + [279677] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4951), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5614), 1, + STATE(5847), 1, sym_body, - STATE(4961), 2, + STATE(5054), 2, sym_comment, sym_include, - [276711] = 5, - ACTIONS(67), 1, + [279703] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4962), 2, + ACTIONS(7006), 1, + sym_identifier, + ACTIONS(7008), 1, + sym__terminator, + ACTIONS(7010), 1, + aux_sym_query_definition_token1, + STATE(5352), 1, + sym_qualified_name, + STATE(5055), 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, - [276731] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279729] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5051), 1, aux_sym_for_statement_repeat1, - STATE(5614), 1, + STATE(5847), 1, sym_body, - STATE(4963), 2, + STATE(5056), 2, sym_comment, sym_include, - [276757] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279755] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4964), 2, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(7012), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6413), 1, + sym_number_literal, + STATE(5057), 2, sym_comment, sym_include, - ACTIONS(3388), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [276777] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279781] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5181), 1, aux_sym_for_statement_repeat1, - STATE(5735), 1, + STATE(6158), 1, sym_body, - STATE(4965), 2, + STATE(5058), 2, sym_comment, sym_include, - [276803] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279807] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4959), 1, + STATE(5035), 1, aux_sym_for_statement_repeat1, - STATE(5627), 1, + STATE(5992), 1, sym_body, - STATE(4966), 2, + STATE(5059), 2, sym_comment, sym_include, - [276829] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279833] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4967), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5992), 1, + sym_body, + STATE(5060), 2, sym_comment, sym_include, - ACTIONS(3384), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [276849] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279859] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7014), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(1168), 1, + sym_function_arguments, + STATE(5061), 2, sym_comment, sym_include, - [276875] = 8, - ACTIONS(67), 1, + [279885] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(5769), 1, + ACTIONS(7016), 1, + sym_identifier, + ACTIONS(7019), 1, sym__terminator, - STATE(4876), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(4969), 2, + STATE(5749), 1, + sym_enum_member, + STATE(5062), 3, sym_comment, sym_include, - [276901] = 8, - ACTIONS(67), 1, + aux_sym_enum_definition_repeat1, + [279909] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 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(5627), 1, - sym_body, - STATE(4970), 2, + ACTIONS(7021), 1, + sym_identifier, + STATE(128), 1, + sym_qualified_name, + ACTIONS(7023), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(5063), 2, sym_comment, sym_include, - [276927] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279933] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4971), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(3561), 1, + sym_function_arguments, + STATE(5354), 1, + sym_case_body, + STATE(5064), 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, - [276947] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [279959] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4972), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(3561), 1, + sym_function_arguments, + STATE(5452), 1, + sym_case_body, + STATE(5065), 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, - [276967] = 5, - ACTIONS(67), 1, + [279985] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4973), 2, + STATE(5066), 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, - [276987] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7025), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [280005] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4974), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + ACTIONS(5801), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5067), 2, sym_comment, sym_include, - 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, + [280029] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4975), 2, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5974), 1, + sym_on_stop_phrase, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5068), 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, - [277027] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280053] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4976), 2, + ACTIONS(7027), 1, + aux_sym_stream_definition_token1, + ACTIONS(7029), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7031), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7033), 1, + aux_sym_output_stream_statement_token1, + STATE(5069), 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, - [277047] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280079] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4977), 2, + ACTIONS(7035), 1, + aux_sym_using_statement_token2, + ACTIONS(7037), 1, + aux_sym_stream_definition_token1, + ACTIONS(7039), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7041), 1, + aux_sym_input_close_statement_token2, + STATE(5070), 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, - [277067] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280105] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4978), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5628), 1, + sym_body, + STATE(5071), 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, - [277087] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280131] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4979), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5071), 1, + aux_sym_for_statement_repeat1, + STATE(5610), 1, + sym_body, + STATE(5072), 2, sym_comment, sym_include, - 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, + [280157] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4980), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5610), 1, + sym_body, + STATE(5073), 2, sym_comment, sym_include, - ACTIONS(3704), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [277127] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280183] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4981), 2, + ACTIONS(7043), 1, + aux_sym_return_type_token2, + STATE(5074), 2, sym_comment, sym_include, - ACTIONS(3510), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [277147] = 5, - ACTIONS(67), 1, + ACTIONS(7045), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [280205] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4982), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(7047), 1, + sym_identifier, + STATE(4021), 2, + sym_qualified_name, + sym_string_literal, + STATE(5075), 2, sym_comment, sym_include, - 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, + [280229] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4963), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5632), 1, + STATE(5594), 1, sym_body, - STATE(4983), 2, + STATE(5076), 2, sym_comment, sym_include, - [277193] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280255] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5632), 1, - sym_body, - STATE(4984), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5771), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5077), 2, sym_comment, sym_include, - [277219] = 8, - ACTIONS(67), 1, + [280281] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5078), 2, + sym_comment, + sym_include, + ACTIONS(7049), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [280301] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4994), 1, + STATE(5073), 1, aux_sym_for_statement_repeat1, - STATE(5735), 1, + STATE(5564), 1, sym_body, - STATE(4985), 2, + STATE(5079), 2, sym_comment, sym_include, - [277245] = 8, - ACTIONS(67), 1, + [280327] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5771), 1, + sym__terminator, + STATE(5037), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5080), 2, + sym_comment, + sym_include, + [280353] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4970), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5466), 1, + STATE(5564), 1, sym_body, - STATE(4986), 2, + STATE(5081), 2, sym_comment, sym_include, - [277271] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280379] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6794), 1, - aux_sym_return_type_token2, - STATE(4987), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7051), 1, + sym__terminator, + STATE(5040), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5082), 2, sym_comment, sym_include, - 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, + [280405] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5466), 1, - sym_body, - STATE(4988), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7051), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5083), 2, sym_comment, sym_include, - [277319] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280431] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5076), 1, aux_sym_for_statement_repeat1, - STATE(5734), 1, + STATE(5508), 1, sym_body, - STATE(4989), 2, + STATE(5084), 2, sym_comment, sym_include, - [277345] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280457] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(5508), 1, sym_body, - STATE(4990), 2, + STATE(5085), 2, sym_comment, sym_include, - [277371] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280483] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(4991), 2, + STATE(5086), 2, sym_comment, sym_include, - ACTIONS(3442), 4, + ACTIONS(7053), 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, - [277391] = 8, - ACTIONS(67), 1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [280503] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7055), 1, + sym_identifier, + STATE(5087), 2, + sym_comment, + sym_include, + ACTIONS(7057), 3, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + [280525] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4984), 1, + STATE(5081), 1, aux_sym_for_statement_repeat1, - STATE(5652), 1, + STATE(5516), 1, sym_body, - STATE(4992), 2, + STATE(5088), 2, sym_comment, sym_include, - [277417] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280551] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5652), 1, + STATE(5516), 1, sym_body, - STATE(4993), 2, + STATE(5089), 2, sym_comment, sym_include, - [277443] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280577] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5085), 1, aux_sym_for_statement_repeat1, - STATE(5666), 1, + STATE(5524), 1, sym_body, - STATE(4994), 2, + STATE(5090), 2, sym_comment, sym_include, - [277469] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280603] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [277495] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5003), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5666), 1, + STATE(5524), 1, sym_body, - STATE(4996), 2, + STATE(5091), 2, sym_comment, sym_include, - [277521] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280629] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6763), 1, + sym__escaped_string, + STATE(4410), 1, + sym_string_literal, + ACTIONS(7059), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5092), 2, sym_comment, sym_include, - [277547] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280653] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4988), 1, + STATE(5089), 1, aux_sym_for_statement_repeat1, - STATE(5648), 1, + STATE(5539), 1, sym_body, - STATE(4998), 2, + STATE(5093), 2, sym_comment, sym_include, - [277573] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280679] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5648), 1, + STATE(5539), 1, sym_body, - STATE(4999), 2, + STATE(5094), 2, sym_comment, sym_include, - [277599] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280705] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4899), 1, + STATE(5046), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(5977), 1, sym_body, - STATE(5000), 2, + STATE(5095), 2, sym_comment, sym_include, - [277625] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280731] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [277651] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4993), 1, + STATE(5091), 1, aux_sym_for_statement_repeat1, - STATE(5655), 1, + STATE(5542), 1, sym_body, - STATE(5002), 2, + STATE(5096), 2, sym_comment, sym_include, - [277677] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280757] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5728), 1, + STATE(5542), 1, sym_body, - STATE(5003), 2, + STATE(5097), 2, sym_comment, sym_include, - [277703] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280783] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5967), 1, + sym_on_stop_phrase, + ACTIONS(4492), 2, anon_sym_COLON, - ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5655), 1, - sym_body, - STATE(5004), 2, + STATE(5098), 2, sym_comment, sym_include, - [277729] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280807] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5005), 2, - sym_comment, - sym_include, - ACTIONS(3514), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [277749] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4999), 1, + STATE(5094), 1, aux_sym_for_statement_repeat1, - STATE(5669), 1, + STATE(5555), 1, sym_body, - STATE(5006), 2, + STATE(5099), 2, sym_comment, sym_include, - [277775] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280833] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5007), 2, - sym_comment, - sym_include, - ACTIONS(3522), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [277795] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5555), 1, + sym_body, + STATE(5100), 2, sym_comment, sym_include, - [277821] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280859] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [277847] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5010), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5097), 1, + aux_sym_for_statement_repeat1, + STATE(6139), 1, + sym_body, + STATE(5101), 2, sym_comment, sym_include, - ACTIONS(3516), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [277867] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280885] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5011), 2, - sym_comment, - sym_include, - ACTIONS(3518), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [277887] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5669), 1, + STATE(6139), 1, sym_body, - STATE(5012), 2, + STATE(5102), 2, sym_comment, sym_include, - [277913] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280911] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - STATE(3531), 1, - sym_function_arguments, - ACTIONS(5779), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(5013), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5977), 1, + sym_body, + STATE(5103), 2, sym_comment, sym_include, - [277937] = 5, - ACTIONS(3), 1, + [280937] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - sym_identifier, - STATE(5014), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5100), 1, + aux_sym_for_statement_repeat1, + STATE(5560), 1, + sym_body, + STATE(5104), 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, + [280963] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7065), 1, - sym_identifier, - ACTIONS(7067), 1, - sym__terminator, - ACTIONS(7069), 1, - aux_sym_query_definition_token1, - STATE(5374), 1, - sym_qualified_name, - STATE(5015), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5560), 1, + sym_body, + STATE(5105), 2, sym_comment, sym_include, - [277983] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [280989] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(5106), 2, sym_comment, sym_include, - [278009] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7061), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [281009] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5102), 1, aux_sym_for_statement_repeat1, - STATE(5697), 1, + STATE(5565), 1, sym_body, - STATE(5017), 2, + STATE(5107), 2, sym_comment, sym_include, - [278035] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281035] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5678), 1, + STATE(5565), 1, sym_body, - STATE(5018), 2, + STATE(5108), 2, sym_comment, sym_include, - [278061] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281061] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5004), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5678), 1, + STATE(5572), 1, sym_body, - STATE(5019), 2, + STATE(5109), 2, sym_comment, sym_include, - [278087] = 5, - ACTIONS(3), 1, + [281087] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5020), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5105), 1, + aux_sym_for_statement_repeat1, + STATE(5572), 1, + sym_body, + STATE(5110), 2, sym_comment, sym_include, - ACTIONS(4152), 4, - sym_identifier, - sym__terminator, - anon_sym_LBRACK, - aux_sym_scope_tuning_token1, - [278107] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281113] = 8, 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, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(5902), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(3531), 1, - sym_function_arguments, - STATE(5385), 1, - sym_case_body, - STATE(5022), 2, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5108), 1, + aux_sym_for_statement_repeat1, + STATE(5590), 1, + sym_body, + STATE(5111), 2, sym_comment, sym_include, - [278155] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281139] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5023), 2, - sym_comment, - sym_include, - ACTIONS(3382), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278175] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5012), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5698), 1, + STATE(5590), 1, sym_body, - STATE(5024), 2, + STATE(5112), 2, sym_comment, sym_include, - [278201] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281165] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5025), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5718), 1, + sym_body, + STATE(5113), 2, sym_comment, sym_include, - ACTIONS(3520), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278221] = 5, - ACTIONS(67), 1, + [281191] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5026), 2, + ACTIONS(7063), 1, + sym_identifier, + ACTIONS(7065), 1, + sym__terminator, + ACTIONS(7067), 1, + aux_sym_query_definition_token1, + STATE(5392), 1, + sym_qualified_name, + STATE(5114), 2, sym_comment, sym_include, - ACTIONS(3582), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278241] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281217] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5027), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, + sym_body, + STATE(5115), 2, sym_comment, sym_include, - ACTIONS(3524), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278261] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281243] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5028), 2, + ACTIONS(867), 1, + anon_sym_LPAREN, + ACTIONS(2270), 1, + sym__namedot, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(1356), 1, + sym_function_arguments, + STATE(5116), 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, - [278281] = 5, - ACTIONS(67), 1, + [281269] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5029), 2, + ACTIONS(160), 1, + sym_identifier, + ACTIONS(7069), 1, + sym__namedot, + ACTIONS(162), 2, + sym__terminator, + anon_sym_COMMA, + STATE(5117), 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, - [278301] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281293] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5030), 2, + ACTIONS(6984), 1, + aux_sym_return_type_token2, + STATE(5118), 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, - [278321] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7071), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [281315] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5031), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5109), 1, + aux_sym_for_statement_repeat1, + STATE(5718), 1, + sym_body, + STATE(5119), 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, - [278341] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281341] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5032), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5060), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, + sym_body, + STATE(5120), 2, sym_comment, sym_include, - ACTIONS(3534), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278361] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281367] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5033), 2, + ACTIONS(5751), 1, + sym__terminator, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5121), 2, sym_comment, sym_include, - ACTIONS(3536), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278381] = 5, + [281393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5034), 2, + STATE(5122), 2, sym_comment, sym_include, - ACTIONS(4355), 4, + ACTIONS(7073), 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(73), 1, - anon_sym_LBRACE, - STATE(5035), 2, - sym_comment, - sym_include, - ACTIONS(3540), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278421] = 5, - ACTIONS(67), 1, + anon_sym_NO_DASHERROR, + [281413] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5036), 2, + ACTIONS(7075), 1, + sym_identifier, + ACTIONS(7077), 1, + sym__terminator, + STATE(5062), 1, + aux_sym_enum_definition_repeat1, + STATE(5749), 1, + sym_enum_member, + STATE(5123), 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, - [278441] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281439] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5037), 2, - sym_comment, - sym_include, - ACTIONS(3544), 4, - aux_sym__block_terminator_token1, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5698), 1, + STATE(5844), 1, sym_body, - STATE(5038), 2, + STATE(5124), 2, sym_comment, sym_include, - [278487] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281465] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5747), 1, + STATE(5844), 1, sym_body, - STATE(5039), 2, + STATE(5125), 2, sym_comment, sym_include, - [278513] = 8, - ACTIONS(67), 1, + [281491] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(7079), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6544), 1, + sym_number_literal, + STATE(5126), 2, + sym_comment, + sym_include, + [281517] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(4827), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5697), 1, + STATE(6152), 1, sym_body, - STATE(5040), 2, + STATE(5127), 2, sym_comment, sym_include, - [278539] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281543] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5124), 1, aux_sym_for_statement_repeat1, - STATE(6068), 1, + STATE(6152), 1, sym_body, - STATE(5041), 2, + STATE(5128), 2, sym_comment, sym_include, - [278565] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281569] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5042), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5809), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5129), 2, sym_comment, sym_include, - ACTIONS(7077), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - [278585] = 7, - ACTIONS(3), 1, + [281595] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5809), 1, + sym__terminator, + STATE(5083), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5130), 2, sym_comment, sym_include, - [278609] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281621] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(6785), 1, sym__integer_literal, - ACTIONS(7083), 1, + ACTIONS(7081), 1, anon_sym_RBRACK, - STATE(185), 1, + STATE(181), 1, sym__decimal_literal, - STATE(6375), 1, + STATE(6594), 1, sym_number_literal, - STATE(5044), 2, + STATE(5131), 2, sym_comment, sym_include, - [278635] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281647] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5018), 1, - aux_sym_for_statement_repeat1, - STATE(5747), 1, - sym_body, - STATE(5045), 2, + ACTIONS(6988), 1, + aux_sym_return_type_token2, + STATE(5132), 2, sym_comment, sym_include, - [278661] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7083), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [281669] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5046), 2, + ACTIONS(5751), 1, + sym__terminator, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + STATE(5199), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5133), 2, sym_comment, sym_include, - ACTIONS(3680), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278681] = 8, - ACTIONS(67), 1, + [281695] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(7085), 1, + sym_identifier, + STATE(5134), 2, sym_comment, sym_include, - [278707] = 6, + ACTIONS(7087), 3, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + [281717] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7087), 1, - sym__special_character, - STATE(5048), 2, + ACTIONS(7089), 1, + sym_identifier, + STATE(115), 1, + sym_qualified_name, + ACTIONS(7091), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(5135), 2, sym_comment, sym_include, - ACTIONS(7085), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - [278729] = 5, - ACTIONS(67), 1, + [281741] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5049), 2, + STATE(5136), 2, sym_comment, sym_include, - ACTIONS(3380), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278749] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4363), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [281761] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5050), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(3561), 1, + sym_function_arguments, + STATE(5441), 1, + sym_case_body, + STATE(5137), 2, sym_comment, sym_include, - ACTIONS(3378), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [278769] = 5, - ACTIONS(3), 1, + [281787] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - sym_identifier, - STATE(5051), 2, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7093), 1, + aux_sym_return_type_token2, + STATE(5138), 2, sym_comment, sym_include, - 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(7095), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [281809] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6763), 1, + sym__escaped_string, + STATE(4330), 1, + sym_string_literal, + ACTIONS(7097), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5139), 2, sym_comment, sym_include, - [278815] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281833] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5298), 1, + STATE(5103), 1, aux_sym_for_statement_repeat1, - STATE(5798), 1, + STATE(5824), 1, sym_body, - STATE(5053), 2, + STATE(5140), 2, sym_comment, sym_include, - [278841] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281859] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5038), 1, + STATE(5432), 1, aux_sym_for_statement_repeat1, - STATE(5798), 1, + STATE(5824), 1, sym_body, - STATE(5054), 2, + STATE(5141), 2, sym_comment, sym_include, - [278867] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281885] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6180), 1, + aux_sym_on_error_phrase_token1, + STATE(5818), 1, + sym_on_stop_phrase, + ACTIONS(4462), 2, anon_sym_COLON, - ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5079), 1, - aux_sym_for_statement_repeat1, - STATE(5464), 1, - sym_body, - STATE(5055), 2, + STATE(5142), 2, sym_comment, sym_include, - [278893] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281909] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [278919] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6874), 1, - aux_sym_return_type_token2, - STATE(5057), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7099), 1, + sym__terminator, + STATE(4656), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5143), 2, sym_comment, sym_include, - 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, + [281935] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6892), 1, - aux_sym_return_type_token2, - STATE(5058), 2, + STATE(5144), 2, sym_comment, sym_include, - ACTIONS(7097), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [278963] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4128), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [281955] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5939), 1, - sym_body, - STATE(5059), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7099), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5145), 2, sym_comment, sym_include, - [278989] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [281981] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5060), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + ACTIONS(5835), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5146), 2, sym_comment, sym_include, - 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, + [282005] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5464), 1, - sym_body, - STATE(5061), 2, + ACTIONS(7101), 1, + aux_sym_stream_definition_token1, + ACTIONS(7103), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7105), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7107), 1, + aux_sym_output_stream_statement_token1, + STATE(5147), 2, sym_comment, sym_include, - [279035] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282031] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5062), 2, + ACTIONS(7109), 1, + aux_sym_using_statement_token2, + ACTIONS(7111), 1, + aux_sym_stream_definition_token1, + ACTIONS(7113), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7115), 1, + aux_sym_input_close_statement_token2, + STATE(5148), 2, sym_comment, sym_include, - 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, + [282057] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(7099), 1, + ACTIONS(7117), 1, sym__terminator, - STATE(4633), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(5063), 2, + STATE(5149), 2, sym_comment, sym_include, - [279081] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282083] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + STATE(5150), 2, sym_comment, sym_include, - [279107] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7119), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [282103] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(5151), 2, sym_comment, sym_include, - [279133] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7121), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [282123] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - ACTIONS(7101), 1, - anon_sym_RBRACK, - STATE(185), 1, - sym__decimal_literal, - STATE(6361), 1, - sym_number_literal, - STATE(5066), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5752), 1, + sym_body, + STATE(5152), 2, sym_comment, sym_include, - [279159] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282149] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5053), 1, + STATE(5115), 1, aux_sym_for_statement_repeat1, - STATE(5939), 1, + STATE(5752), 1, sym_body, - STATE(5067), 2, + STATE(5153), 2, sym_comment, sym_include, - [279185] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282175] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5068), 2, + ACTIONS(7123), 1, + aux_sym__block_terminator_token1, + ACTIONS(7125), 1, + aux_sym_variable_definition_token1, + STATE(5612), 1, + sym_enum_definition, + STATE(5154), 3, sym_comment, sym_include, - ACTIONS(3678), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279205] = 5, - ACTIONS(67), 1, + aux_sym_enum_body_repeat1, + [282199] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5069), 2, + ACTIONS(7075), 1, + sym_identifier, + ACTIONS(7128), 1, + sym__terminator, + STATE(5123), 1, + aux_sym_enum_definition_repeat1, + STATE(5749), 1, + sym_enum_member, + STATE(5155), 2, sym_comment, sym_include, - ACTIONS(3550), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279225] = 5, - ACTIONS(67), 1, + [282225] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5070), 2, + ACTIONS(7130), 1, + sym_identifier, + STATE(5156), 2, sym_comment, sym_include, - 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, + ACTIONS(7132), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [282245] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5071), 2, + ACTIONS(7134), 1, + sym_identifier, + STATE(5157), 2, sym_comment, sym_include, - ACTIONS(3676), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279265] = 5, - ACTIONS(67), 1, + ACTIONS(7136), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [282265] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5072), 2, + ACTIONS(7138), 1, + sym_identifier, + STATE(5158), 2, sym_comment, sym_include, - ACTIONS(3554), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279285] = 5, - ACTIONS(67), 1, + ACTIONS(7140), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [282285] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5073), 2, + ACTIONS(7142), 1, + sym_identifier, + STATE(5159), 2, sym_comment, sym_include, - ACTIONS(3674), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279305] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7144), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [282305] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5102), 1, - aux_sym_for_statement_repeat1, - STATE(5712), 1, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(6595), 1, sym_body, - STATE(5074), 2, + STATE(5160), 2, sym_comment, sym_include, - [279331] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282331] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5075), 2, + STATE(5161), 2, sym_comment, sym_include, - ACTIONS(3556), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279351] = 8, - ACTIONS(67), 1, + ACTIONS(106), 4, + sym__namecolon, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [282351] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(7103), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(5076), 2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + aux_sym_input_expression_token2, + STATE(3263), 1, + sym_qualified_name, + STATE(3267), 1, + sym_using_field, + STATE(5162), 2, sym_comment, sym_include, - [279377] = 5, - ACTIONS(67), 1, + [282377] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5077), 2, + ACTIONS(7150), 1, + sym_identifier, + STATE(123), 1, + sym_qualified_name, + ACTIONS(7152), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(5163), 2, sym_comment, sym_include, - 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, + [282401] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5078), 2, + ACTIONS(7154), 1, + sym__namedot, + ACTIONS(121), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5164), 3, sym_comment, sym_include, - 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, + aux_sym_qualified_name_repeat1, + [282423] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5712), 1, - sym_body, - STATE(5079), 2, + ACTIONS(7157), 1, + sym__namedoublecolon, + ACTIONS(114), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5165), 3, sym_comment, sym_include, - [279443] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_member_access_repeat1, + [282445] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5908), 1, - sym_on_stop_phrase, - ACTIONS(7105), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5080), 2, + ACTIONS(7043), 1, + aux_sym_return_type_token2, + STATE(5166), 2, sym_comment, sym_include, - [279467] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7160), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [282467] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5081), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7162), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(1043), 1, + sym_function_arguments, + STATE(5167), 2, sym_comment, sym_include, - ACTIONS(3560), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279487] = 5, - ACTIONS(67), 1, + [282493] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5082), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(7164), 1, + sym_identifier, + STATE(3993), 2, + sym_qualified_name, + sym_string_literal, + STATE(5168), 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, - [279507] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282517] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5083), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7166), 1, + sym__terminator, + ACTIONS(7168), 1, + aux_sym_using_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5169), 2, sym_comment, sym_include, - ACTIONS(3564), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279527] = 5, - ACTIONS(67), 1, + [282543] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5084), 2, + ACTIONS(6763), 1, + sym__escaped_string, + ACTIONS(7170), 1, + sym_identifier, + STATE(3998), 2, + sym_qualified_name, + sym_string_literal, + STATE(5170), 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, - [279547] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282567] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5085), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7172), 1, + anon_sym_LPAREN, + STATE(244), 1, + sym_function_arguments, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5171), 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, - [279567] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282593] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5086), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7174), 1, + sym__terminator, + ACTIONS(7176), 1, + aux_sym_using_statement_token2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5172), 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, - [279587] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282619] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5087), 2, + ACTIONS(7178), 1, + aux_sym_return_type_token2, + STATE(5173), 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, - [279607] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7180), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [282641] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5088), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7182), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(1353), 1, + sym_function_arguments, + STATE(5174), 2, sym_comment, sym_include, - 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, + [282667] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5112), 1, - aux_sym_for_statement_repeat1, - STATE(5760), 1, - sym_body, - STATE(5089), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7184), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2591), 1, + sym_function_arguments, + STATE(5175), 2, sym_comment, sym_include, - [279653] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282693] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5090), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5799), 1, + sym__terminator, + STATE(5205), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5176), 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, - [279673] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282719] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5091), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5799), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5177), 2, sym_comment, sym_include, - ACTIONS(3576), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279693] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282745] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5092), 2, + ACTIONS(3778), 1, + anon_sym_COMMA, + ACTIONS(7186), 1, + aux_sym_of_token1, + ACTIONS(7188), 1, + aux_sym_on_statement_token1, + STATE(4971), 1, + aux_sym_on_statement_repeat1, + STATE(5178), 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, - [279713] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282771] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5093), 2, + ACTIONS(6984), 1, + aux_sym_return_type_token2, + STATE(5179), 2, sym_comment, sym_include, - ACTIONS(3372), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279733] = 7, - ACTIONS(67), 1, + ACTIONS(7190), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [282793] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7184), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2717), 1, + sym_function_arguments, + STATE(5180), 2, + sym_comment, + sym_include, + [282819] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(6038), 1, - sym_on_stop_phrase, - ACTIONS(6466), 2, + ACTIONS(3852), 1, anon_sym_COLON, + ACTIONS(3854), 1, anon_sym_COMMA, - STATE(5094), 2, + STATE(5432), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(5181), 2, sym_comment, sym_include, - [279757] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282845] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(3854), 1, + anon_sym_COMMA, + STATE(5141), 1, + aux_sym_for_statement_repeat1, + STATE(5662), 1, + sym_body, + STATE(5182), 2, sym_comment, sym_include, - [279783] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282871] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5096), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7192), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_function_arguments, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5183), 2, sym_comment, sym_include, - ACTIONS(3580), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [279803] = 8, - ACTIONS(67), 1, + [282897] = 8, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7194), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym_function_arguments, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5184), 2, + sym_comment, + sym_include, + [282923] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(5805), 1, + ACTIONS(7196), 1, sym__terminator, - STATE(4658), 1, + STATE(5193), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(5097), 2, + STATE(5185), 2, sym_comment, sym_include, - [279829] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282949] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5098), 2, - sym_comment, - sym_include, - 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(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5760), 1, - sym_body, - STATE(5099), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5763), 1, + sym__terminator, + STATE(5197), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5186), 2, sym_comment, sym_include, - [279875] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [282975] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(5785), 1, + ACTIONS(5763), 1, sym__terminator, - STATE(4658), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(5100), 2, + STATE(5187), 2, sym_comment, sym_include, - [279901] = 7, - ACTIONS(67), 1, + [283001] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(6098), 1, - sym_on_stop_phrase, - ACTIONS(7111), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5101), 2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + aux_sym_input_expression_token2, + STATE(3244), 1, + sym_using_field, + STATE(3263), 1, + sym_qualified_name, + STATE(5188), 2, sym_comment, sym_include, - [279925] = 8, - ACTIONS(67), 1, + [283027] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7178), 1, + aux_sym_return_type_token2, + STATE(5189), 2, + sym_comment, + sym_include, + ACTIONS(7198), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [283049] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5772), 1, - sym_body, - STATE(5102), 2, + ACTIONS(7043), 1, + aux_sym_return_type_token2, + STATE(5190), 2, sym_comment, sym_include, - [279951] = 7, + ACTIONS(7200), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [283071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(5191), 2, sym_comment, sym_include, - [279975] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4056), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [283091] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(7031), 1, + ACTIONS(7202), 1, anon_sym_LPAREN, - STATE(416), 1, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(2437), 1, + STATE(2533), 1, sym_function_arguments, - STATE(5104), 2, + STATE(5192), 2, sym_comment, sym_include, - [280001] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283117] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5124), 1, - aux_sym_for_statement_repeat1, - STATE(5772), 1, - sym_body, - STATE(5105), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7204), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5193), 2, sym_comment, sym_include, - [280027] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283143] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(6067), 1, - sym_body, - STATE(5106), 2, + ACTIONS(6785), 1, + sym__integer_literal, + ACTIONS(7206), 1, + anon_sym_RBRACK, + STATE(181), 1, + sym__decimal_literal, + STATE(6761), 1, + sym_number_literal, + STATE(5194), 2, sym_comment, sym_include, - [280053] = 8, - ACTIONS(67), 1, + [283169] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + STATE(5195), 2, sym_comment, sym_include, - [280079] = 8, - ACTIONS(67), 1, + ACTIONS(7208), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + [283189] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(3531), 1, - sym_function_arguments, - STATE(5244), 1, - sym_case_body, - STATE(5108), 2, + ACTIONS(7212), 1, + anon_sym_COMMA, + STATE(5196), 2, sym_comment, sym_include, - [280105] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7210), 3, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + [283211] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(5805), 1, + ACTIONS(7214), 1, sym__terminator, - STATE(4652), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(5109), 2, + STATE(5197), 2, sym_comment, sym_include, - [280131] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283237] = 8, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6794), 1, - aux_sym_return_type_token2, - STATE(5110), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5164), 1, - aux_sym_for_statement_repeat1, - STATE(5808), 1, - sym_body, - STATE(5111), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7214), 1, + sym__terminator, + STATE(5210), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5198), 2, sym_comment, sym_include, - [280179] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283263] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5808), 1, - sym_body, - STATE(5112), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7216), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5199), 2, sym_comment, sym_include, - [280205] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283289] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5113), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7216), 1, + sym__terminator, + STATE(5149), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5200), 2, sym_comment, sym_include, - ACTIONS(3669), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [280225] = 5, - ACTIONS(3), 1, + [283315] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5114), 2, + ACTIONS(7218), 1, + sym__terminator, + ACTIONS(7220), 1, + aux_sym_field_definition_token1, + STATE(5702), 1, + sym_field_definition, + STATE(5201), 3, sym_comment, sym_include, - 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, + aux_sym_workfile_definition_repeat3, + [283339] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5064), 1, - aux_sym_for_statement_repeat1, - STATE(6068), 1, - sym_body, - STATE(5115), 2, + ACTIONS(7093), 1, + aux_sym_return_type_token2, + STATE(5202), 2, sym_comment, sym_include, - [280271] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7223), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [283361] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5116), 2, + ACTIONS(6988), 1, + aux_sym_return_type_token2, + STATE(5203), 2, sym_comment, sym_include, - ACTIONS(3394), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [280291] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7225), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [283383] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - STATE(3531), 1, - sym_function_arguments, - ACTIONS(5075), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(5117), 2, + ACTIONS(6811), 1, + aux_sym_variable_definition_token1, + ACTIONS(7227), 1, + aux_sym__block_terminator_token1, + STATE(4692), 1, + aux_sym_enum_body_repeat1, + STATE(5612), 1, + sym_enum_definition, + STATE(5204), 2, sym_comment, sym_include, - [280315] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283409] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5755), 1, aux_sym_field_definition_token1, - ACTIONS(5785), 1, + ACTIONS(7196), 1, sym__terminator, - STATE(5167), 1, + STATE(5201), 1, aux_sym_workfile_definition_repeat3, - STATE(6029), 1, + STATE(5702), 1, sym_field_definition, - STATE(5118), 2, + STATE(5205), 2, sym_comment, sym_include, - [280341] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283435] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5119), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(6982), 1, + anon_sym_LPAREN, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(2479), 1, + sym_function_arguments, + STATE(5206), 2, sym_comment, sym_include, - ACTIONS(3370), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [280361] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283461] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5827), 1, + sym__terminator, + STATE(5145), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5207), 2, sym_comment, sym_include, - [280387] = 8, - ACTIONS(67), 1, + [283487] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(7231), 1, + sym__special_character, + STATE(5208), 2, sym_comment, sym_include, - [280413] = 8, - ACTIONS(67), 1, + ACTIONS(7229), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + [283509] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - 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(5918), 1, - sym_body, - STATE(5122), 2, + ACTIONS(7233), 1, + sym_identifier, + STATE(5209), 2, sym_comment, sym_include, - [280439] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7235), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [283529] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(7237), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5210), 2, sym_comment, sym_include, - [280465] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283555] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5847), 1, - sym_body, - STATE(5124), 2, + ACTIONS(5755), 1, + aux_sym_field_definition_token1, + ACTIONS(5827), 1, + sym__terminator, + STATE(5201), 1, + aux_sym_workfile_definition_repeat3, + STATE(5702), 1, + sym_field_definition, + STATE(5211), 2, sym_comment, sym_include, - [280491] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283581] = 8, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(7139), 1, - sym__terminator, - ACTIONS(7141), 1, - aux_sym_using_statement_token2, - STATE(416), 1, + ACTIONS(7239), 1, + anon_sym_LPAREN, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(5125), 2, + STATE(1082), 1, + sym_function_arguments, + STATE(5212), 2, sym_comment, sym_include, - [280517] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283607] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5171), 1, - aux_sym_for_statement_repeat1, - STATE(5847), 1, - sym_body, - STATE(5126), 2, + STATE(5213), 2, sym_comment, sym_include, - [280543] = 7, - ACTIONS(67), 1, + ACTIONS(7241), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [283626] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7243), 1, + sym_file_name, + ACTIONS(7245), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, - aux_sym_on_error_phrase_token1, - STATE(5468), 1, - sym_on_stop_phrase, - ACTIONS(4534), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5127), 2, + STATE(5244), 1, + aux_sym_include_repeat1, + STATE(6807), 1, + sym_constant, + STATE(5214), 2, sym_comment, sym_include, - [280567] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283649] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5906), 1, - sym_body, - STATE(5128), 2, + ACTIONS(6136), 1, + aux_sym__block_terminator_token1, + STATE(1834), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5215), 2, sym_comment, sym_include, - [280593] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283670] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5898), 1, - sym_body, - STATE(5129), 2, + STATE(5216), 2, sym_comment, sym_include, - [280619] = 8, - ACTIONS(67), 1, + ACTIONS(7247), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [283689] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(7249), 1, + sym_identifier, + ACTIONS(7057), 2, anon_sym_COLON, - ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5128), 1, - aux_sym_for_statement_repeat1, - STATE(5891), 1, - sym_body, - STATE(5130), 2, + STATE(5217), 2, sym_comment, sym_include, - [280645] = 5, - ACTIONS(67), 1, + [283710] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5131), 2, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(7251), 1, + sym_identifier, + STATE(2999), 1, + sym_parenthesized_expression, + STATE(5218), 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, + [283733] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(7253), 1, + sym_identifier, + ACTIONS(6727), 2, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5891), 1, - sym_body, - STATE(5132), 2, + sym__terminator, + STATE(5219), 2, sym_comment, sym_include, - [280691] = 6, - ACTIONS(67), 1, + [283754] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6818), 1, - aux_sym_return_type_token2, - STATE(5133), 2, + ACTIONS(4054), 1, + sym_identifier, + ACTIONS(7255), 1, + sym__namedot, + STATE(5405), 1, + aux_sym_qualified_name_repeat1, + STATE(5220), 2, sym_comment, sym_include, - 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, + [283777] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(7257), 1, + sym__terminator, + STATE(4595), 1, + aux_sym_object_access_repeat1, + STATE(5221), 2, sym_comment, sym_include, - [280739] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283800] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5129), 1, - aux_sym_for_statement_repeat1, - STATE(5889), 1, - sym_body, - STATE(5135), 2, + ACTIONS(6136), 1, + aux_sym__block_terminator_token1, + STATE(1800), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5222), 2, sym_comment, sym_include, - [280765] = 7, + [283821] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - ACTIONS(7147), 1, + ACTIONS(7259), 1, sym_identifier, - STATE(4038), 2, + ACTIONS(7261), 1, + aux_sym_class_type_token1, + STATE(5603), 1, sym_qualified_name, - sym_string_literal, - STATE(5136), 2, + STATE(5223), 2, sym_comment, sym_include, - [280789] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283844] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5137), 2, + STATE(5224), 2, sym_comment, sym_include, - 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(7263), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [283863] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5138), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7267), 1, + anon_sym_RPAREN, + STATE(5230), 1, + aux_sym_function_arguments_repeat1, + STATE(5225), 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, - [280829] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283886] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5139), 2, + ACTIONS(6025), 1, + aux_sym__block_terminator_token1, + STATE(1799), 1, + sym__function_terminator, + STATE(1833), 1, + sym__block_terminator, + STATE(5226), 2, sym_comment, sym_include, - 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, + [283909] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5140), 2, + STATE(5227), 2, sym_comment, sym_include, - 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(7269), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [283928] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5141), 2, + ACTIONS(6735), 1, + sym__terminator, + ACTIONS(6737), 1, + aux_sym_input_expression_token2, + ACTIONS(6739), 1, + aux_sym_prompt_for_statement_token2, + STATE(5228), 2, sym_comment, sym_include, - 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, + [283951] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5142), 2, + ACTIONS(7271), 1, + sym_identifier, + ACTIONS(7273), 1, + aux_sym_class_type_token1, + STATE(5624), 1, + sym_qualified_name, + STATE(5229), 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, - [280909] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283974] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5143), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7275), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5230), 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, - [280929] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [283997] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5144), 2, + STATE(5231), 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, - [280949] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7277), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [284016] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5889), 1, - sym_body, - STATE(5145), 2, + STATE(5232), 2, sym_comment, sym_include, - [280975] = 5, - ACTIONS(67), 1, + ACTIONS(7279), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [284035] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5146), 2, + ACTIONS(1876), 1, + anon_sym_LPAREN, + ACTIONS(7281), 1, + sym_identifier, + STATE(283), 1, + sym_parenthesized_expression, + STATE(5233), 2, sym_comment, sym_include, - 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, + [284058] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5147), 2, + ACTIONS(7283), 1, + sym_identifier, + ACTIONS(7285), 1, + aux_sym_class_type_token1, + STATE(5673), 1, + sym_qualified_name, + STATE(5234), 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, - [281015] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284081] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(7287), 1, anon_sym_COMMA, - STATE(5132), 1, - aux_sym_for_statement_repeat1, - STATE(5887), 1, - sym_body, - STATE(5148), 2, + ACTIONS(7289), 1, + anon_sym_RPAREN, + STATE(5406), 1, + aux_sym_function_parameters_repeat1, + STATE(5235), 2, sym_comment, sym_include, - [281041] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284104] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5887), 1, - sym_body, - STATE(5149), 2, + STATE(5236), 2, sym_comment, sym_include, - [281067] = 8, - ACTIONS(67), 1, + ACTIONS(7291), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [284123] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(7293), 1, + sym_identifier, + ACTIONS(7087), 2, anon_sym_COLON, - ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5145), 1, - aux_sym_for_statement_repeat1, - STATE(5885), 1, - sym_body, - STATE(5150), 2, + STATE(5237), 2, sym_comment, sym_include, - [281093] = 8, - ACTIONS(67), 1, + [284144] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(7295), 1, + sym_identifier, + ACTIONS(6595), 2, anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5885), 1, - sym_body, - STATE(5151), 2, + sym__terminator, + STATE(5238), 2, sym_comment, sym_include, - [281119] = 8, - ACTIONS(67), 1, + [284165] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5149), 1, - aux_sym_for_statement_repeat1, - STATE(5882), 1, - sym_body, - STATE(5152), 2, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, + anon_sym_AMP, + ACTIONS(7301), 1, + sym__integer_literal, + STATE(5239), 2, sym_comment, sym_include, - [281145] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284188] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5153), 2, + STATE(5240), 2, sym_comment, sym_include, - ACTIONS(3667), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [281165] = 7, - ACTIONS(67), 1, + ACTIONS(7303), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [284207] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, - STATE(5154), 2, + ACTIONS(7305), 1, + sym_identifier, + ACTIONS(7307), 1, + aux_sym_class_type_token1, + STATE(5722), 1, + sym_qualified_name, + STATE(5241), 2, sym_comment, sym_include, - [281189] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284230] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(5242), 2, sym_comment, sym_include, - [281215] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7309), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [284249] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - STATE(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5882), 1, - sym_body, - STATE(5156), 2, + ACTIONS(7311), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5243), 2, sym_comment, sym_include, - [281241] = 8, - ACTIONS(67), 1, + [284272] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7245), 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(5904), 1, - sym_body, - STATE(5157), 2, + ACTIONS(7313), 1, + sym_file_name, + STATE(5481), 1, + aux_sym_include_repeat1, + STATE(6807), 1, + sym_constant, + STATE(5244), 2, sym_comment, sym_include, - [281267] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284295] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5151), 1, - aux_sym_for_statement_repeat1, - STATE(5879), 1, - sym_body, - STATE(5158), 2, + STATE(5245), 2, sym_comment, sym_include, - [281293] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7315), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [284314] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - STATE(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5879), 1, - sym_body, - STATE(5159), 2, + ACTIONS(7317), 1, + anon_sym_RPAREN, + STATE(5279), 1, + aux_sym_function_arguments_repeat1, + STATE(5246), 2, sym_comment, sym_include, - [281319] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284337] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(7073), 1, - aux_sym_return_type_token2, - STATE(5160), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6818), 1, - aux_sym_return_type_token2, - STATE(5161), 2, + ACTIONS(6025), 1, + aux_sym__block_terminator_token1, + STATE(1767), 1, + sym__function_terminator, + STATE(1833), 1, + sym__block_terminator, + STATE(5247), 2, sym_comment, sym_include, - 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, + [284360] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5156), 1, - aux_sym_for_statement_repeat1, - STATE(5876), 1, - sym_body, - STATE(5162), 2, + ACTIONS(4126), 1, + sym_identifier, + ACTIONS(7255), 1, + sym__namedot, + STATE(5405), 1, + aux_sym_qualified_name_repeat1, + STATE(5248), 2, sym_comment, sym_include, - [281389] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284383] = 7, 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(5298), 1, - aux_sym_for_statement_repeat1, - STATE(5876), 1, - sym_body, - STATE(5163), 2, - sym_comment, - sym_include, - [281415] = 8, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5857), 1, - sym_body, - STATE(5164), 2, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(7319), 1, + sym__terminator, + STATE(4595), 1, + aux_sym_object_access_repeat1, + STATE(5249), 2, sym_comment, sym_include, - [281441] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284406] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5165), 2, + ACTIONS(5997), 1, + aux_sym__block_terminator_token1, + STATE(2114), 1, + sym__function_terminator, + STATE(2165), 1, + sym__block_terminator, + STATE(5250), 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, - [281461] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284429] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5166), 2, + ACTIONS(6172), 1, + aux_sym__block_terminator_token1, + STATE(2116), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5251), 2, sym_comment, sym_include, - 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, + [284450] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(7155), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(5167), 2, + ACTIONS(5997), 1, + aux_sym__block_terminator_token1, + STATE(2055), 1, + sym__function_terminator, + STATE(2165), 1, + sym__block_terminator, + STATE(5252), 2, sym_comment, sym_include, - [281507] = 5, - ACTIONS(67), 1, + [284473] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5168), 2, + STATE(5253), 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(5444), 3, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + [284492] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5163), 1, - aux_sym_for_statement_repeat1, - STATE(5857), 1, - sym_body, - STATE(5169), 2, + ACTIONS(91), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + sym__namecolon, + STATE(3537), 1, + aux_sym_object_access_repeat1, + STATE(5254), 2, sym_comment, sym_include, - [281553] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284515] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(3817), 1, - anon_sym_COMMA, - STATE(5159), 1, - aux_sym_for_statement_repeat1, - STATE(5862), 1, - sym_body, - STATE(5170), 2, + ACTIONS(6140), 1, + aux_sym__block_terminator_token1, + STATE(1589), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5255), 2, sym_comment, sym_include, - [281579] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284536] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5862), 1, - sym_body, - STATE(5171), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3076), 1, + sym_number_literal, + STATE(5256), 2, sym_comment, sym_include, - [281605] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284559] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(7155), 1, - sym__terminator, - STATE(5076), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(5172), 2, + ACTIONS(6140), 1, + aux_sym__block_terminator_token1, + STATE(1558), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5257), 2, sym_comment, sym_include, - [281631] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284580] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(5765), 1, - sym__terminator, - STATE(5065), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(5173), 2, + ACTIONS(5896), 1, + aux_sym__block_terminator_token1, + STATE(1557), 1, + sym__function_terminator, + STATE(1588), 1, + sym__block_terminator, + STATE(5258), 2, sym_comment, sym_include, - [281657] = 8, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284603] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - aux_sym_field_definition_token1, - ACTIONS(5765), 1, - sym__terminator, - STATE(4658), 1, - aux_sym_workfile_definition_repeat3, - STATE(6029), 1, - sym_field_definition, - STATE(5174), 2, + ACTIONS(6172), 1, + aux_sym__block_terminator_token1, + STATE(2175), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5259), 2, sym_comment, sym_include, - [281683] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284624] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - ACTIONS(7157), 1, - sym__terminator, - STATE(4563), 1, - aux_sym_object_access_repeat1, - STATE(5175), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(6749), 1, + sym_number_literal, + STATE(5260), 2, sym_comment, sym_include, - [281706] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284647] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5958), 1, - aux_sym__block_terminator_token1, - STATE(5069), 1, - sym__function_terminator, - STATE(5168), 1, - sym__block_terminator, - STATE(5176), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(7321), 1, + anon_sym_RPAREN, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5261), 2, sym_comment, sym_include, - [281729] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284670] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(7161), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5177), 2, + ACTIONS(7323), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5262), 2, sym_comment, sym_include, - [281752] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284693] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7163), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5178), 2, + ACTIONS(7325), 1, + aux_sym__block_terminator_token1, + STATE(4826), 1, + sym__block_terminator, + STATE(4827), 1, + sym__case_terminator, + STATE(5263), 2, sym_comment, sym_include, - [281775] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284716] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [281798] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(7167), 1, - sym__terminator, - STATE(4333), 1, + ACTIONS(6620), 1, + anon_sym_RPAREN, + STATE(5261), 1, aux_sym_data_relation_repeat1, - STATE(5180), 2, + STATE(5264), 2, sym_comment, sym_include, - [281821] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284739] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7327), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5265), 2, sym_comment, sym_include, - [281844] = 7, + [284762] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2112), 1, + ACTIONS(1980), 1, anon_sym_LPAREN, - ACTIONS(7169), 1, + ACTIONS(7329), 1, sym_identifier, - STATE(2909), 1, + STATE(2918), 1, sym_parenthesized_expression, - STATE(5182), 2, + STATE(5266), 2, sym_comment, sym_include, - [281867] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284785] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7171), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5183), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6620), 1, + anon_sym_RPAREN, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5267), 2, sym_comment, sym_include, - [281890] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284808] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5184), 2, + ACTIONS(5896), 1, + aux_sym__block_terminator_token1, + STATE(1524), 1, + sym__function_terminator, + STATE(1588), 1, + sym__block_terminator, + STATE(5268), 2, sym_comment, sym_include, - ACTIONS(7173), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [281909] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284831] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6534), 1, + sym__terminator, + STATE(5262), 1, + aux_sym_data_relation_repeat1, + STATE(5269), 2, sym_comment, sym_include, - [281932] = 7, - ACTIONS(3), 1, + [284854] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1852), 1, - anon_sym_LPAREN, - ACTIONS(7175), 1, - sym_identifier, - STATE(2865), 1, - sym_parenthesized_expression, - STATE(5186), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6534), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5270), 2, sym_comment, sym_include, - [281955] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284877] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6100), 1, - aux_sym__block_terminator_token1, - STATE(5070), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5187), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(6751), 1, + sym_number_literal, + STATE(5271), 2, sym_comment, sym_include, - [281976] = 7, - ACTIONS(3), 1, + [284900] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7177), 1, - sym_identifier, - ACTIONS(7179), 1, - aux_sym_temp_table_expression_token1, - STATE(6809), 1, - sym_qualified_name, - STATE(5188), 2, + ACTIONS(7331), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(7333), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7335), 1, + aux_sym_on_quit_phrase_token1, + STATE(5272), 2, sym_comment, sym_include, - [281999] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [284923] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7181), 1, + ACTIONS(7337), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5278), 1, aux_sym_function_arguments_repeat1, - STATE(5189), 2, + STATE(5273), 2, sym_comment, sym_include, - [282022] = 7, + [284946] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3071), 1, + sym_number_literal, + STATE(5274), 2, + sym_comment, + sym_include, + [284969] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7183), 1, + ACTIONS(1388), 1, + anon_sym_LPAREN, + ACTIONS(7339), 1, sym_identifier, - ACTIONS(7185), 1, - anon_sym_AMP, - ACTIONS(7187), 1, - sym__integer_literal, - STATE(5190), 2, + STATE(1118), 1, + sym_parenthesized_expression, + STATE(5275), 2, sym_comment, sym_include, - [282045] = 7, + [284992] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7189), 1, + ACTIONS(7341), 1, sym_identifier, - ACTIONS(7191), 1, - sym__terminator, - STATE(5378), 1, + ACTIONS(7343), 1, + anon_sym_RPAREN, + STATE(5264), 1, sym_qualified_name, - STATE(5191), 2, + STATE(5276), 2, sym_comment, sym_include, - [282068] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285015] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(6564), 1, - sym__terminator, - STATE(4333), 1, + ACTIONS(6657), 1, + anon_sym_RPAREN, + STATE(5267), 1, aux_sym_data_relation_repeat1, - STATE(5192), 2, + STATE(5277), 2, sym_comment, sym_include, - [282091] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285038] = 7, 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(6685), 1, - sym_number_literal, - STATE(5193), 2, - sym_comment, - sym_include, - [282114] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7345), 1, anon_sym_RPAREN, - STATE(5189), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5194), 2, + STATE(5278), 2, sym_comment, sym_include, - [282137] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285061] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7195), 1, + ACTIONS(7347), 1, anon_sym_RPAREN, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(5195), 2, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5279), 2, sym_comment, sym_include, - [282160] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285084] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(3258), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5280), 2, sym_comment, sym_include, - [282183] = 7, + [285105] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(7201), 1, + ACTIONS(7349), 1, sym_identifier, - STATE(987), 1, - sym_parenthesized_expression, - STATE(5197), 2, + ACTIONS(7351), 1, + sym__terminator, + STATE(5269), 1, + sym_qualified_name, + STATE(5281), 2, sym_comment, sym_include, - [282206] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285128] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7203), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(7205), 1, - anon_sym_RPAREN, - STATE(5238), 1, - aux_sym_function_parameters_repeat1, - STATE(5198), 2, + ACTIONS(6678), 1, + sym__terminator, + STATE(5270), 1, + aux_sym_data_relation_repeat1, + STATE(5282), 2, sym_comment, sym_include, - [282229] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285151] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(6178), 1, - sym_number_literal, - STATE(5199), 2, + ACTIONS(7333), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7353), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(7355), 1, + aux_sym_on_quit_phrase_token1, + STATE(5283), 2, sym_comment, sym_include, - [282252] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285174] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(7207), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5200), 2, + ACTIONS(6678), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5284), 2, sym_comment, sym_include, - [282275] = 7, - ACTIONS(67), 1, + [285197] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(3973), 1, - sym_number_literal, - STATE(5201), 2, + ACTIONS(6834), 1, + sym_identifier, + ACTIONS(6836), 2, + sym__terminator, + anon_sym_COMMA, + STATE(5285), 2, sym_comment, sym_include, - [282298] = 7, + [285218] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2016), 1, - anon_sym_LPAREN, - ACTIONS(7209), 1, + ACTIONS(7357), 1, sym_identifier, - STATE(2983), 1, - sym_parenthesized_expression, - STATE(5202), 2, + ACTIONS(7359), 1, + anon_sym_AMP, + ACTIONS(7361), 1, + sym__integer_literal, + STATE(5286), 2, sym_comment, sym_include, - [282321] = 7, - ACTIONS(67), 1, + [285241] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(7363), 1, + sym_identifier, + ACTIONS(7365), 1, + anon_sym_AMP, + ACTIONS(7367), 1, sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(6168), 1, - sym_number_literal, - STATE(5203), 2, + STATE(5287), 2, sym_comment, sym_include, - [282344] = 7, - ACTIONS(67), 1, + [285264] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5130), 1, - aux_sym_type_tuning_token1, - STATE(3737), 1, - sym_type_tuning, - STATE(5204), 2, + ACTIONS(7369), 1, + sym_identifier, + ACTIONS(7371), 1, + anon_sym_AMP, + ACTIONS(7373), 1, + sym__integer_literal, + STATE(5288), 2, sym_comment, sym_include, - [282367] = 7, - ACTIONS(67), 1, + [285287] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - 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, + ACTIONS(7375), 1, + sym_identifier, + ACTIONS(7377), 1, + aux_sym_temp_table_expression_token1, + STATE(6680), 1, + sym_qualified_name, + STATE(5289), 2, sym_comment, sym_include, - [282390] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285310] = 7, 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(3697), 1, - sym_type_tuning, - STATE(5206), 2, - sym_comment, - sym_include, - [282413] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6610), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(5207), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3059), 1, + sym_number_literal, + STATE(5290), 2, sym_comment, sym_include, - [282436] = 7, + [285333] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7211), 1, - anon_sym_RPAREN, - ACTIONS(7213), 1, - anon_sym_, - STATE(5383), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5208), 2, + ACTIONS(7379), 1, + sym_identifier, + ACTIONS(7381), 1, + anon_sym_AMP, + ACTIONS(7383), 1, + sym__integer_literal, + STATE(5291), 2, sym_comment, sym_include, - [282459] = 7, - ACTIONS(67), 1, + [285356] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7215), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7387), 1, anon_sym_RPAREN, - STATE(5214), 1, - aux_sym_function_arguments_repeat1, - STATE(5209), 2, - sym_comment, - sym_include, - [282482] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, + STATE(5277), 1, + sym_qualified_name, + STATE(5292), 2, sym_comment, sym_include, - [282505] = 7, - ACTIONS(67), 1, + [285379] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7221), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5211), 2, + ACTIONS(7389), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_AMP, + ACTIONS(7393), 1, + sym__integer_literal, + STATE(5293), 2, sym_comment, sym_include, - [282528] = 7, - ACTIONS(67), 1, + [285402] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6474), 1, - anon_sym_RPAREN, - STATE(5195), 1, - aux_sym_data_relation_repeat1, - STATE(5212), 2, + ACTIONS(7395), 1, + sym_identifier, + ACTIONS(7397), 1, + anon_sym_AMP, + ACTIONS(7399), 1, + sym__integer_literal, + STATE(5294), 2, sym_comment, sym_include, - [282551] = 7, - ACTIONS(67), 1, + [285425] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(7401), 1, + sym_identifier, + ACTIONS(7403), 1, + anon_sym_AMP, + ACTIONS(7405), 1, sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(6680), 1, - sym_number_literal, - STATE(5213), 2, + STATE(5295), 2, sym_comment, sym_include, - [282574] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285448] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7223), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5214), 2, + ACTIONS(7407), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(7409), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7411), 1, + aux_sym_on_quit_phrase_token1, + STATE(5296), 2, sym_comment, sym_include, - [282597] = 7, - ACTIONS(67), 1, + [285471] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(7413), 1, + sym_identifier, + ACTIONS(7415), 1, + anon_sym_AMP, + ACTIONS(7417), 1, sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(3061), 1, - sym_number_literal, - STATE(5215), 2, + STATE(5297), 2, sym_comment, sym_include, - [282620] = 7, + [285494] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7225), 1, + ACTIONS(7419), 1, sym_identifier, - ACTIONS(7227), 1, - aux_sym_temp_table_expression_token1, - STATE(6328), 1, - sym_qualified_name, - STATE(5216), 2, + ACTIONS(7421), 1, + anon_sym_AMP, + ACTIONS(7423), 1, + sym__integer_literal, + STATE(5298), 2, sym_comment, sym_include, - [282643] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285517] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5130), 1, - aux_sym_type_tuning_token1, - STATE(3624), 1, - sym_type_tuning, - STATE(5217), 2, + STATE(5299), 2, sym_comment, sym_include, - [282666] = 7, + ACTIONS(7425), 3, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + [285536] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7229), 1, + ACTIONS(7427), 1, sym_identifier, - ACTIONS(7231), 1, - aux_sym_temp_table_expression_token1, - STATE(6522), 1, - sym_qualified_name, - STATE(5218), 2, + ACTIONS(7429), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + sym__integer_literal, + STATE(5300), 2, sym_comment, sym_include, - [282689] = 7, - ACTIONS(67), 1, + [285559] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7233), 1, + ACTIONS(7433), 1, + sym_identifier, + ACTIONS(7435), 1, sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5219), 2, + STATE(5282), 1, + sym_qualified_name, + STATE(5301), 2, sym_comment, sym_include, - [282712] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285582] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [282735] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(7237), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5221), 2, + ACTIONS(6555), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5302), 2, sym_comment, sym_include, - [282758] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285605] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6474), 1, - anon_sym_RPAREN, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(5222), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7437), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5303), 2, sym_comment, sym_include, - [282781] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285628] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5958), 1, - aux_sym__block_terminator_token1, - STATE(4974), 1, - sym__function_terminator, - STATE(5168), 1, - sym__block_terminator, - STATE(5223), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7439), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5304), 2, sym_comment, sym_include, - [282804] = 7, - ACTIONS(3), 1, + [285651] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7239), 1, - anon_sym_RPAREN, - STATE(5208), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5224), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(7441), 1, + sym__terminator, + STATE(6581), 1, + sym_body, + STATE(5305), 2, sym_comment, sym_include, - [282827] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285674] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5130), 1, - aux_sym_type_tuning_token1, - STATE(3725), 1, - sym_type_tuning, - STATE(5225), 2, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(7443), 1, + sym__terminator, + STATE(4595), 1, + aux_sym_object_access_repeat1, + STATE(5306), 2, sym_comment, sym_include, - [282850] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285697] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5226), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7445), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5307), 2, sym_comment, sym_include, - [282873] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285720] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(4221), 1, - sym_number_literal, - STATE(5227), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6555), 1, + sym__terminator, + STATE(5284), 1, + aux_sym_data_relation_repeat1, + STATE(5308), 2, sym_comment, sym_include, - [282896] = 7, - ACTIONS(67), 1, + [285743] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7243), 1, + ACTIONS(7447), 1, anon_sym_RPAREN, - STATE(5226), 1, - aux_sym_function_arguments_repeat1, - STATE(5228), 2, + ACTIONS(7449), 1, + anon_sym_, + STATE(5479), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5309), 2, sym_comment, sym_include, - [282919] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285766] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6496), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7451), 1, sym__terminator, - STATE(5180), 1, - aux_sym_data_relation_repeat1, - STATE(5229), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5310), 2, sym_comment, sym_include, - [282942] = 7, - ACTIONS(3), 1, + [285789] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7245), 1, - anon_sym_RPAREN, - STATE(5235), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5230), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7453), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5311), 2, sym_comment, sym_include, - [282965] = 7, - ACTIONS(3), 1, + [285812] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7247), 1, - sym_identifier, - ACTIONS(7249), 1, - aux_sym_temp_table_expression_token1, - STATE(6416), 1, - sym_qualified_name, - STATE(5231), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7455), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5312), 2, sym_comment, sym_include, - [282988] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285835] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7457), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5313), 2, sym_comment, sym_include, - [283011] = 7, + [285858] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2190), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(7251), 1, + ACTIONS(7459), 1, sym_identifier, - STATE(2915), 1, + STATE(1424), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(7253), 1, - aux_sym__block_terminator_token1, - STATE(2261), 1, - sym__case_terminator, - STATE(2265), 1, - sym__block_terminator, - STATE(5234), 2, + STATE(5314), 2, sym_comment, sym_include, - [283057] = 7, + [285881] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, + ACTIONS(7449), 1, anon_sym_, - ACTIONS(7255), 1, + ACTIONS(7461), 1, anon_sym_RPAREN, - STATE(5383), 1, + STATE(5424), 1, aux_sym_accumulate_statement_repeat1, - STATE(5235), 2, + STATE(5315), 2, sym_comment, sym_include, - [283080] = 7, + [285904] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7257), 1, + ACTIONS(7463), 1, sym_identifier, - ACTIONS(7259), 1, + ACTIONS(7465), 1, aux_sym_temp_table_expression_token1, - STATE(6779), 1, + STATE(6290), 1, sym_qualified_name, - STATE(5236), 2, + STATE(5316), 2, sym_comment, sym_include, - [283103] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285927] = 7, 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(3742), 1, - sym_type_tuning, - STATE(5237), 2, - sym_comment, - sym_include, - [283126] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7203), 1, - anon_sym_COMMA, - ACTIONS(7261), 1, - anon_sym_RPAREN, - STATE(5347), 1, - aux_sym_function_parameters_repeat1, - STATE(5238), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(6517), 1, + sym_number_literal, + STATE(5317), 2, sym_comment, sym_include, - [283149] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285950] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [283172] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7203), 1, - anon_sym_COMMA, - ACTIONS(7263), 1, - anon_sym_RPAREN, - STATE(5366), 1, - aux_sym_function_parameters_repeat1, - STATE(5240), 2, + ACTIONS(6051), 1, + aux_sym__block_terminator_token1, + STATE(4815), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5318), 2, sym_comment, sym_include, - [283195] = 7, - ACTIONS(67), 1, + [285971] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6496), 1, - sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(5241), 2, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7467), 1, + anon_sym_RPAREN, + STATE(5315), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5319), 2, sym_comment, sym_include, - [283218] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [285994] = 7, 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(3803), 1, - sym_type_tuning, - STATE(5242), 2, - sym_comment, - sym_include, - [283241] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(6785), 1, sym__integer_literal, - STATE(185), 1, + STATE(181), 1, sym__decimal_literal, - STATE(3065), 1, + STATE(6386), 1, sym_number_literal, - STATE(5243), 2, + STATE(5320), 2, sym_comment, sym_include, - [283264] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286017] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(7265), 1, - aux_sym__block_terminator_token1, - STATE(1663), 1, - sym__case_terminator, - STATE(1664), 1, - sym__block_terminator, - STATE(5244), 2, - sym_comment, - sym_include, - [283287] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7267), 1, + ACTIONS(7469), 1, anon_sym_RPAREN, - STATE(5221), 1, + STATE(5326), 1, aux_sym_function_arguments_repeat1, - STATE(5245), 2, + STATE(5321), 2, sym_comment, sym_include, - [283310] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286040] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5924), 1, + ACTIONS(6051), 1, aux_sym__block_terminator_token1, - STATE(2061), 1, - sym__function_terminator, - STATE(2367), 1, + STATE(4872), 2, sym__block_terminator, - STATE(5246), 2, + sym__procedure_terminator, + STATE(5322), 2, sym_comment, sym_include, - [283333] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286061] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7269), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5247), 2, - sym_comment, - sym_include, - [283356] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(6013), 1, + aux_sym__block_terminator_token1, + STATE(4817), 1, + sym__block_terminator, + STATE(4876), 1, + sym__function_terminator, + STATE(5323), 2, sym_comment, sym_include, - [283379] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286084] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5876), 1, - aux_sym__block_terminator_token1, - STATE(1552), 1, - sym__function_terminator, - STATE(1679), 1, - sym__block_terminator, - STATE(5249), 2, + STATE(3777), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5324), 2, sym_comment, sym_include, - [283402] = 7, + [286105] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, - anon_sym_LPAREN, - ACTIONS(7271), 1, + ACTIONS(7471), 1, sym_identifier, - STATE(1456), 1, - sym_parenthesized_expression, - STATE(5250), 2, + ACTIONS(7473), 1, + aux_sym_temp_table_expression_token1, + STATE(6404), 1, + sym_qualified_name, + STATE(5325), 2, sym_comment, sym_include, - [283425] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286128] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5251), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7475), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5326), 2, sym_comment, sym_include, - [283467] = 7, - ACTIONS(3), 1, + [286151] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7275), 1, - sym_identifier, - ACTIONS(7277), 1, - anon_sym_AMP, - ACTIONS(7279), 1, - sym__integer_literal, - STATE(5253), 2, + STATE(3803), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5327), 2, sym_comment, sym_include, - [283490] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286172] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(89), 1, - anon_sym_LPAREN, - ACTIONS(4640), 1, - sym__namecolon, - STATE(3522), 1, - aux_sym_object_access_repeat1, - STATE(5254), 2, + ACTIONS(7477), 1, + aux_sym_return_type_token1, + ACTIONS(7479), 1, + aux_sym_return_type_token2, + STATE(4040), 1, + sym_return_type, + STATE(5328), 2, sym_comment, sym_include, - [283513] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286195] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7281), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5255), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7481), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5329), 2, sym_comment, sym_include, - [283536] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286218] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7283), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5256), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7483), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5330), 2, sym_comment, sym_include, - [283559] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286241] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7285), 1, - anon_sym_RPAREN, - STATE(5262), 1, - aux_sym_function_arguments_repeat1, - STATE(5257), 2, + STATE(3732), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5331), 2, sym_comment, sym_include, - [283582] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286262] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7287), 1, - anon_sym_RPAREN, - STATE(5256), 1, - aux_sym_function_arguments_repeat1, - STATE(5258), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7485), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5332), 2, sym_comment, sym_include, - [283605] = 7, + [286285] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2268), 1, - anon_sym_LPAREN, - ACTIONS(7289), 1, + ACTIONS(7487), 1, sym_identifier, - STATE(2843), 1, - sym_parenthesized_expression, - STATE(5259), 2, + ACTIONS(7490), 1, + anon_sym_RPAREN, + STATE(5333), 3, sym_comment, sym_include, - [283628] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_fields_repeat1, + [286306] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5260), 2, + ACTIONS(7477), 1, + aux_sym_return_type_token1, + ACTIONS(7479), 1, + aux_sym_return_type_token2, + STATE(4044), 1, + sym_return_type, + STATE(5334), 2, sym_comment, sym_include, - ACTIONS(7291), 3, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - [283647] = 7, + [286329] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(657), 1, - anon_sym_LPAREN, - ACTIONS(7293), 1, + ACTIONS(7492), 1, sym_identifier, - STATE(41), 1, - sym_parenthesized_expression, - STATE(5261), 2, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7496), 1, + sym__integer_literal, + STATE(5335), 2, sym_comment, sym_include, - [283670] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286352] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - ACTIONS(7295), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5262), 2, + ACTIONS(7498), 1, + aux_sym_data_relation_token2, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5336), 2, sym_comment, sym_include, - [283693] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286375] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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(5263), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7500), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5337), 2, sym_comment, sym_include, - [283716] = 7, - ACTIONS(67), 1, + [286398] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6610), 1, - sym__terminator, - STATE(5192), 1, - aux_sym_data_relation_repeat1, - STATE(5264), 2, + ACTIONS(7502), 1, + sym_identifier, + ACTIONS(7504), 1, + aux_sym_class_type_token1, + STATE(5939), 1, + sym_qualified_name, + STATE(5338), 2, sym_comment, sym_include, - [283739] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286421] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - ACTIONS(7297), 1, - sym__terminator, - STATE(4563), 1, - aux_sym_object_access_repeat1, - STATE(5265), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7506), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5339), 2, sym_comment, sym_include, - [283762] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286444] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6042), 1, + ACTIONS(6013), 1, aux_sym__block_terminator_token1, - STATE(2276), 2, + STATE(4817), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5266), 2, + STATE(4917), 1, + sym__function_terminator, + STATE(5340), 2, sym_comment, sym_include, - [283783] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286467] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5924), 1, + ACTIONS(7508), 1, aux_sym__block_terminator_token1, - STATE(2271), 1, - sym__function_terminator, - STATE(2367), 1, + STATE(1583), 1, + sym__case_terminator, + STATE(1584), 1, sym__block_terminator, - STATE(5267), 2, + STATE(5341), 2, sym_comment, sym_include, - [283806] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286490] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7287), 1, anon_sym_COMMA, - ACTIONS(7299), 1, + ACTIONS(7510), 1, anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5268), 2, + STATE(5235), 1, + aux_sym_function_parameters_repeat1, + STATE(5342), 2, sym_comment, sym_include, - [283829] = 7, - ACTIONS(67), 1, + [286513] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7512), 1, + anon_sym_COMMA, + ACTIONS(7515), 1, + anon_sym_RPAREN, + STATE(5343), 3, + sym_comment, + sym_include, + aux_sym_function_arguments_repeat1, + [286534] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7301), 1, + ACTIONS(7517), 1, anon_sym_RPAREN, - STATE(5268), 1, + STATE(5339), 1, aux_sym_function_arguments_repeat1, - STATE(5269), 2, + STATE(5344), 2, sym_comment, sym_include, - [283852] = 7, - ACTIONS(3), 1, + [286557] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(7303), 1, - sym_identifier, - STATE(1142), 1, - sym_parenthesized_expression, - STATE(5270), 2, + ACTIONS(6668), 1, + sym__terminator, + ACTIONS(6670), 1, + aux_sym_input_expression_token2, + ACTIONS(6672), 1, + aux_sym_prompt_for_statement_token2, + STATE(5345), 2, sym_comment, sym_include, - [283875] = 5, + [286580] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5271), 2, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7519), 1, + anon_sym_RPAREN, + STATE(5424), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5346), 2, sym_comment, sym_include, - ACTIONS(7305), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [283894] = 7, + [286603] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7307), 1, + ACTIONS(2286), 1, + anon_sym_LPAREN, + ACTIONS(7521), 1, sym_identifier, - ACTIONS(7309), 1, - anon_sym_AMP, - ACTIONS(7311), 1, - sym__integer_literal, - STATE(5272), 2, + STATE(2739), 1, + sym_parenthesized_expression, + STATE(5347), 2, sym_comment, sym_include, - [283917] = 6, - ACTIONS(67), 1, + [286626] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6110), 1, - aux_sym__block_terminator_token1, - STATE(2278), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5273), 2, + ACTIONS(7523), 1, + sym_identifier, + ACTIONS(7525), 1, + aux_sym_temp_table_expression_token1, + STATE(6409), 1, + sym_qualified_name, + STATE(5348), 2, sym_comment, sym_include, - [283938] = 7, - ACTIONS(67), 1, + [286649] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7197), 1, - aux_sym_return_type_token1, - ACTIONS(7199), 1, - aux_sym_return_type_token2, - STATE(4021), 1, - sym_return_type, - STATE(5274), 2, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7527), 1, + anon_sym_RPAREN, + STATE(5346), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5349), 2, sym_comment, sym_include, - [283961] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286672] = 7, 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, - [283984] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(7529), 1, + sym__terminator, + STATE(4595), 1, + aux_sym_object_access_repeat1, + STATE(5350), 2, sym_comment, sym_include, - [284007] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286695] = 5, 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(3706), 1, - sym_type_tuning, - STATE(5277), 2, - sym_comment, - sym_include, - [284030] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7313), 1, - sym_identifier, - ACTIONS(7315), 1, - aux_sym_temp_table_expression_token1, - STATE(6641), 1, - sym_qualified_name, - STATE(5278), 2, + STATE(5351), 2, sym_comment, sym_include, - [284053] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7531), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [286714] = 7, 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(3721), 1, - sym_type_tuning, - STATE(5279), 2, - sym_comment, - sym_include, - [284076] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5280), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6538), 1, + sym__terminator, + STATE(5302), 1, + aux_sym_data_relation_repeat1, + STATE(5352), 2, sym_comment, sym_include, - ACTIONS(7317), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [284095] = 7, + [286737] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7319), 1, + ACTIONS(1834), 1, + anon_sym_LPAREN, + ACTIONS(7533), 1, sym_identifier, - ACTIONS(7321), 1, - anon_sym_RPAREN, - STATE(5309), 1, - aux_sym_query_fields_repeat1, - STATE(5281), 2, + STATE(2695), 1, + sym_parenthesized_expression, + STATE(5353), 2, sym_comment, sym_include, - [284118] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286760] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5876), 1, - aux_sym__block_terminator_token1, - STATE(1604), 1, - sym__function_terminator, - STATE(1679), 1, - sym__block_terminator, - STATE(5282), 2, - sym_comment, - sym_include, - [284141] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, + ACTIONS(7535), 1, aux_sym__block_terminator_token1, - STATE(1605), 2, + STATE(2184), 1, + sym__case_terminator, + STATE(2188), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5283), 2, + STATE(5354), 2, sym_comment, sym_include, - [284162] = 7, - ACTIONS(3), 1, + [286783] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7323), 1, - anon_sym_RPAREN, - STATE(5383), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5284), 2, + ACTIONS(6232), 1, + aux_sym_when_expression_token1, + STATE(4307), 1, + aux_sym_case_body_repeat1, + STATE(5351), 1, + sym_case_when_branch, + STATE(5355), 2, sym_comment, sym_include, - [284185] = 7, - ACTIONS(3), 1, + [286806] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7325), 1, - anon_sym_RPAREN, - STATE(5292), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5285), 2, + STATE(3714), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5356), 2, sym_comment, sym_include, - [284208] = 7, + [286827] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7327), 1, + ACTIONS(7537), 1, sym_identifier, - ACTIONS(7329), 1, - aux_sym_class_type_token1, - STATE(5922), 1, + ACTIONS(7539), 1, + aux_sym_temp_table_expression_token1, + STATE(6326), 1, sym_qualified_name, - STATE(5286), 2, + STATE(5357), 2, sym_comment, sym_include, - [284231] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286850] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6110), 1, - aux_sym__block_terminator_token1, - STATE(2223), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5287), 2, + STATE(3705), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5358), 2, sym_comment, sym_include, - [284252] = 7, + [286871] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7331), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(7541), 1, sym_identifier, - ACTIONS(7333), 1, - aux_sym_temp_table_expression_token1, - STATE(6519), 1, - sym_qualified_name, - STATE(5288), 2, + STATE(336), 1, + sym_parenthesized_expression, + STATE(5359), 2, sym_comment, sym_include, - [284275] = 7, - ACTIONS(67), 1, + [286894] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3586), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5360), 2, + sym_comment, + sym_include, + [286915] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7335), 1, + ACTIONS(7543), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5362), 1, aux_sym_function_arguments_repeat1, - STATE(5289), 2, + STATE(5361), 2, sym_comment, sym_include, - [284298] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286938] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(6538), 1, - aux_sym_data_relation_token2, - STATE(5420), 1, - aux_sym_data_relation_repeat1, - STATE(5290), 2, + ACTIONS(7545), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5362), 2, sym_comment, sym_include, - [284321] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [286961] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7337), 1, - anon_sym_RPAREN, - STATE(5289), 1, - aux_sym_function_arguments_repeat1, - STATE(5291), 2, + ACTIONS(7477), 1, + aux_sym_return_type_token1, + ACTIONS(7479), 1, + aux_sym_return_type_token2, + STATE(4006), 1, + sym_return_type, + STATE(5363), 2, sym_comment, sym_include, - [284344] = 7, + [286984] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7339), 1, - anon_sym_RPAREN, - STATE(5383), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5292), 2, + ACTIONS(7547), 1, + sym_identifier, + ACTIONS(7549), 1, + anon_sym_AMP, + ACTIONS(7551), 1, + sym__integer_literal, + STATE(5364), 2, sym_comment, sym_include, - [284367] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287007] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - ACTIONS(7341), 1, + ACTIONS(6741), 1, sym__terminator, - STATE(6687), 1, + STATE(6447), 1, sym_body, - STATE(5293), 2, + STATE(5365), 2, sym_comment, sym_include, - [284390] = 7, - ACTIONS(3), 1, + [287030] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(953), 1, - anon_sym_LPAREN, - ACTIONS(7343), 1, - sym_identifier, - STATE(377), 1, - sym_parenthesized_expression, - STATE(5294), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7553), 1, + anon_sym_RPAREN, + STATE(5369), 1, + aux_sym_function_arguments_repeat1, + STATE(5366), 2, sym_comment, sym_include, - [284413] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287053] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, + ACTIONS(6009), 1, aux_sym__block_terminator_token1, - STATE(1680), 2, + STATE(2250), 1, + sym__function_terminator, + STATE(2276), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5295), 2, + STATE(5367), 2, sym_comment, sym_include, - [284434] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287076] = 6, 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(3203), 1, - sym_type_tuning, - STATE(5296), 2, - sym_comment, - sym_include, - [284457] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5882), 1, + ACTIONS(6122), 1, aux_sym__block_terminator_token1, - STATE(2145), 1, - sym__function_terminator, - STATE(2275), 1, + STATE(2245), 2, sym__block_terminator, - STATE(5297), 2, + sym__procedure_terminator, + STATE(5368), 2, sym_comment, sym_include, - [284480] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287097] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7345), 1, - anon_sym_COLON, - ACTIONS(7347), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - STATE(5298), 3, + ACTIONS(7555), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5369), 2, sym_comment, sym_include, - aux_sym_for_statement_repeat1, - [284501] = 7, + [287120] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7350), 1, - anon_sym_RPAREN, - STATE(5284), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5299), 2, + ACTIONS(6943), 1, + sym__terminator, + ACTIONS(7557), 1, + sym_identifier, + STATE(5308), 1, + sym_qualified_name, + STATE(5370), 2, sym_comment, sym_include, - [284524] = 5, - ACTIONS(3), 1, + [287143] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5300), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7559), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5371), 2, sym_comment, sym_include, - ACTIONS(5520), 3, - sym_identifier, - sym__terminator, - aux_sym_scope_tuning_token1, - [284543] = 5, - ACTIONS(67), 1, + [287166] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5301), 2, + ACTIONS(1248), 1, + anon_sym_LPAREN, + ACTIONS(7561), 1, + sym_identifier, + STATE(1130), 1, + sym_parenthesized_expression, + STATE(5372), 2, sym_comment, sym_include, - 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, + [287189] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7354), 1, + ACTIONS(7563), 1, anon_sym_RPAREN, - STATE(5305), 1, + STATE(5377), 1, aux_sym_function_arguments_repeat1, - STATE(5302), 2, + STATE(5373), 2, sym_comment, sym_include, - [284585] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287212] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(3392), 1, - sym_number_literal, - STATE(5303), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6538), 1, + sym__terminator, + STATE(4389), 1, + aux_sym_data_relation_repeat1, + STATE(5374), 2, sym_comment, sym_include, - [284608] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287235] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6540), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7565), 1, sym__terminator, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(5304), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5375), 2, sym_comment, sym_include, - [284631] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287258] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7356), 1, + ACTIONS(7567), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5305), 2, + STATE(5376), 2, sym_comment, sym_include, - [284654] = 7, - ACTIONS(3), 1, + [287281] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6986), 1, - sym__terminator, - ACTIONS(7358), 1, - sym_identifier, - STATE(5264), 1, - sym_qualified_name, - STATE(5306), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7569), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5377), 2, sym_comment, sym_include, - [284677] = 7, - ACTIONS(67), 1, + [287304] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5378), 2, + sym_comment, + sym_include, + ACTIONS(7571), 3, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + [287323] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6566), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7573), 1, sym__terminator, - STATE(5304), 1, - aux_sym_data_relation_repeat1, - STATE(5307), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5379), 2, sym_comment, sym_include, - [284700] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287346] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(7360), 1, + ACTIONS(7575), 1, sym__terminator, - STATE(416), 1, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(5308), 2, + STATE(5380), 2, sym_comment, sym_include, - [284723] = 6, + [287369] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7362), 1, - sym_identifier, - ACTIONS(7365), 1, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7577), 1, anon_sym_RPAREN, - STATE(5309), 3, + STATE(5424), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5381), 2, sym_comment, sym_include, - aux_sym_query_fields_repeat1, - [284744] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287392] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(6785), 1, sym__integer_literal, - STATE(185), 1, + STATE(181), 1, sym__decimal_literal, - STATE(4697), 1, + STATE(6364), 1, sym_number_literal, - STATE(5310), 2, + STATE(5382), 2, sym_comment, sym_include, - [284767] = 7, + [287415] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7367), 1, + ACTIONS(7579), 1, sym_identifier, - ACTIONS(7369), 1, - anon_sym_AMP, - ACTIONS(7371), 1, - sym__integer_literal, - STATE(5311), 2, + ACTIONS(7581), 1, + anon_sym_RPAREN, + STATE(5333), 1, + aux_sym_query_fields_repeat1, + STATE(5383), 2, sym_comment, sym_include, - [284790] = 7, - ACTIONS(67), 1, + [287438] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7583), 1, + sym_identifier, + ACTIONS(7585), 1, + aux_sym_temp_table_expression_token1, + STATE(6370), 1, + sym_qualified_name, + STATE(5384), 2, + sym_comment, + sym_include, + [287461] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(6522), 1, - sym__terminator, - STATE(6163), 1, - sym_body, - STATE(5312), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6559), 1, + aux_sym_data_relation_token2, + STATE(5336), 1, + aux_sym_data_relation_repeat1, + STATE(5385), 2, sym_comment, sym_include, - [284813] = 7, + [287484] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7373), 1, - sym_identifier, - ACTIONS(7375), 1, - anon_sym_AMP, - ACTIONS(7377), 1, - sym__integer_literal, - STATE(5313), 2, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7587), 1, + anon_sym_RPAREN, + STATE(5381), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5386), 2, sym_comment, sym_include, - [284836] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287507] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7379), 1, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(7589), 1, sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5314), 2, + STATE(6225), 1, + sym_body, + STATE(5387), 2, + sym_comment, + sym_include, + [287530] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3773), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5388), 2, sym_comment, sym_include, - [284859] = 7, + [287551] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7381), 1, + ACTIONS(7591), 1, sym_identifier, - ACTIONS(7383), 1, - anon_sym_AMP, - ACTIONS(7385), 1, - sym__integer_literal, - STATE(5315), 2, + ACTIONS(7593), 1, + aux_sym_temp_table_expression_token1, + STATE(6496), 1, + sym_qualified_name, + STATE(5389), 2, sym_comment, sym_include, - [284882] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287574] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(3780), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5390), 2, sym_comment, sym_include, - [284905] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287595] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7387), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5317), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3416), 1, + sym_number_literal, + STATE(5391), 2, sym_comment, sym_include, - [284928] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287618] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(3058), 1, - sym_number_literal, - STATE(5318), 2, + ACTIONS(6057), 1, + anon_sym_COMMA, + ACTIONS(6743), 1, + sym__terminator, + STATE(5374), 1, + aux_sym_data_relation_repeat1, + STATE(5392), 2, sym_comment, sym_include, - [284951] = 7, + [287641] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7389), 1, + ACTIONS(2200), 1, + anon_sym_LPAREN, + ACTIONS(7595), 1, sym_identifier, - ACTIONS(7391), 1, - anon_sym_AMP, - ACTIONS(7393), 1, - sym__integer_literal, - STATE(5319), 2, + STATE(2875), 1, + sym_parenthesized_expression, + STATE(5393), 2, sym_comment, sym_include, - [284974] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287664] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7395), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5320), 2, + STATE(3843), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5394), 2, sym_comment, sym_include, - [284997] = 7, - ACTIONS(3), 1, + [287685] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7397), 1, - sym_identifier, - ACTIONS(7399), 1, - anon_sym_AMP, - ACTIONS(7401), 1, - sym__integer_literal, - STATE(5321), 2, + STATE(5395), 2, sym_comment, sym_include, - [285020] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7597), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [287704] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7403), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5322), 2, + ACTIONS(7477), 1, + aux_sym_return_type_token1, + ACTIONS(7479), 1, + aux_sym_return_type_token2, + STATE(4050), 1, + sym_return_type, + STATE(5396), 2, sym_comment, sym_include, - [285043] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287727] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5323), 2, + STATE(5397), 2, sym_comment, sym_include, - ACTIONS(7405), 3, + ACTIONS(7599), 3, anon_sym_COLON, + anon_sym_DOT, aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - [285062] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287746] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6100), 1, - aux_sym__block_terminator_token1, - STATE(5153), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5324), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7601), 1, + anon_sym_RPAREN, + STATE(5401), 1, + aux_sym_function_arguments_repeat1, + STATE(5398), 2, sym_comment, sym_include, - [285083] = 7, + [287769] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7407), 1, + ACTIONS(7603), 1, sym_identifier, - ACTIONS(7409), 1, + ACTIONS(7605), 1, anon_sym_AMP, - ACTIONS(7411), 1, + ACTIONS(7607), 1, sym__integer_literal, - STATE(5325), 2, + STATE(5399), 2, sym_comment, sym_include, - [285106] = 7, - ACTIONS(3), 1, + [287792] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7413), 1, - sym_identifier, - ACTIONS(7415), 1, - anon_sym_AMP, - ACTIONS(7417), 1, - sym__integer_literal, - STATE(5326), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_RPAREN, + STATE(5402), 1, + aux_sym_function_arguments_repeat1, + STATE(5400), 2, sym_comment, sym_include, - [285129] = 7, - ACTIONS(3), 1, + [287815] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, - anon_sym_, - ACTIONS(7419), 1, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7611), 1, anon_sym_RPAREN, - STATE(5383), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5327), 2, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5401), 2, sym_comment, sym_include, - [285152] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287838] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7613), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5402), 2, sym_comment, sym_include, - [285175] = 7, - ACTIONS(3), 1, + [287861] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7427), 1, - sym_identifier, - ACTIONS(7429), 1, - anon_sym_AMP, - ACTIONS(7431), 1, - sym__integer_literal, - STATE(5329), 2, + STATE(3839), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5403), 2, sym_comment, sym_include, - [285198] = 7, - ACTIONS(3), 1, + [287882] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_identifier, - ACTIONS(7435), 1, - anon_sym_AMP, - ACTIONS(7437), 1, - sym__integer_literal, - STATE(5330), 2, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7615), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5404), 2, sym_comment, sym_include, - [285221] = 7, + [287905] = 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(132), 1, sym_identifier, - ACTIONS(7441), 1, - anon_sym_AMP, - ACTIONS(7443), 1, - sym__integer_literal, - STATE(5331), 2, - sym_comment, - sym_include, - [285244] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5332), 2, - sym_comment, - sym_include, - ACTIONS(7445), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [285263] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(7255), 1, sym__namedot, - ACTIONS(7447), 1, - sym__terminator, - STATE(416), 1, + STATE(5407), 1, aux_sym_qualified_name_repeat1, - STATE(5333), 2, + STATE(5405), 2, sym_comment, sym_include, - [285286] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287928] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7617), 1, anon_sym_COMMA, - ACTIONS(7449), 1, + ACTIONS(7620), 1, anon_sym_RPAREN, - STATE(5337), 1, - aux_sym_function_arguments_repeat1, - STATE(5334), 2, + STATE(5406), 3, sym_comment, sym_include, - [285309] = 7, + aux_sym_function_parameters_repeat1, + [287949] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(104), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(7451), 1, + ACTIONS(7622), 1, sym__namedot, - STATE(5352), 1, - aux_sym_qualified_name_repeat1, - STATE(5335), 2, + STATE(5407), 3, sym_comment, sym_include, - [285332] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_qualified_name_repeat1, + [287970] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - ACTIONS(7453), 1, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7625), 1, sym__terminator, - STATE(4563), 1, - aux_sym_object_access_repeat1, - STATE(5336), 2, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5408), 2, sym_comment, sym_include, - [285355] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [287993] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7455), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5337), 2, - sym_comment, - sym_include, - [285378] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7457), 1, - sym_identifier, - ACTIONS(6678), 2, - anon_sym_COLON, - sym__terminator, - STATE(5338), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3072), 1, + sym_number_literal, + STATE(5409), 2, sym_comment, sym_include, - [285399] = 7, - ACTIONS(3), 1, + [288016] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 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, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(6509), 1, + sym_number_literal, + STATE(5410), 2, sym_comment, sym_include, - [285422] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288039] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, + ACTIONS(6785), 1, sym__integer_literal, - STATE(185), 1, + STATE(181), 1, sym__decimal_literal, - STATE(3062), 1, + STATE(3261), 1, sym_number_literal, - STATE(5340), 2, + STATE(5411), 2, sym_comment, sym_include, - [285445] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288062] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7463), 1, - aux_sym__block_terminator_token1, - STATE(2359), 1, - sym__case_terminator, - STATE(2360), 1, - sym__block_terminator, - STATE(5341), 2, + ACTIONS(7627), 1, + aux_sym_image_phrase_token1, + ACTIONS(7629), 1, + aux_sym_image_phrase_token2, + STATE(3072), 1, + sym_image_phrase, + STATE(5412), 2, sym_comment, sym_include, - [285468] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288085] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6282), 1, - aux_sym_when_expression_token1, - STATE(4373), 1, - aux_sym_case_body_repeat1, - STATE(5280), 1, - sym_case_when_branch, - STATE(5342), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + ACTIONS(7631), 1, + sym__terminator, + STATE(6425), 1, + sym_body, + STATE(5413), 2, sym_comment, sym_include, - [285491] = 7, - ACTIONS(67), 1, + [288108] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(3222), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5414), 2, + sym_comment, + sym_include, + [288129] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7465), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5343), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3968), 1, + sym_number_literal, + STATE(5415), 2, sym_comment, sym_include, - [285514] = 6, - ACTIONS(3), 1, + [288152] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7467), 1, - sym_identifier, - ACTIONS(6880), 2, - anon_sym_COLON, + ACTIONS(7265), 1, anon_sym_COMMA, - STATE(5344), 2, + ACTIONS(7633), 1, + anon_sym_RPAREN, + STATE(5376), 1, + aux_sym_function_arguments_repeat1, + STATE(5416), 2, sym_comment, sym_include, - [285535] = 7, + [288175] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7469), 1, + ACTIONS(2140), 1, + anon_sym_LPAREN, + ACTIONS(7635), 1, sym_identifier, - ACTIONS(7471), 1, - anon_sym_RPAREN, - STATE(5212), 1, - sym_qualified_name, - STATE(5345), 2, + STATE(2959), 1, + sym_parenthesized_expression, + STATE(5417), 2, sym_comment, sym_include, - [285558] = 7, - ACTIONS(67), 1, + [288198] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7473), 1, + ACTIONS(160), 1, + sym_identifier, + ACTIONS(162), 2, sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5346), 2, + anon_sym_COMMA, + STATE(5418), 2, sym_comment, sym_include, - [285581] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288219] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7475), 1, - anon_sym_COMMA, - ACTIONS(7478), 1, - anon_sym_RPAREN, - STATE(5347), 3, + ACTIONS(6122), 1, + aux_sym__block_terminator_token1, + STATE(2277), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5419), 2, sym_comment, sym_include, - aux_sym_function_parameters_repeat1, - [285602] = 7, + [288240] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7213), 1, + ACTIONS(7449), 1, anon_sym_, - ACTIONS(7480), 1, + ACTIONS(7637), 1, anon_sym_RPAREN, - STATE(5327), 1, + STATE(5424), 1, aux_sym_accumulate_statement_repeat1, - STATE(5348), 2, - sym_comment, - sym_include, - [285625] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, + STATE(5420), 2, sym_comment, sym_include, - [285648] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288263] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5350), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(6530), 1, + ACTIONS(7639), 1, anon_sym_RPAREN, - STATE(5222), 1, - aux_sym_data_relation_repeat1, - STATE(5351), 2, + STATE(5426), 1, + aux_sym_function_arguments_repeat1, + STATE(5421), 2, sym_comment, sym_include, - [285690] = 6, + [288286] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(108), 1, + ACTIONS(7579), 1, sym_identifier, - ACTIONS(7490), 1, - sym__namedot, - STATE(5352), 3, + ACTIONS(7641), 1, + anon_sym_RPAREN, + STATE(5383), 1, + aux_sym_query_fields_repeat1, + STATE(5422), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - [285711] = 7, + [288309] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7493), 1, + ACTIONS(7643), 1, sym_identifier, - ACTIONS(7495), 1, + ACTIONS(7645), 1, aux_sym_temp_table_expression_token1, - STATE(6435), 1, + STATE(6459), 1, sym_qualified_name, - STATE(5353), 2, + STATE(5423), 2, sym_comment, sym_include, - [285734] = 7, + [288332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1754), 1, - anon_sym_LPAREN, - ACTIONS(7497), 1, - sym_identifier, - STATE(2667), 1, - sym_parenthesized_expression, - STATE(5354), 2, + ACTIONS(7647), 1, + anon_sym_RPAREN, + ACTIONS(7649), 1, + anon_sym_, + STATE(5424), 3, sym_comment, sym_include, - [285757] = 7, - ACTIONS(67), 1, + aux_sym_accumulate_statement_repeat1, + [288353] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7499), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5355), 2, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7652), 1, + anon_sym_RPAREN, + STATE(5420), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5425), 2, sym_comment, sym_include, - [285780] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288376] = 7, 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(3218), 1, - sym_type_tuning, - STATE(5356), 2, - sym_comment, - sym_include, - [285803] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5130), 1, - aux_sym_type_tuning_token1, - STATE(3749), 1, - sym_type_tuning, - STATE(5357), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7654), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5426), 2, sym_comment, sym_include, - [285826] = 7, + [288399] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7501), 1, + ACTIONS(184), 1, sym_identifier, - ACTIONS(7503), 1, - aux_sym_temp_table_expression_token1, - STATE(6318), 1, - sym_qualified_name, - STATE(5358), 2, + ACTIONS(186), 2, + sym__terminator, + anon_sym_COMMA, + STATE(5427), 2, sym_comment, sym_include, - [285849] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288420] = 7, 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(3740), 1, - sym_type_tuning, - STATE(5359), 2, - sym_comment, - sym_include, - [285872] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7505), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5360), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, + anon_sym_RPAREN, + STATE(5430), 1, + aux_sym_function_arguments_repeat1, + STATE(5428), 2, sym_comment, sym_include, - [285895] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288443] = 5, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5362), 2, + STATE(5429), 2, sym_comment, sym_include, - ACTIONS(7509), 3, - anon_sym_COLON, - anon_sym_DOT, + ACTIONS(7658), 3, aux_sym__block_terminator_token1, - [285937] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [288462] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7511), 1, + ACTIONS(7660), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5363), 2, + STATE(5430), 2, sym_comment, sym_include, - [285960] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288485] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [285983] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7517), 1, + ACTIONS(7662), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5365), 2, + STATE(5431), 2, sym_comment, sym_include, - [286006] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288508] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7203), 1, + ACTIONS(7664), 1, + anon_sym_COLON, + ACTIONS(7666), 1, anon_sym_COMMA, - ACTIONS(7519), 1, - anon_sym_RPAREN, - STATE(5347), 1, - aux_sym_function_parameters_repeat1, - STATE(5366), 2, + STATE(5432), 3, sym_comment, sym_include, - [286029] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_statement_repeat1, + [288529] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5367), 2, + STATE(5433), 2, sym_comment, sym_include, - ACTIONS(7521), 3, + ACTIONS(7669), 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, + [288548] = 5, 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(6812), 1, - sym_number_literal, - STATE(5368), 2, - sym_comment, - sym_include, - [286071] = 7, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(5434), 2, sym_comment, sym_include, - [286094] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7671), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [288567] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5370), 2, + STATE(3798), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5435), 2, sym_comment, sym_include, - ACTIONS(7523), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [286113] = 7, + [288588] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7525), 1, + ACTIONS(7673), 1, sym_identifier, - ACTIONS(7527), 1, - sym__terminator, - STATE(5229), 1, + ACTIONS(7675), 1, + aux_sym_temp_table_expression_token1, + STATE(6322), 1, sym_qualified_name, - STATE(5371), 2, + STATE(5436), 2, sym_comment, sym_include, - [286136] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288611] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5372), 2, + STATE(3789), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5437), 2, sym_comment, sym_include, - 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, + [288632] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6542), 1, + ACTIONS(6561), 1, sym__terminator, - ACTIONS(6544), 1, + ACTIONS(6563), 1, aux_sym_input_expression_token2, - ACTIONS(6546), 1, + ACTIONS(6565), 1, aux_sym_prompt_for_statement_token2, - STATE(5373), 2, + STATE(5438), 2, sym_comment, sym_include, - [286178] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288655] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(7287), 1, anon_sym_COMMA, - ACTIONS(6540), 1, - sym__terminator, - STATE(5207), 1, - aux_sym_data_relation_repeat1, - STATE(5374), 2, + ACTIONS(7677), 1, + anon_sym_RPAREN, + STATE(5406), 1, + aux_sym_function_parameters_repeat1, + STATE(5439), 2, sym_comment, sym_include, - [286201] = 6, - ACTIONS(67), 1, + [288678] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7531), 1, - anon_sym_COMMA, - ACTIONS(7534), 1, - anon_sym_RPAREN, - STATE(5375), 3, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__terminator, + ACTIONS(7683), 1, + aux_sym_enum_member_token1, + STATE(5440), 2, sym_comment, sym_include, - aux_sym_function_arguments_repeat1, - [286222] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288701] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6042), 1, + ACTIONS(7685), 1, aux_sym__block_terminator_token1, - STATE(2368), 2, + STATE(2157), 1, + sym__case_terminator, + STATE(2158), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5376), 2, + STATE(5441), 2, sym_comment, sym_include, - [286243] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288724] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + STATE(3731), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5442), 2, sym_comment, sym_include, - [286266] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288745] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - ACTIONS(6564), 1, - sym__terminator, - STATE(5241), 1, - aux_sym_data_relation_repeat1, - STATE(5378), 2, + STATE(3220), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5443), 2, sym_comment, sym_include, - [286289] = 5, - ACTIONS(67), 1, + [288766] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5379), 2, + ACTIONS(192), 1, + sym_identifier, + ACTIONS(194), 2, + sym__terminator, + anon_sym_COMMA, + STATE(5444), 2, sym_comment, sym_include, - 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, + [288787] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7538), 1, + ACTIONS(7687), 1, anon_sym_RPAREN, - STATE(5409), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5380), 2, + STATE(5445), 2, sym_comment, sym_include, - [286331] = 7, + [288810] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7540), 1, + ACTIONS(7689), 1, sym_identifier, - ACTIONS(7542), 1, - anon_sym_AMP, - ACTIONS(7544), 1, - sym__integer_literal, - STATE(5381), 2, + ACTIONS(7691), 1, + aux_sym_temp_table_expression_token1, + STATE(6474), 1, + sym_qualified_name, + STATE(5446), 2, sym_comment, sym_include, - [286354] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [288833] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7546), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5382), 2, + ACTIONS(7477), 1, + aux_sym_return_type_token1, + ACTIONS(7479), 1, + aux_sym_return_type_token2, + STATE(4034), 1, + sym_return_type, + STATE(5447), 2, sym_comment, sym_include, - [286377] = 6, - ACTIONS(3), 1, + [288856] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7548), 1, - anon_sym_RPAREN, - ACTIONS(7550), 1, - anon_sym_, - STATE(5383), 3, + STATE(3740), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5448), 2, sym_comment, sym_include, - aux_sym_accumulate_statement_repeat1, - [286398] = 7, + [288877] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1447), 1, - anon_sym_LPAREN, - ACTIONS(7553), 1, + ACTIONS(7693), 1, sym_identifier, - STATE(1109), 1, - sym_parenthesized_expression, - STATE(5384), 2, + ACTIONS(7695), 1, + anon_sym_AMP, + ACTIONS(7697), 1, + sym__integer_literal, + STATE(5449), 2, sym_comment, sym_include, - [286421] = 7, - ACTIONS(67), 1, + [288900] = 7, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2270), 1, + sym__namedot, + ACTIONS(7699), 1, + sym__terminator, + STATE(697), 1, + aux_sym_qualified_name_repeat1, + STATE(5450), 2, + sym_comment, + sym_include, + [288923] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(3073), 1, + sym_number_literal, + STATE(5451), 2, + sym_comment, + sym_include, + [288946] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7555), 1, + ACTIONS(7701), 1, aux_sym__block_terminator_token1, - STATE(1901), 1, + STATE(1828), 1, sym__case_terminator, - STATE(1903), 1, + STATE(1829), 1, sym__block_terminator, - STATE(5385), 2, + STATE(5452), 2, sym_comment, sym_include, - [286444] = 7, - ACTIONS(67), 1, + [288969] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(5106), 1, + sym_number_literal, + STATE(5453), 2, + sym_comment, + sym_include, + [288992] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(2270), 1, sym__namedot, - ACTIONS(7557), 1, + ACTIONS(7703), 1, sym__terminator, - STATE(416), 1, + STATE(697), 1, aux_sym_qualified_name_repeat1, - STATE(5386), 2, + STATE(5454), 2, sym_comment, sym_include, - [286467] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289015] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7705), 1, + anon_sym_RPAREN, + STATE(5457), 1, + aux_sym_function_arguments_repeat1, + STATE(5455), 2, sym_comment, sym_include, - [286490] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289038] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7561), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5388), 2, + STATE(5456), 2, sym_comment, sym_include, - [286513] = 6, - ACTIONS(3), 1, + ACTIONS(7707), 3, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + [289057] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(6630), 2, - anon_sym_COLON, - sym__terminator, - STATE(5389), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7709), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5457), 2, sym_comment, sym_include, - [286534] = 7, - ACTIONS(67), 1, + [289080] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5458), 2, + sym_comment, + sym_include, + ACTIONS(7711), 3, + aux_sym_index_tuning_token2, + aux_sym_index_tuning_token3, + aux_sym_index_tuning_token4, + [289099] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7565), 1, + ACTIONS(7713), 1, anon_sym_RPAREN, - STATE(5392), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5390), 2, + STATE(5459), 2, sym_comment, sym_include, - [286557] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289122] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7567), 1, + ACTIONS(7715), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5459), 1, aux_sym_function_arguments_repeat1, - STATE(5391), 2, + STATE(5460), 2, sym_comment, sym_include, - [286580] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289145] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7569), 1, + ACTIONS(7717), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5431), 1, aux_sym_function_arguments_repeat1, - STATE(5392), 2, + STATE(5461), 2, sym_comment, sym_include, - [286603] = 6, - ACTIONS(3), 1, + [289168] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7571), 1, - sym_identifier, - ACTIONS(6872), 2, - anon_sym_COLON, + ACTIONS(7265), 1, anon_sym_COMMA, - STATE(5393), 2, + ACTIONS(7719), 1, + anon_sym_RPAREN, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5462), 2, sym_comment, sym_include, - [286624] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289191] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7573), 1, + ACTIONS(7721), 1, anon_sym_RPAREN, - STATE(5391), 1, + STATE(5462), 1, aux_sym_function_arguments_repeat1, - STATE(5394), 2, + STATE(5463), 2, sym_comment, sym_include, - [286647] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289214] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7575), 1, + ACTIONS(7723), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5395), 2, + STATE(5464), 2, sym_comment, sym_include, - [286670] = 7, - ACTIONS(3), 1, + [289237] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, - sym_identifier, - ACTIONS(7579), 1, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7725), 1, anon_sym_RPAREN, - STATE(5351), 1, - sym_qualified_name, - STATE(5396), 2, + STATE(5464), 1, + aux_sym_function_arguments_repeat1, + STATE(5465), 2, sym_comment, sym_include, - [286693] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289260] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7581), 1, + ACTIONS(7727), 1, anon_sym_RPAREN, - STATE(5395), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5397), 2, + STATE(5466), 2, sym_comment, sym_include, - [286716] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289283] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7583), 1, + ACTIONS(7729), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5466), 1, aux_sym_function_arguments_repeat1, - STATE(5398), 2, + STATE(5467), 2, sym_comment, sym_include, - [286739] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289306] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7585), 1, + ACTIONS(7731), 1, anon_sym_RPAREN, - STATE(5398), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5399), 2, + STATE(5468), 2, sym_comment, sym_include, - [286762] = 7, - ACTIONS(67), 1, + [289329] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7733), 1, + anon_sym_RPAREN, + STATE(5468), 1, + aux_sym_function_arguments_repeat1, + STATE(5469), 2, + sym_comment, + sym_include, + [289352] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - sym__integer_literal, - STATE(185), 1, - sym__decimal_literal, - STATE(3250), 1, - sym_number_literal, - STATE(5400), 2, + STATE(3211), 1, + sym_type_tuning, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5470), 2, sym_comment, sym_include, - [286785] = 7, - ACTIONS(67), 1, + [289373] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6571), 1, + sym__terminator, + ACTIONS(6573), 1, + aux_sym_input_expression_token2, + ACTIONS(6575), 1, + aux_sym_prompt_for_statement_token2, + STATE(5471), 2, + sym_comment, + sym_include, + [289396] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7587), 1, + ACTIONS(7735), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5401), 2, + STATE(5472), 2, sym_comment, sym_include, - [286808] = 7, - ACTIONS(67), 1, + [289419] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7737), 1, + anon_sym_RPAREN, + STATE(5472), 1, + aux_sym_function_arguments_repeat1, + STATE(5473), 2, + sym_comment, + sym_include, + [289442] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7589), 1, + ACTIONS(7739), 1, anon_sym_RPAREN, - STATE(5401), 1, + STATE(5445), 1, aux_sym_function_arguments_repeat1, - STATE(5402), 2, + STATE(5474), 2, sym_comment, sym_include, - [286831] = 7, - ACTIONS(3), 1, + [289465] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7319), 1, - sym_identifier, - ACTIONS(7591), 1, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7741), 1, anon_sym_RPAREN, - STATE(5281), 1, - aux_sym_query_fields_repeat1, - STATE(5403), 2, + STATE(5343), 1, + aux_sym_function_arguments_repeat1, + STATE(5475), 2, sym_comment, sym_include, - [286854] = 7, - ACTIONS(3), 1, + [289488] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1974), 1, - anon_sym_LPAREN, - ACTIONS(7593), 1, - sym_identifier, - STATE(321), 1, - sym_parenthesized_expression, - STATE(5404), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7743), 1, + anon_sym_RPAREN, + STATE(5475), 1, + aux_sym_function_arguments_repeat1, + STATE(5476), 2, sym_comment, sym_include, - [286877] = 7, - ACTIONS(67), 1, + [289511] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5477), 2, + sym_comment, + sym_include, + ACTIONS(7745), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [289530] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5892), 1, - aux_sym__block_terminator_token1, - STATE(1833), 1, - sym__function_terminator, - STATE(1915), 1, - sym__block_terminator, - STATE(5405), 2, + ACTIONS(6707), 1, + sym__terminator, + ACTIONS(6709), 1, + aux_sym_input_expression_token2, + ACTIONS(6711), 1, + aux_sym_prompt_for_statement_token2, + STATE(5478), 2, sym_comment, sym_include, - [286900] = 7, + [289553] = 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, + ACTIONS(7449), 1, + anon_sym_, + ACTIONS(7747), 1, + anon_sym_RPAREN, + STATE(5424), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5479), 2, sym_comment, sym_include, - [286923] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289576] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7595), 1, + ACTIONS(7749), 1, anon_sym_RPAREN, - STATE(5200), 1, + STATE(5482), 1, aux_sym_function_arguments_repeat1, - STATE(5407), 2, + STATE(5480), 2, sym_comment, sym_include, - [286946] = 7, - ACTIONS(67), 1, + [289599] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7751), 1, + sym_file_name, + ACTIONS(7753), 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, + STATE(6807), 1, + sym_constant, + STATE(5481), 3, sym_comment, sym_include, - [286969] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_repeat1, + [289620] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7597), 1, + ACTIONS(7756), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5409), 2, + STATE(5482), 2, sym_comment, sym_include, - [286992] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289643] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7599), 1, + ACTIONS(7758), 1, anon_sym_RPAREN, - STATE(5422), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5410), 2, + STATE(5483), 2, sym_comment, sym_include, - [287015] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289666] = 7, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - STATE(5411), 2, - sym_comment, - sym_include, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7603), 1, + ACTIONS(7760), 1, anon_sym_RPAREN, - STATE(5416), 1, + STATE(5483), 1, aux_sym_function_arguments_repeat1, - STATE(5412), 2, + STATE(5484), 2, sym_comment, sym_include, - [287057] = 7, - ACTIONS(67), 1, + [289689] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5485), 2, + sym_comment, + sym_include, + ACTIONS(121), 3, + sym__namedot, + sym__augmented_assignment, + anon_sym_EQ, + [289708] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, - aux_sym_type_tuning_token2, - ACTIONS(5130), 1, - aux_sym_type_tuning_token1, - STATE(3205), 1, + STATE(3829), 1, sym_type_tuning, - STATE(5413), 2, + ACTIONS(5156), 2, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + STATE(5486), 2, sym_comment, sym_include, - [287080] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289729] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5892), 1, + ACTIONS(6009), 1, aux_sym__block_terminator_token1, - STATE(1863), 1, - sym__function_terminator, - STATE(1915), 1, + STATE(2276), 1, sym__block_terminator, - STATE(5414), 2, + STATE(2283), 1, + sym__function_terminator, + STATE(5487), 2, sym_comment, sym_include, - [287103] = 7, - ACTIONS(67), 1, + [289752] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7605), 1, - anon_sym_RPAREN, - STATE(5417), 1, - aux_sym_function_arguments_repeat1, - STATE(5415), 2, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(7762), 1, + sym_identifier, + STATE(995), 1, + sym_parenthesized_expression, + STATE(5488), 2, sym_comment, sym_include, - [287126] = 7, - ACTIONS(67), 1, + [289775] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(7764), 1, + sym_identifier, + STATE(34), 1, + sym_parenthesized_expression, + STATE(5489), 2, + sym_comment, + sym_include, + [289798] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7607), 1, + ACTIONS(7766), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5491), 1, aux_sym_function_arguments_repeat1, - STATE(5416), 2, + STATE(5490), 2, sym_comment, sym_include, - [287149] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289821] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7609), 1, + ACTIONS(7768), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5417), 2, + STATE(5491), 2, sym_comment, sym_include, - [287172] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289844] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5418), 2, + ACTIONS(841), 1, + sym__namecolon, + ACTIONS(7770), 1, + sym__terminator, + STATE(4595), 1, + aux_sym_object_access_repeat1, + STATE(5492), 2, sym_comment, sym_include, - ACTIONS(7611), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [287191] = 7, - ACTIONS(3), 1, + [289867] = 7, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7613), 1, - sym_identifier, - ACTIONS(7615), 1, - aux_sym_class_type_token1, - STATE(5672), 1, - sym_qualified_name, - STATE(5419), 2, + ACTIONS(6785), 1, + sym__integer_literal, + STATE(181), 1, + sym__decimal_literal, + STATE(4076), 1, + sym_number_literal, + STATE(5493), 2, sym_comment, sym_include, - [287214] = 7, - ACTIONS(67), 1, + [289890] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + STATE(5494), 2, + sym_comment, + sym_include, + ACTIONS(7772), 3, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + [289909] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(7287), 1, anon_sym_COMMA, - ACTIONS(7617), 1, - aux_sym_data_relation_token2, - STATE(4333), 1, - aux_sym_data_relation_repeat1, - STATE(5420), 2, + ACTIONS(7774), 1, + anon_sym_RPAREN, + STATE(5439), 1, + aux_sym_function_parameters_repeat1, + STATE(5495), 2, sym_comment, sym_include, - [287237] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289932] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(7619), 1, - sym__terminator, - STATE(6623), 1, - sym_body, - STATE(5421), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7776), 1, + anon_sym_RPAREN, + STATE(5497), 1, + aux_sym_function_arguments_repeat1, + STATE(5496), 2, sym_comment, sym_include, - [287260] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [289955] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7265), 1, anon_sym_COMMA, - ACTIONS(7621), 1, + ACTIONS(7778), 1, anon_sym_RPAREN, - STATE(5375), 1, + STATE(5343), 1, aux_sym_function_arguments_repeat1, - STATE(5422), 2, + STATE(5497), 2, sym_comment, sym_include, - [287283] = 5, - ACTIONS(67), 1, + [289978] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5423), 2, + STATE(5498), 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(7780), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [289997] = 7, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5424), 2, + ACTIONS(7265), 1, + anon_sym_COMMA, + ACTIONS(7782), 1, + anon_sym_RPAREN, + STATE(5243), 1, + aux_sym_function_arguments_repeat1, + STATE(5499), 2, sym_comment, sym_include, - ACTIONS(7625), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [287321] = 7, - ACTIONS(3), 1, + [290020] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7627), 1, - sym_identifier, - ACTIONS(7629), 1, - aux_sym_class_type_token1, - STATE(5617), 1, - sym_qualified_name, - STATE(5425), 2, + STATE(5500), 2, sym_comment, sym_include, - [287344] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + ACTIONS(148), 3, + sym__namedoublecolon, + sym__augmented_assignment, + anon_sym_EQ, + [290039] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5426), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1692), 1, + sym__block_terminator, + STATE(5501), 2, sym_comment, sym_include, - 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, + [290059] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7633), 1, - sym_file_name, - ACTIONS(7635), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5437), 1, - aux_sym_include_repeat1, - STATE(6746), 1, - sym_constant, - STATE(5427), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1696), 1, + sym__block_terminator, + STATE(5502), 2, sym_comment, sym_include, - [287386] = 6, - ACTIONS(67), 1, + [290079] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(128), 2, + sym__namecolon, + anon_sym_NO_DASHERROR, + STATE(5503), 2, + sym_comment, + sym_include, + [290097] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6120), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1864), 2, + STATE(4795), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5428), 2, + STATE(5504), 2, sym_comment, sym_include, - [287407] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290117] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5429), 2, + ACTIONS(647), 1, + sym__namecolon, + ACTIONS(7784), 1, + anon_sym_NO_DASHERROR, + STATE(5505), 2, sym_comment, sym_include, - 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, + [290137] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5430), 2, + ACTIONS(7786), 1, + anon_sym_DOT, + ACTIONS(7788), 1, + aux_sym__procedure_terminator_token1, + STATE(5506), 2, sym_comment, sym_include, - ACTIONS(162), 3, - sym__namedoublecolon, - sym__augmented_assignment, - anon_sym_EQ, - [287445] = 7, + [290157] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7639), 1, + ACTIONS(7790), 1, sym_identifier, - ACTIONS(7641), 1, - aux_sym_class_type_token1, - STATE(5586), 1, + STATE(5755), 1, sym_qualified_name, - STATE(5431), 2, + STATE(5507), 2, sym_comment, sym_include, - [287468] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290177] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1917), 1, + sym__block_terminator, + STATE(5508), 2, sym_comment, sym_include, - [287491] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290197] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - 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, + ACTIONS(7792), 1, + aux_sym_using_statement_token2, + ACTIONS(7794), 1, + aux_sym_input_close_statement_token2, + STATE(5509), 2, sym_comment, sym_include, - [287514] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290217] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5434), 2, + ACTIONS(7792), 1, + aux_sym_using_statement_token2, + ACTIONS(7796), 1, + aux_sym_input_close_statement_token2, + STATE(5510), 2, sym_comment, sym_include, - ACTIONS(108), 3, - sym__namedot, - sym__augmented_assignment, - anon_sym_EQ, - [287533] = 5, - ACTIONS(67), 1, + [290237] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5435), 2, + ACTIONS(7798), 1, + sym_identifier, + ACTIONS(7800), 1, + anon_sym_STAR, + STATE(5511), 2, sym_comment, sym_include, - ACTIONS(7643), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [287552] = 7, + [290257] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7645), 1, + ACTIONS(7802), 1, sym_identifier, - ACTIONS(7647), 1, - anon_sym_AMP, - ACTIONS(7649), 1, - sym__integer_literal, - STATE(5436), 2, + ACTIONS(7804), 1, + anon_sym_STAR, + STATE(5512), 2, sym_comment, sym_include, - [287575] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [290277] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7651), 1, - sym_file_name, - ACTIONS(7653), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(6746), 1, - sym_constant, - STATE(5437), 3, + ACTIONS(4692), 1, + sym__namecolon, + STATE(3543), 1, + aux_sym_object_access_repeat1, + STATE(5513), 2, sym_comment, sym_include, - aux_sym_include_repeat1, - [287596] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290297] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__namedot, - ACTIONS(7656), 1, - sym__terminator, - STATE(416), 1, - aux_sym_qualified_name_repeat1, - STATE(5438), 2, + ACTIONS(1609), 1, + sym__namecolon, + STATE(1067), 1, + aux_sym_object_access_repeat1, + STATE(5514), 2, sym_comment, sym_include, - [287619] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290317] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - ACTIONS(7658), 1, - sym__terminator, - STATE(6313), 1, - sym_body, - STATE(5439), 2, + ACTIONS(7806), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5515), 2, sym_comment, sym_include, - [287642] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290335] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7660), 1, - anon_sym_RPAREN, - STATE(5442), 1, - aux_sym_function_arguments_repeat1, - STATE(5440), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1916), 1, + sym__block_terminator, + STATE(5516), 2, sym_comment, sym_include, - [287665] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290355] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(5441), 2, + ACTIONS(7599), 2, + anon_sym_COLON, + sym__terminator, + STATE(5517), 2, sym_comment, sym_include, - 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, + [290373] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7664), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5442), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2288), 1, + sym__block_terminator, + STATE(5518), 2, sym_comment, sym_include, - [287707] = 7, - ACTIONS(67), 1, + [290393] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7666), 1, - anon_sym_RPAREN, - STATE(5447), 1, - aux_sym_function_arguments_repeat1, - STATE(5443), 2, + ACTIONS(7808), 1, + sym_identifier, + STATE(6095), 1, + sym_qualified_name, + STATE(5519), 2, sym_comment, sym_include, - [287730] = 7, - ACTIONS(67), 1, + [290413] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7810), 1, + sym_identifier, + ACTIONS(7812), 1, anon_sym_COMMA, - ACTIONS(7668), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5444), 2, + STATE(5520), 2, sym_comment, sym_include, - [287753] = 7, + [290433] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7670), 1, + ACTIONS(6506), 1, + anon_sym_COLON, + ACTIONS(7814), 1, sym_identifier, - ACTIONS(7672), 1, - aux_sym_class_type_token1, - STATE(5551), 1, - sym_qualified_name, - STATE(5445), 2, + STATE(5521), 2, sym_comment, sym_include, - [287776] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290453] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7674), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5446), 2, + ACTIONS(2699), 1, + sym__namecolon, + STATE(2426), 1, + aux_sym_object_access_repeat1, + STATE(5522), 2, sym_comment, sym_include, - [287799] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290473] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7676), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5447), 2, + ACTIONS(7239), 1, + anon_sym_LPAREN, + STATE(1082), 1, + sym_function_arguments, + STATE(5523), 2, sym_comment, sym_include, - [287822] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290493] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6120), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1924), 2, + STATE(1915), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5448), 2, + STATE(5524), 2, sym_comment, sym_include, - [287843] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290513] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7678), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_function_arguments_repeat1, - STATE(5449), 2, + ACTIONS(7816), 1, + sym__terminator, + ACTIONS(7818), 1, + aux_sym_interface_statement_token1, + STATE(5525), 2, sym_comment, sym_include, - [287866] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290533] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - ACTIONS(7680), 1, - sym__terminator, - STATE(4563), 1, - aux_sym_object_access_repeat1, - STATE(5450), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6480), 1, + sym_body, + STATE(5526), 2, sym_comment, sym_include, - [287889] = 7, + [290553] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(7820), 1, sym_identifier, - ACTIONS(7451), 1, - sym__namedot, - STATE(5335), 1, - aux_sym_qualified_name_repeat1, - STATE(5451), 2, + ACTIONS(7822), 1, + anon_sym_STAR, + STATE(5527), 2, sym_comment, sym_include, - [287912] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290573] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7682), 1, - anon_sym_RPAREN, - STATE(5454), 1, - aux_sym_function_arguments_repeat1, - STATE(5452), 2, + ACTIONS(7824), 1, + aux_sym_on_error_phrase_token1, + STATE(6604), 1, + sym_on_error_phrase, + STATE(5528), 2, sym_comment, sym_include, - [287935] = 5, - ACTIONS(67), 1, + [290593] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5453), 2, + ACTIONS(7826), 1, + sym_identifier, + STATE(5438), 1, + sym_qualified_name, + STATE(5529), 2, sym_comment, sym_include, - 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, + [290613] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7686), 1, - anon_sym_RPAREN, - STATE(5375), 1, - aux_sym_function_arguments_repeat1, - STATE(5454), 2, + ACTIONS(845), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5530), 2, sym_comment, sym_include, - [287977] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290631] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7688), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(5143), 1, - sym__case_terminator, - STATE(5144), 1, + STATE(4789), 1, sym__block_terminator, - STATE(5455), 2, + STATE(5531), 2, sym_comment, sym_include, - [288000] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [290651] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7635), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7690), 1, - sym_file_name, - STATE(5427), 1, - aux_sym_include_repeat1, - STATE(6746), 1, - sym_constant, - STATE(5456), 2, + ACTIONS(140), 2, + sym__namecolon, + anon_sym_NO_DASHERROR, + STATE(5532), 2, sym_comment, sym_include, - [288023] = 7, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290669] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, - anon_sym_COMMA, - ACTIONS(7692), 1, - anon_sym_RPAREN, - STATE(5444), 1, - aux_sym_function_arguments_repeat1, - STATE(5457), 2, + ACTIONS(7162), 1, + anon_sym_LPAREN, + STATE(1043), 1, + sym_function_arguments, + STATE(5533), 2, sym_comment, sym_include, - [288046] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290689] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2383), 1, - sym__block_terminator, - STATE(5458), 2, + ACTIONS(841), 1, + sym__namecolon, + STATE(4598), 1, + aux_sym_object_access_repeat1, + STATE(5534), 2, sym_comment, sym_include, - [288066] = 6, - ACTIONS(67), 1, + [290709] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7694), 1, - sym__terminator, - ACTIONS(7696), 1, - aux_sym_catch_statement_token1, - STATE(5459), 2, + ACTIONS(7828), 1, + sym_identifier, + STATE(5601), 1, + sym_qualified_name, + STATE(5535), 2, sym_comment, sym_include, - [288086] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290729] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7698), 1, - aux_sym_input_close_statement_token2, - ACTIONS(7700), 1, - aux_sym_output_stream_statement_token1, - STATE(5460), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2271), 1, + sym__block_terminator, + STATE(5536), 2, sym_comment, sym_include, - [288106] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290749] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - STATE(3250), 1, - sym_string_literal, - STATE(5461), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5714), 1, + sym_body, + STATE(5537), 2, sym_comment, sym_include, - [288126] = 6, - ACTIONS(3), 1, + [290769] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7702), 1, - sym_identifier, - STATE(5290), 1, - sym_qualified_name, - STATE(5462), 2, + ACTIONS(7786), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + aux_sym__function_terminator_token1, + STATE(5538), 2, sym_comment, sym_include, - [288146] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290789] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(5146), 1, + STATE(1913), 1, sym__block_terminator, - STATE(5463), 2, + STATE(5539), 2, sym_comment, sym_include, - [288166] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290809] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1838), 1, - sym__block_terminator, - STATE(5464), 2, + ACTIONS(7832), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(7834), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5540), 2, sym_comment, sym_include, - [288186] = 6, - ACTIONS(3), 1, + [290829] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7704), 1, - sym_identifier, - ACTIONS(7706), 1, - anon_sym_STAR, - STATE(5465), 2, + ACTIONS(7786), 1, + anon_sym_DOT, + ACTIONS(7836), 1, + aux_sym__case_terminator_token1, + STATE(5541), 2, sym_comment, sym_include, - [288206] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290849] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1583), 1, + STATE(1912), 1, sym__block_terminator, - STATE(5466), 2, + STATE(5542), 2, sym_comment, sym_include, - [288226] = 6, + [290869] = 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(7838), 1, sym_identifier, - STATE(5680), 1, + STATE(5622), 1, sym_qualified_name, - STATE(5467), 2, + STATE(5543), 2, sym_comment, sym_include, - [288246] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290889] = 5, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7710), 1, - sym__terminator, - ACTIONS(7712), 1, - aux_sym_finally_statement_token1, - STATE(5469), 2, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5544), 2, sym_comment, sym_include, - [288284] = 6, + [290907] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7714), 1, + ACTIONS(7840), 1, sym_identifier, - STATE(5835), 1, + STATE(3264), 1, sym_qualified_name, - STATE(5470), 2, + STATE(5545), 2, sym_comment, sym_include, - [288304] = 6, - ACTIONS(3), 1, + [290927] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7716), 1, - sym_identifier, - ACTIONS(7718), 1, - anon_sym_COMMA, - STATE(5471), 2, + ACTIONS(7166), 1, + sym__terminator, + ACTIONS(7168), 1, + aux_sym_using_statement_token2, + STATE(5546), 2, sym_comment, sym_include, - [288324] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290947] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6299), 1, - sym_body, - STATE(5472), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1909), 1, + sym__block_terminator, + STATE(5547), 2, sym_comment, sym_include, - [288344] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290967] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6173), 1, - sym_body, - STATE(5473), 2, + ACTIONS(110), 2, + sym__namecolon, + anon_sym_NO_DASHERROR, + STATE(5548), 2, sym_comment, sym_include, - [288364] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [290985] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(7707), 2, anon_sym_COLON, - STATE(6426), 1, - sym_body, - STATE(5474), 2, + sym__terminator, + STATE(5549), 2, sym_comment, sym_include, - [288384] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291003] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7720), 1, - aux_sym_on_error_phrase_token1, - STATE(6382), 1, - sym_on_error_phrase, - STATE(5475), 2, + ACTIONS(7842), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(7844), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5550), 2, sym_comment, sym_include, - [288404] = 6, - ACTIONS(3), 1, + [291023] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7722), 1, - sym_identifier, - STATE(5239), 1, - sym_qualified_name, - STATE(5476), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1854), 1, + sym__block_terminator, + STATE(5551), 2, sym_comment, sym_include, - [288424] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291043] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(829), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(5477), 2, + ACTIONS(7172), 1, + anon_sym_LPAREN, + STATE(244), 1, + sym_function_arguments, + STATE(5552), 2, sym_comment, sym_include, - [288442] = 6, - ACTIONS(67), 1, + [291063] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(5293), 1, - sym_function_parameters, - STATE(5478), 2, + ACTIONS(6626), 1, + anon_sym_COLON, + ACTIONS(7846), 1, + sym_identifier, + STATE(5553), 2, sym_comment, sym_include, - [288462] = 6, - ACTIONS(67), 1, + [291083] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5093), 1, - sym__terminator, - ACTIONS(5095), 1, - aux_sym_function_call_token1, - STATE(5479), 2, + ACTIONS(7848), 1, + sym_identifier, + STATE(3641), 1, + sym_qualified_name, + STATE(5554), 2, sym_comment, sym_include, - [288482] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291103] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(825), 1, - sym__namecolon, - STATE(4573), 1, - aux_sym_object_access_repeat1, - STATE(5480), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1908), 1, + sym__block_terminator, + STATE(5555), 2, sym_comment, sym_include, - [288502] = 6, + [291123] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7724), 1, + ACTIONS(7850), 1, sym_identifier, - ACTIONS(7726), 1, - anon_sym_STAR, - STATE(5481), 2, + STATE(5667), 1, + sym_qualified_name, + STATE(5556), 2, sym_comment, sym_include, - [288522] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291143] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(391), 1, - sym__namecolon, - ACTIONS(7728), 1, - anon_sym_NO_DASHERROR, - STATE(5482), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6595), 1, + sym_body, + STATE(5557), 2, sym_comment, sym_include, - [288542] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291163] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7730), 1, - anon_sym_DOT, - ACTIONS(7732), 1, - aux_sym__procedure_terminator_token1, - STATE(5483), 2, + ACTIONS(7174), 1, + sym__terminator, + ACTIONS(7176), 1, + aux_sym_using_statement_token2, + STATE(5558), 2, sym_comment, sym_include, - [288562] = 6, - ACTIONS(67), 1, + [291183] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1930), 1, + sym__block_terminator, + STATE(5559), 2, + sym_comment, + sym_include, + [291203] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7734), 1, - sym__terminator, - ACTIONS(7736), 1, - aux_sym_class_type_token1, - STATE(5484), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1931), 1, + sym__block_terminator, + STATE(5560), 2, sym_comment, sym_include, - [288582] = 6, + [291223] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7738), 1, + ACTIONS(7852), 1, sym_identifier, - STATE(5548), 1, - sym_qualified_name, - STATE(5485), 2, + ACTIONS(7854), 1, + sym__integer_literal, + STATE(5561), 2, sym_comment, sym_include, - [288602] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291243] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7740), 1, - sym__terminator, - ACTIONS(7742), 1, - aux_sym_class_type_token1, - STATE(5486), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1937), 1, + sym__block_terminator, + STATE(5562), 2, sym_comment, sym_include, - [288622] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291263] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7744), 1, + ACTIONS(7856), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(7746), 1, + ACTIONS(7858), 1, aux_sym_procedure_parameter_definition_token2, - STATE(5487), 2, + STATE(5563), 2, sym_comment, sym_include, - [288642] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291283] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7748), 1, - aux_sym_primitive_type_token1, - ACTIONS(7750), 1, - aux_sym_event_definition_token2, - STATE(5489), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1918), 1, + sym__block_terminator, + STATE(5564), 2, sym_comment, sym_include, - [288680] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291303] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7752), 1, - sym__terminator, - ACTIONS(7754), 1, - aux_sym_function_call_token1, - STATE(5490), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1940), 1, + sym__block_terminator, + STATE(5565), 2, sym_comment, sym_include, - [288700] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291323] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2421), 1, - sym__block_terminator, - STATE(5491), 2, + ACTIONS(6791), 1, + anon_sym_LPAREN, + STATE(5961), 1, + sym_function_arguments, + STATE(5566), 2, sym_comment, sym_include, - [288720] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291343] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(115), 2, - sym__terminator, - aux_sym_function_call_token1, - STATE(5492), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5809), 1, + sym_body, + STATE(5567), 2, sym_comment, sym_include, - [288738] = 6, + [291363] = 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(7860), 1, sym_identifier, - STATE(3576), 1, + STATE(6868), 1, sym_qualified_name, - STATE(5493), 2, - sym_comment, - sym_include, - [288758] = 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(1849), 1, - sym__block_terminator, - STATE(5494), 2, + STATE(5568), 2, sym_comment, sym_include, - [288778] = 6, + [291383] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7758), 1, + ACTIONS(7862), 1, sym_identifier, - ACTIONS(7760), 1, - anon_sym_STAR, - STATE(5495), 2, - sym_comment, - sym_include, - [288798] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(7762), 1, - sym__terminator, - ACTIONS(7764), 1, - aux_sym_prompt_for_statement_token2, - STATE(5496), 2, + STATE(5719), 1, + sym_qualified_name, + STATE(5569), 2, sym_comment, sym_include, - [288818] = 6, + [291403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7766), 1, + ACTIONS(7864), 1, sym_identifier, - STATE(5585), 1, + STATE(114), 1, sym_qualified_name, - STATE(5497), 2, + STATE(5570), 2, sym_comment, sym_include, - [288838] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291423] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5083), 1, - sym__block_terminator, - STATE(5498), 2, + ACTIONS(7866), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(7868), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5571), 2, sym_comment, sym_include, - [288858] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291443] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1854), 1, + STATE(1944), 1, sym__block_terminator, - STATE(5499), 2, + STATE(5572), 2, sym_comment, sym_include, - [288878] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291463] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7768), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(7770), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(5500), 2, + ACTIONS(7870), 1, + sym__terminator, + ACTIONS(7872), 1, + aux_sym_catch_statement_token1, + STATE(5573), 2, sym_comment, sym_include, - [288898] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291483] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7772), 1, - aux_sym_using_statement_token2, - ACTIONS(7774), 1, - aux_sym_input_close_statement_token2, - STATE(5501), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2209), 1, + sym__block_terminator, + STATE(5574), 2, sym_comment, sym_include, - [288918] = 6, - ACTIONS(67), 1, + [291503] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7772), 1, - aux_sym_using_statement_token2, - ACTIONS(7776), 1, - aux_sym_input_close_statement_token2, - STATE(5502), 2, + ACTIONS(7874), 1, + sym_identifier, + STATE(4181), 1, + sym_qualified_name, + STATE(5575), 2, sym_comment, sym_include, - [288938] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291523] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(5075), 1, + STATE(1952), 1, sym__block_terminator, - STATE(5503), 2, + STATE(5576), 2, sym_comment, sym_include, - [288958] = 6, - ACTIONS(3), 1, + [291543] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7778), 1, - sym_identifier, - ACTIONS(7780), 1, + ACTIONS(7876), 1, sym__terminator, - STATE(5504), 2, + ACTIONS(7878), 1, + aux_sym_enum_definition_token1, + STATE(5577), 2, sym_comment, sym_include, - [288978] = 6, + [291563] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7782), 1, + ACTIONS(7880), 1, sym_identifier, - ACTIONS(7784), 1, + ACTIONS(7882), 1, anon_sym_STAR, - STATE(5505), 2, + STATE(5578), 2, sym_comment, sym_include, - [288998] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291583] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4808), 1, + STATE(1700), 1, sym__block_terminator, - STATE(5506), 2, + STATE(5579), 2, sym_comment, sym_include, - [289018] = 6, - ACTIONS(67), 1, + [291603] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7786), 1, - sym__terminator, - ACTIONS(7788), 1, - aux_sym_interface_statement_token1, - STATE(5507), 2, + ACTIONS(7884), 1, + sym_identifier, + ACTIONS(7886), 1, + anon_sym_STAR, + STATE(5580), 2, sym_comment, sym_include, - [289038] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291623] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2416), 1, + STATE(2249), 1, sym__block_terminator, - STATE(5508), 2, + STATE(5581), 2, sym_comment, sym_include, - [289058] = 6, - ACTIONS(3), 1, + [291643] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7790), 1, - sym_identifier, - STATE(5616), 1, - sym_qualified_name, - STATE(5509), 2, + ACTIONS(7772), 2, + anon_sym_COLON, + sym__terminator, + STATE(5582), 2, sym_comment, sym_include, - [289078] = 6, - ACTIONS(67), 1, + [291661] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6798), 1, - sym__terminator, - ACTIONS(6800), 1, - aux_sym_using_statement_token2, - STATE(5510), 2, + ACTIONS(6721), 1, + anon_sym_COLON, + ACTIONS(7888), 1, + sym_identifier, + STATE(5583), 2, sym_comment, sym_include, - [289098] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291681] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(115), 2, + ACTIONS(83), 1, sym__namecolon, - anon_sym_NO_DASHERROR, - STATE(5511), 2, + STATE(7), 1, + aux_sym_object_access_repeat1, + STATE(5584), 2, sym_comment, sym_include, - [289116] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291701] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1866), 1, + STATE(1954), 1, sym__block_terminator, - STATE(5512), 2, + STATE(5585), 2, sym_comment, sym_include, - [289136] = 5, - ACTIONS(67), 1, + [291721] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7890), 1, + anon_sym_DOT, + ACTIONS(7892), 1, + aux_sym__case_terminator_token1, + STATE(5586), 2, + sym_comment, + sym_include, + [291741] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3910), 2, + ACTIONS(6397), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(5513), 2, + STATE(5587), 2, sym_comment, sym_include, - [289154] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291759] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7792), 1, + ACTIONS(7894), 2, sym__terminator, - ACTIONS(7794), 1, - aux_sym_destructor_definition_token1, - STATE(5514), 2, + aux_sym_output_stream_statement_token1, + STATE(5588), 2, sym_comment, sym_include, - [289174] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291777] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7796), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(7798), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(5515), 2, + ACTIONS(7890), 1, + anon_sym_DOT, + ACTIONS(7896), 1, + aux_sym__function_terminator_token1, + STATE(5589), 2, sym_comment, sym_include, - [289194] = 6, - ACTIONS(67), 1, + [291797] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1955), 1, + sym__block_terminator, + STATE(5590), 2, + sym_comment, + sym_include, + [291817] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7730), 1, + ACTIONS(7890), 1, anon_sym_DOT, - ACTIONS(7800), 1, - aux_sym__function_terminator_token1, - STATE(5516), 2, + ACTIONS(7898), 1, + aux_sym__procedure_terminator_token1, + STATE(5591), 2, sym_comment, sym_include, - [289214] = 6, - ACTIONS(67), 1, + [291837] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7802), 1, - sym__terminator, - ACTIONS(7804), 1, - aux_sym_interface_statement_token1, - STATE(5517), 2, + ACTIONS(4365), 1, + anon_sym_RPAREN, + ACTIONS(4367), 1, + anon_sym_, + STATE(5592), 2, sym_comment, sym_include, - [289234] = 6, - ACTIONS(67), 1, + [291857] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7900), 1, + aux_sym_primitive_type_token1, + ACTIONS(7902), 1, + aux_sym_event_definition_token2, + STATE(5593), 2, + sym_comment, + sym_include, + [291877] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1871), 1, + STATE(1919), 1, sym__block_terminator, - STATE(5518), 2, + STATE(5594), 2, sym_comment, sym_include, - [289254] = 6, - ACTIONS(3), 1, + [291897] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7806), 1, - sym_identifier, - ACTIONS(7808), 1, - sym__terminator, - STATE(5519), 2, + ACTIONS(4678), 1, + anon_sym_LPAREN, + STATE(3561), 1, + sym_function_arguments, + STATE(5595), 2, sym_comment, sym_include, - [289274] = 6, - ACTIONS(3), 1, + [291917] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, - sym_identifier, - ACTIONS(7812), 1, - sym__integer_literal, - STATE(5520), 2, + ACTIONS(7904), 1, + anon_sym_DOT, + ACTIONS(7906), 1, + aux_sym__procedure_terminator_token1, + STATE(5596), 2, sym_comment, sym_include, - [289294] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291937] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7814), 1, - sym__terminator, - ACTIONS(7816), 1, - aux_sym_constructor_definition_token1, - STATE(5521), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2294), 1, + sym__block_terminator, + STATE(5597), 2, sym_comment, sym_include, - [289314] = 6, + [291957] = 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(7908), 1, sym_identifier, - STATE(5657), 1, + STATE(3641), 1, sym_qualified_name, - STATE(5522), 2, + STATE(5598), 2, sym_comment, sym_include, - [289334] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291977] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(5033), 1, + STATE(4657), 1, sym__block_terminator, - STATE(5523), 2, + STATE(5599), 2, sym_comment, sym_include, - [289354] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [291997] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 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, + ACTIONS(7910), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5600), 2, sym_comment, sym_include, - [289374] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292015] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7824), 1, - sym__terminator, - ACTIONS(7826), 1, - aux_sym_class_type_token1, - STATE(5525), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6400), 1, + sym_body, + STATE(5601), 2, sym_comment, sym_include, - [289394] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292035] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(4780), 1, + STATE(1857), 1, sym__block_terminator, - STATE(5526), 2, + STATE(5602), 2, sym_comment, sym_include, - [289414] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292055] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6808), 1, - anon_sym_LPAREN, - STATE(5601), 1, - sym_function_arguments, - STATE(5527), 2, - sym_comment, - sym_include, - [289434] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7730), 1, - anon_sym_DOT, - ACTIONS(7828), 1, - aux_sym__case_terminator_token1, - STATE(5528), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6375), 1, + sym_body, + STATE(5603), 2, sym_comment, sym_include, - [289454] = 5, - ACTIONS(67), 1, + [292075] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, - sym__namecolon, - anon_sym_NO_DASHERROR, - STATE(5529), 2, + ACTIONS(7912), 1, + sym_identifier, + STATE(2710), 1, + sym_qualified_name, + STATE(5604), 2, sym_comment, sym_include, - [289472] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292095] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(6350), 1, - sym_function_parameters, - STATE(5530), 2, - sym_comment, - sym_include, - [289492] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7830), 1, + ACTIONS(7914), 1, sym__terminator, - ACTIONS(7832), 1, - aux_sym_prompt_for_statement_token2, - STATE(5531), 2, + ACTIONS(7916), 1, + aux_sym_function_call_token1, + STATE(5605), 2, sym_comment, sym_include, - [289512] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292115] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5028), 1, - sym__block_terminator, - STATE(5532), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6524), 1, + sym_body, + STATE(5606), 2, sym_comment, sym_include, - [289532] = 6, - ACTIONS(3), 1, + [292135] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7834), 1, - sym_identifier, - ACTIONS(7836), 1, - sym__terminator, - STATE(5533), 2, + ACTIONS(5898), 1, + anon_sym_LPAREN, + STATE(5791), 1, + sym_function_parameters, + STATE(5607), 2, sym_comment, sym_include, - [289552] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292155] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7838), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5534), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2299), 1, + sym__block_terminator, + STATE(5608), 2, sym_comment, sym_include, - [289570] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292175] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7840), 1, - sym__terminator, - ACTIONS(7842), 1, - aux_sym_function_call_token1, - STATE(5535), 2, + ACTIONS(7904), 1, + anon_sym_DOT, + ACTIONS(7918), 1, + aux_sym__function_terminator_token1, + STATE(5609), 2, sym_comment, sym_include, - [289590] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292195] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(138), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(5536), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1920), 1, + sym__block_terminator, + STATE(5610), 2, sym_comment, sym_include, - [289608] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292215] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7844), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5537), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2303), 1, + sym__block_terminator, + STATE(5611), 2, sym_comment, sym_include, - [289626] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292235] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7846), 1, - sym__terminator, - ACTIONS(7848), 1, - aux_sym_function_call_token1, - STATE(5538), 2, + ACTIONS(7920), 2, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + STATE(5612), 2, sym_comment, sym_include, - [289646] = 6, + [292253] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7850), 1, + ACTIONS(7922), 1, sym_identifier, - ACTIONS(7852), 1, - sym__terminator, - STATE(5539), 2, + STATE(4605), 1, + sym_qualified_name, + STATE(5613), 2, sym_comment, sym_include, - [289666] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292273] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7488), 2, + ACTIONS(6807), 2, anon_sym_COLON, - sym__terminator, - STATE(5540), 2, + anon_sym_COMMA, + STATE(5614), 2, sym_comment, sym_include, - [289684] = 6, + [292291] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, - anon_sym_COLON, - ACTIONS(7854), 1, + ACTIONS(7924), 1, sym_identifier, - STATE(5541), 2, + STATE(2688), 1, + sym_qualified_name, + STATE(5615), 2, sym_comment, sym_include, - [289704] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292311] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(7856), 1, - sym__terminator, - ACTIONS(7858), 1, - aux_sym_class_type_token1, - STATE(5542), 2, - sym_comment, - sym_include, - [289724] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(142), 2, - sym__namecolon, - anon_sym_NO_DASHERROR, - STATE(5543), 2, + ACTIONS(7904), 1, + anon_sym_DOT, + ACTIONS(7926), 1, + aux_sym__case_terminator_token1, + STATE(5616), 2, sym_comment, sym_include, - [289742] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292331] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2163), 1, - sym__block_terminator, - STATE(5544), 2, - sym_comment, - sym_include, - [289762] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7860), 1, + ACTIONS(7928), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7862), 1, - aux_sym_on_error_phrase_token3, - STATE(5545), 2, + STATE(5617), 2, sym_comment, sym_include, - [289782] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292349] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(142), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(5546), 2, + ACTIONS(2742), 1, + sym__namecolon, + STATE(2514), 1, + aux_sym_object_access_repeat1, + STATE(5618), 2, sym_comment, sym_include, - [289800] = 6, - ACTIONS(67), 1, + [292369] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, - sym__terminator, - ACTIONS(5112), 1, - aux_sym_function_call_token1, - STATE(5547), 2, + ACTIONS(7930), 1, + sym_identifier, + ACTIONS(7932), 1, + anon_sym_STAR, + STATE(5619), 2, sym_comment, sym_include, - [289820] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292389] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(6327), 1, + STATE(6294), 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(73), 1, - anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2381), 1, - sym__block_terminator, - STATE(5549), 2, + STATE(5620), 2, sym_comment, sym_include, - [289860] = 6, + [292409] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7864), 1, + ACTIONS(7934), 1, sym_identifier, - ACTIONS(7866), 1, - anon_sym_STAR, - STATE(5550), 2, + ACTIONS(7936), 1, + anon_sym_COMMA, + STATE(5621), 2, sym_comment, sym_include, - [289880] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292429] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(6302), 1, + STATE(6551), 1, sym_body, - STATE(5551), 2, - sym_comment, - sym_include, - [289900] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__namecolon, - STATE(10), 1, - aux_sym_object_access_repeat1, - STATE(5552), 2, + STATE(5622), 2, sym_comment, sym_include, - [289920] = 6, + [292449] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7868), 1, + ACTIONS(7938), 1, sym_identifier, - STATE(2829), 1, - sym_qualified_name, - STATE(5553), 2, + ACTIONS(7940), 1, + sym__terminator, + STATE(5623), 2, sym_comment, sym_include, - [289940] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292469] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5846), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5554), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6221), 1, + sym_body, + STATE(5624), 2, sym_comment, sym_include, - [289958] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292489] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7870), 1, - sym__terminator, - ACTIONS(7872), 1, - aux_sym_finally_statement_token1, - STATE(5555), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4825), 1, + sym__block_terminator, + STATE(5625), 2, sym_comment, sym_include, - [289978] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292509] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7534), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5556), 2, + ACTIONS(7942), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7944), 1, + aux_sym_output_stream_statement_token1, + STATE(5626), 2, sym_comment, sym_include, - [289996] = 6, - ACTIONS(67), 1, + [292529] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4126), 1, - sym_query_fields, - STATE(5557), 2, + ACTIONS(7946), 1, + sym_identifier, + STATE(2686), 1, + sym_qualified_name, + STATE(5627), 2, sym_comment, sym_include, - [290016] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292549] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7876), 1, - sym__terminator, - ACTIONS(7878), 1, - aux_sym_interface_statement_token1, - STATE(5558), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1921), 1, + sym__block_terminator, + STATE(5628), 2, sym_comment, sym_include, - [290036] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292569] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6822), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(1342), 1, - sym_function_arguments, - STATE(5559), 2, + STATE(4176), 1, + sym_query_fields, + STATE(5629), 2, sym_comment, sym_include, - [290056] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292589] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4442), 1, + STATE(4421), 1, sym_query_fields, - STATE(5560), 2, + STATE(5630), 2, sym_comment, sym_include, - [290076] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292609] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(7950), 1, sym__terminator, - ACTIONS(7882), 1, - aux_sym_getter_token1, - STATE(5561), 2, + ACTIONS(7952), 1, + aux_sym_enum_definition_token1, + STATE(5631), 2, sym_comment, sym_include, - [290096] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292629] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1904), 1, - sym__block_terminator, - STATE(5562), 2, - sym_comment, - sym_include, - [290116] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(2156), 1, + STATE(1838), 1, sym__block_terminator, - STATE(5563), 2, + STATE(5632), 2, sym_comment, sym_include, - [290136] = 6, + [292649] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7884), 1, + ACTIONS(7954), 1, sym_identifier, - ACTIONS(7886), 1, + ACTIONS(7956), 1, sym__terminator, - STATE(5564), 2, + STATE(5633), 2, sym_comment, sym_include, - [290156] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292669] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1925), 1, - sym__block_terminator, - STATE(5565), 2, + ACTIONS(7958), 1, + sym__terminator, + ACTIONS(7960), 1, + aux_sym_prompt_for_statement_token2, + STATE(5634), 2, sym_comment, sym_include, - [290176] = 6, - ACTIONS(3), 1, + [292689] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7888), 1, - sym_identifier, + ACTIONS(6763), 1, + sym__escaped_string, STATE(2812), 1, - sym_qualified_name, - STATE(5566), 2, + sym_string_literal, + STATE(5635), 2, sym_comment, sym_include, - [290196] = 6, - ACTIONS(3), 1, + [292709] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7548), 1, - anon_sym_RPAREN, - ACTIONS(7890), 1, - anon_sym_, - STATE(5567), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1830), 1, + sym__block_terminator, + STATE(5636), 2, sym_comment, sym_include, - [290216] = 6, - ACTIONS(67), 1, + [292729] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7892), 1, - sym__terminator, - ACTIONS(7894), 1, - aux_sym_method_definition_token1, - STATE(5568), 2, + ACTIONS(7962), 1, + sym_identifier, + STATE(5533), 1, + sym_qualified_name, + STATE(5637), 2, sym_comment, sym_include, - [290236] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292749] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4978), 1, - sym__block_terminator, - STATE(5569), 2, + ACTIONS(7182), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_function_arguments, + STATE(5638), 2, sym_comment, sym_include, - [290256] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292769] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7896), 1, - sym__terminator, - ACTIONS(7898), 1, - aux_sym_setter_token1, - STATE(5570), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2322), 1, + sym__block_terminator, + STATE(5639), 2, sym_comment, sym_include, - [290276] = 6, + [292789] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7900), 1, + ACTIONS(7964), 1, sym_identifier, - ACTIONS(7902), 1, - anon_sym_STAR, - STATE(5571), 2, + STATE(5558), 1, + sym_qualified_name, + STATE(5640), 2, sym_comment, sym_include, - [290296] = 6, - ACTIONS(3), 1, + [292809] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7904), 1, - sym_identifier, - STATE(6134), 1, - sym_qualified_name, - STATE(5572), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1803), 1, + sym__block_terminator, + STATE(5641), 2, sym_comment, sym_include, - [290316] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292829] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7906), 1, - sym__terminator, - ACTIONS(7908), 1, - aux_sym_catch_statement_token1, - STATE(5573), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2177), 1, + sym__block_terminator, + STATE(5642), 2, sym_comment, sym_include, - [290336] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292849] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4464), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5574), 2, + ACTIONS(7824), 1, + aux_sym_on_error_phrase_token1, + STATE(6780), 1, + sym_on_error_phrase, + STATE(5643), 2, sym_comment, sym_include, - [290354] = 6, + [292869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7910), 1, + ACTIONS(7966), 1, sym_identifier, - STATE(6128), 1, + STATE(5471), 1, sym_qualified_name, - STATE(5575), 2, + STATE(5644), 2, sym_comment, sym_include, - [290374] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292889] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6223), 1, - sym_body, - STATE(5576), 2, - sym_comment, - sym_include, - [290394] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, + ACTIONS(6676), 1, anon_sym_LPAREN, - STATE(6421), 1, + STATE(5413), 1, sym_function_parameters, - STATE(5577), 2, + STATE(5645), 2, sym_comment, sym_include, - [290414] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292909] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7720), 1, - aux_sym_on_error_phrase_token1, - STATE(6165), 1, - sym_on_error_phrase, - STATE(5578), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2326), 1, + sym__block_terminator, + STATE(5646), 2, sym_comment, sym_include, - [290434] = 6, - ACTIONS(3), 1, + [292929] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7912), 1, - sym_identifier, - STATE(5252), 1, - sym_qualified_name, - STATE(5579), 2, + ACTIONS(5835), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5647), 2, sym_comment, sym_include, - [290454] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292947] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4976), 1, + STATE(1790), 1, sym__block_terminator, - STATE(5580), 2, + STATE(5648), 2, sym_comment, sym_include, - [290474] = 6, + [292967] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7914), 1, + ACTIONS(7968), 1, sym_identifier, - ACTIONS(7916), 1, - anon_sym_COMMA, - STATE(5581), 2, + ACTIONS(7970), 1, + anon_sym_STAR, + STATE(5649), 2, sym_comment, sym_include, - [290494] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [292987] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5775), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(5582), 2, + ACTIONS(7972), 1, + sym__terminator, + ACTIONS(7974), 1, + aux_sym_finally_statement_token1, + STATE(5650), 2, sym_comment, sym_include, - [290512] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293007] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4430), 2, + ACTIONS(6526), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(5583), 2, + STATE(5651), 2, sym_comment, sym_include, - [290530] = 6, - ACTIONS(67), 1, + [293025] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7423), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(7425), 1, - aux_sym_on_quit_phrase_token1, - STATE(5584), 2, + ACTIONS(7976), 1, + sym_identifier, + STATE(2712), 1, + sym_qualified_name, + STATE(5652), 2, sym_comment, sym_include, - [290550] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293045] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(6822), 2, anon_sym_COLON, - STATE(6144), 1, - sym_body, - STATE(5585), 2, + anon_sym_COMMA, + STATE(5653), 2, sym_comment, sym_include, - [290570] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293063] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6153), 1, - sym_body, - STATE(5586), 2, + ACTIONS(7978), 1, + aux_sym_image_phrase_token7, + ACTIONS(7980), 1, + aux_sym_image_phrase_token9, + STATE(5654), 2, sym_comment, sym_include, - [290590] = 6, - ACTIONS(67), 1, + [293083] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7918), 1, - sym__terminator, - ACTIONS(7920), 1, - aux_sym_interface_statement_token1, - STATE(5587), 2, + ACTIONS(7982), 1, + sym_identifier, + STATE(4635), 1, + sym_qualified_name, + STATE(5655), 2, sym_comment, sym_include, - [290610] = 6, + [293103] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7922), 1, + ACTIONS(7984), 1, sym_identifier, - STATE(2661), 1, + STATE(5191), 1, sym_qualified_name, - STATE(5588), 2, + STATE(5656), 2, sym_comment, sym_include, - [290630] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293123] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4956), 1, - sym__block_terminator, - STATE(5589), 2, + ACTIONS(7944), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(7986), 1, + aux_sym_input_close_statement_token2, + STATE(5657), 2, sym_comment, sym_include, - [290650] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293143] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1725), 1, - sym__block_terminator, - STATE(5590), 2, + ACTIONS(4462), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5658), 2, sym_comment, sym_include, - [290670] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293161] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1828), 1, - sym__block_terminator, - STATE(5591), 2, + ACTIONS(6982), 1, + anon_sym_LPAREN, + STATE(2479), 1, + sym_function_arguments, + STATE(5659), 2, sym_comment, sym_include, - [290690] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293181] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1724), 1, - sym__block_terminator, - STATE(5592), 2, + ACTIONS(7664), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5660), 2, sym_comment, sym_include, - [290710] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293199] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(115), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(5593), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6284), 1, + sym_body, + STATE(5661), 2, sym_comment, sym_include, - [290728] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293219] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1723), 1, + STATE(1959), 1, sym__block_terminator, - STATE(5594), 2, + STATE(5662), 2, sym_comment, sym_include, - [290748] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293239] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7924), 1, - anon_sym_DOT, - ACTIONS(7926), 1, - aux_sym__procedure_terminator_token1, - STATE(5595), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5669), 1, + sym_body, + STATE(5663), 2, sym_comment, sym_include, - [290768] = 6, + [293259] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7928), 1, + ACTIONS(7988), 1, sym_identifier, - STATE(2649), 1, - sym_qualified_name, - STATE(5596), 2, - sym_comment, - sym_include, - [290788] = 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(5717), 1, - sym_body, - STATE(5597), 2, - sym_comment, - sym_include, - [290808] = 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(6096), 1, - sym_body, - 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, + ACTIONS(7990), 1, + sym__terminator, + STATE(5664), 2, sym_comment, sym_include, - [290848] = 6, + [293279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7930), 1, + ACTIONS(7992), 1, sym_identifier, - STATE(6792), 1, - sym_qualified_name, - STATE(5600), 2, + ACTIONS(7994), 1, + anon_sym_COMMA, + STATE(5665), 2, sym_comment, sym_include, - [290868] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293299] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(391), 1, + ACTIONS(5146), 1, sym__terminator, - ACTIONS(7932), 1, - anon_sym_NO_DASHERROR, - STATE(5601), 2, + ACTIONS(5148), 1, + aux_sym_function_call_token1, + STATE(5666), 2, sym_comment, sym_include, - [290888] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293319] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2266), 1, - sym__block_terminator, - STATE(5602), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6368), 1, + sym_body, + STATE(5667), 2, sym_comment, sym_include, - [290908] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293339] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, + ACTIONS(5888), 1, anon_sym_COLON, - STATE(5234), 1, + STATE(5441), 1, sym_case_body, - STATE(5603), 2, + STATE(5668), 2, sym_comment, sym_include, - [290928] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293359] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1722), 1, + STATE(2160), 1, sym__block_terminator, - STATE(5604), 2, + STATE(5669), 2, sym_comment, sym_include, - [290948] = 6, + [293379] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7934), 1, + ACTIONS(7996), 1, sym_identifier, - STATE(3266), 1, + STATE(3288), 1, sym_qualified_name, - STATE(5605), 2, + STATE(5670), 2, sym_comment, sym_include, - [290968] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293399] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6254), 1, - sym_body, - STATE(5606), 2, + ACTIONS(7998), 1, + sym__terminator, + ACTIONS(8000), 1, + aux_sym_finally_statement_token1, + STATE(5671), 2, sym_comment, sym_include, - [290988] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293419] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1819), 1, - sym__block_terminator, - STATE(5607), 2, + ACTIONS(8002), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5672), 2, sym_comment, sym_include, - [291008] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293437] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1721), 1, - sym__block_terminator, - STATE(5608), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6392), 1, + sym_body, + STATE(5673), 2, sym_comment, sym_include, - [291028] = 6, + [293457] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7936), 1, + ACTIONS(8004), 1, sym_identifier, - ACTIONS(7938), 1, + ACTIONS(8006), 1, sym__integer_literal, - STATE(5609), 2, + STATE(5674), 2, sym_comment, sym_include, - [291048] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293477] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(1958), 1, + STATE(1789), 1, sym__block_terminator, - STATE(5610), 2, + STATE(5675), 2, sym_comment, sym_include, - [291068] = 6, + [293497] = 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(8008), 1, sym_identifier, - ACTIONS(7942), 1, - anon_sym_COMMA, - STATE(5611), 2, + STATE(2852), 1, + sym_qualified_name, + STATE(5676), 2, sym_comment, sym_include, - [291088] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293517] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7944), 1, + ACTIONS(8010), 1, aux_sym_using_statement_token2, - ACTIONS(7946), 1, + ACTIONS(8012), 1, aux_sym_input_close_statement_token2, - STATE(5612), 2, + STATE(5677), 2, sym_comment, sym_include, - [291108] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293537] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7944), 1, + ACTIONS(8010), 1, aux_sym_using_statement_token2, - ACTIONS(7948), 1, + ACTIONS(8014), 1, aux_sym_input_close_statement_token2, - STATE(5613), 2, + STATE(5678), 2, sym_comment, sym_include, - [291128] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293557] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1714), 1, - sym__block_terminator, - STATE(5614), 2, + ACTIONS(8016), 1, + sym__terminator, + ACTIONS(8018), 1, + aux_sym_setter_token1, + STATE(5679), 2, sym_comment, sym_include, - [291148] = 5, - ACTIONS(67), 1, + [293577] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7950), 2, - anon_sym_COLON, - aux_sym_inherits_token1, - STATE(5615), 2, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_STAR, + STATE(5680), 2, sym_comment, sym_include, - [291166] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293597] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6342), 1, - sym_body, - STATE(5616), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1788), 1, + sym__block_terminator, + STATE(5681), 2, sym_comment, sym_include, - [291186] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293617] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6363), 1, - sym_body, - STATE(5617), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2330), 1, + sym__block_terminator, + STATE(5682), 2, sym_comment, sym_include, - [291206] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293637] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4910), 1, + STATE(1650), 1, sym__block_terminator, - STATE(5618), 2, + STATE(5683), 2, sym_comment, sym_include, - [291226] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293657] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6866), 1, + ACTIONS(5132), 1, sym__terminator, - ACTIONS(6868), 1, - aux_sym_using_statement_token2, - STATE(5619), 2, + ACTIONS(5134), 1, + aux_sym_function_call_token1, + STATE(5684), 2, sym_comment, sym_include, - [291246] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293677] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7952), 2, - anon_sym_COLON, - aux_sym_inherits_token1, - STATE(5620), 2, + ACTIONS(8024), 1, + sym__terminator, + ACTIONS(8026), 1, + aux_sym_class_type_token1, + STATE(5685), 2, sym_comment, sym_include, - [291264] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293697] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7954), 1, + ACTIONS(8028), 1, aux_sym_input_close_statement_token2, - ACTIONS(7956), 1, + ACTIONS(8030), 1, aux_sym_output_stream_statement_token1, - STATE(5621), 2, + STATE(5686), 2, sym_comment, sym_include, - [291284] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293717] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7956), 1, + ACTIONS(8030), 1, aux_sym_output_stream_statement_token1, - ACTIONS(7958), 1, + ACTIONS(8032), 1, aux_sym_input_close_statement_token2, - STATE(5622), 2, + STATE(5687), 2, sym_comment, sym_include, - [291304] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293737] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7960), 1, + ACTIONS(8034), 1, anon_sym_COMMA, - ACTIONS(7962), 1, + ACTIONS(8036), 1, aux_sym_on_error_phrase_token3, - STATE(5623), 2, + STATE(5688), 2, sym_comment, sym_include, - [291324] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293757] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7484), 1, + ACTIONS(7333), 1, aux_sym_on_stop_phrase_token1, - ACTIONS(7515), 1, + ACTIONS(7335), 1, aux_sym_on_quit_phrase_token1, - STATE(5624), 2, + STATE(5689), 2, sym_comment, sym_include, - [291344] = 6, - ACTIONS(3), 1, + [293777] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7964), 1, - sym_identifier, - STATE(2720), 1, - sym_qualified_name, - STATE(5625), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1764), 1, + sym__block_terminator, + STATE(5690), 2, sym_comment, sym_include, - [291364] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293797] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7966), 2, + ACTIONS(8038), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(5626), 2, + STATE(5691), 2, sym_comment, sym_include, - [291382] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293815] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1713), 1, - sym__block_terminator, - STATE(5627), 2, + ACTIONS(8040), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5692), 2, sym_comment, sym_include, - [291402] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293833] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1955), 1, + STATE(1950), 1, sym__block_terminator, - STATE(5628), 2, + STATE(5693), 2, sym_comment, sym_include, - [291422] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293853] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7968), 2, + ACTIONS(8042), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5629), 2, + STATE(5694), 2, sym_comment, sym_include, - [291440] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293871] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8044), 1, aux_sym_scope_tuning_token1, - STATE(6287), 1, + STATE(6410), 1, sym_new_expression, - STATE(5630), 2, + STATE(5695), 2, sym_comment, sym_include, - [291460] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293891] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5980), 1, + STATE(5957), 1, sym_body, - STATE(5631), 2, + STATE(5696), 2, + sym_comment, + sym_include, + [293911] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8046), 1, + sym_identifier, + STATE(2781), 1, + sym_qualified_name, + STATE(5697), 2, sym_comment, sym_include, - [291480] = 6, - ACTIONS(67), 1, + [293931] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8048), 1, + anon_sym_COMMA, + ACTIONS(8050), 1, + aux_sym_on_error_phrase_token3, + STATE(5698), 2, + sym_comment, + sym_include, + [293951] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1711), 1, + STATE(2279), 1, sym__block_terminator, - STATE(5632), 2, + STATE(5699), 2, sym_comment, sym_include, - [291500] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293971] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1811), 1, + STATE(2328), 1, sym__block_terminator, - STATE(5633), 2, + STATE(5700), 2, sym_comment, sym_include, - [291520] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [293991] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7972), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5634), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5982), 1, + sym_body, + STATE(5701), 2, sym_comment, sym_include, - [291538] = 6, - ACTIONS(3), 1, + [294011] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7974), 1, - sym_identifier, - STATE(2747), 1, - sym_qualified_name, - STATE(5635), 2, + ACTIONS(8052), 2, + sym__terminator, + aux_sym_field_definition_token1, + STATE(5702), 2, sym_comment, sym_include, - [291558] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294029] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(5769), 2, anon_sym_COLON, - STATE(5973), 1, - sym_body, - STATE(5636), 2, + anon_sym_COMMA, + STATE(5703), 2, sym_comment, sym_include, - [291578] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294047] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7976), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5637), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1758), 1, + sym__block_terminator, + STATE(5704), 2, sym_comment, sym_include, - [291596] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294067] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6886), 1, - anon_sym_LPAREN, - STATE(59), 1, - sym_function_arguments, - STATE(5638), 2, + ACTIONS(6682), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5705), 2, sym_comment, sym_include, - [291616] = 5, - ACTIONS(67), 1, + [294085] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7978), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, - STATE(5639), 2, + ACTIONS(8054), 1, + sym_identifier, + STATE(116), 1, + sym_qualified_name, + STATE(5706), 2, sym_comment, sym_include, - [291634] = 6, + [294105] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7980), 1, + ACTIONS(8056), 1, sym_identifier, - STATE(117), 1, + STATE(6515), 1, sym_qualified_name, - STATE(5640), 2, + STATE(5707), 2, sym_comment, sym_include, - [291654] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294125] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4626), 1, - anon_sym_LPAREN, - STATE(3531), 1, - sym_function_arguments, - STATE(5641), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6462), 1, + sym_body, + STATE(5708), 2, sym_comment, sym_include, - [291674] = 6, - ACTIONS(67), 1, + [294145] = 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(4553), 1, + sym_qualified_name, + STATE(5709), 2, + sym_comment, + sym_include, + [294165] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2091), 1, - sym__block_terminator, - STATE(5642), 2, + ACTIONS(8060), 1, + sym__terminator, + ACTIONS(8062), 1, + aux_sym_finally_statement_token1, + STATE(5710), 2, sym_comment, sym_include, - [291694] = 6, + [294185] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7982), 1, + ACTIONS(8064), 1, sym_identifier, - STATE(4553), 1, + STATE(3019), 1, sym_qualified_name, - STATE(5643), 2, + STATE(5711), 2, sym_comment, sym_include, - [291714] = 6, - ACTIONS(67), 1, + [294205] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6888), 1, - anon_sym_LPAREN, - STATE(2599), 1, - sym_function_arguments, - STATE(5644), 2, + ACTIONS(8066), 1, + sym_identifier, + ACTIONS(8068), 1, + anon_sym_COMMA, + STATE(5712), 2, sym_comment, sym_include, - [291734] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294225] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7984), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5645), 2, + ACTIONS(5150), 1, + sym__terminator, + ACTIONS(5152), 1, + aux_sym_function_call_token1, + STATE(5713), 2, sym_comment, sym_include, - [291752] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294245] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2274), 1, + STATE(1996), 1, sym__block_terminator, - STATE(5646), 2, - sym_comment, - sym_include, - [291772] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(7986), 1, - sym_identifier, - ACTIONS(7988), 1, - anon_sym_STAR, - STATE(5647), 2, + STATE(5714), 2, sym_comment, sym_include, - [291792] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294265] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1683), 1, + STATE(1808), 1, sym__block_terminator, - STATE(5648), 2, + STATE(5715), 2, sym_comment, sym_include, - [291812] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294285] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2467), 1, - sym__namecolon, - STATE(1309), 1, - aux_sym_object_access_repeat1, - STATE(5649), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5878), 1, + sym_body, + STATE(5716), 2, sym_comment, sym_include, - [291832] = 6, - ACTIONS(3), 1, + [294305] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7990), 1, - sym_identifier, - STATE(4587), 1, - sym_qualified_name, - STATE(5650), 2, + ACTIONS(7409), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7411), 1, + aux_sym_on_quit_phrase_token1, + STATE(5717), 2, sym_comment, sym_include, - [291852] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294325] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6408), 1, - sym_body, - STATE(5651), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(1978), 1, + sym__block_terminator, + STATE(5718), 2, sym_comment, sym_include, - [291872] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294345] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1908), 1, - sym__block_terminator, - STATE(5652), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6525), 1, + sym_body, + STATE(5719), 2, sym_comment, sym_include, - [291892] = 6, + [294365] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8070), 1, sym_identifier, - ACTIONS(7994), 1, - anon_sym_COMMA, - STATE(5653), 2, + STATE(2862), 1, + sym_qualified_name, + STATE(5720), 2, sym_comment, sym_include, - [291912] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294385] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1670), 1, + STATE(1983), 1, sym__block_terminator, - STATE(5654), 2, + STATE(5721), 2, sym_comment, sym_include, - [291932] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294405] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1669), 1, - sym__block_terminator, - STATE(5655), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6545), 1, + sym_body, + STATE(5722), 2, sym_comment, sym_include, - [291952] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294425] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7996), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5656), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1745), 1, + sym__block_terminator, + STATE(5723), 2, sym_comment, sym_include, - [291970] = 6, - ACTIONS(67), 1, + [294445] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6471), 1, - sym_body, - STATE(5657), 2, + ACTIONS(8072), 1, + sym_identifier, + ACTIONS(8074), 1, + anon_sym_COMMA, + STATE(5724), 2, sym_comment, sym_include, - [291990] = 6, + [294465] = 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(8076), 1, sym_identifier, - ACTIONS(8000), 1, + ACTIONS(8078), 1, anon_sym_COMMA, - STATE(5658), 2, + STATE(5725), 2, sym_comment, sym_include, - [292010] = 6, + [294485] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8002), 1, + ACTIONS(8080), 1, sym_identifier, - ACTIONS(8004), 1, + ACTIONS(8082), 1, anon_sym_COMMA, - STATE(5659), 2, + STATE(5726), 2, sym_comment, sym_include, - [292030] = 6, + [294505] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8084), 1, sym_identifier, - ACTIONS(8008), 1, - anon_sym_COMMA, - STATE(5660), 2, + STATE(2745), 1, + sym_qualified_name, + STATE(5727), 2, sym_comment, sym_include, - [292050] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294525] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1665), 1, + STATE(2346), 1, sym__block_terminator, - STATE(5661), 2, + STATE(5728), 2, sym_comment, sym_include, - [292070] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294545] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - 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, - [292090] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8012), 2, + ACTIONS(8086), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5663), 2, + STATE(5729), 2, sym_comment, sym_include, - [292108] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294563] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8044), 1, aux_sym_scope_tuning_token1, - STATE(6346), 1, + STATE(6226), 1, sym_new_expression, - STATE(5664), 2, + STATE(5730), 2, sym_comment, sym_include, - [292128] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294583] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5790), 1, + STATE(6083), 1, sym_body, - STATE(5665), 2, + STATE(5731), 2, sym_comment, sym_include, - [292148] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294603] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2018), 1, - sym__block_terminator, - STATE(5666), 2, - sym_comment, - sym_include, - [292168] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8014), 1, - sym_identifier, - ACTIONS(8016), 1, - anon_sym_STAR, - STATE(5667), 2, + ACTIONS(8088), 1, + sym__terminator, + ACTIONS(8090), 1, + aux_sym_catch_statement_token1, + STATE(5732), 2, sym_comment, sym_include, - [292188] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294623] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(7970), 1, - aux_sym_scope_tuning_token1, - STATE(6252), 1, - sym_new_expression, - STATE(5668), 2, - sym_comment, - sym_include, - [292208] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(1655), 1, + STATE(1744), 1, sym__block_terminator, - STATE(5669), 2, + STATE(5733), 2, sym_comment, sym_include, - [292228] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294643] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2364), 1, - sym__block_terminator, - STATE(5670), 2, + ACTIONS(8092), 1, + anon_sym_DOT, + ACTIONS(8094), 1, + aux_sym__procedure_terminator_token1, + STATE(5734), 2, sym_comment, sym_include, - [292248] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294663] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6018), 1, - sym_body, - STATE(5671), 2, + ACTIONS(8096), 1, + sym__terminator, + ACTIONS(8098), 1, + aux_sym_catch_statement_token1, + STATE(5735), 2, sym_comment, sym_include, - [292268] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294683] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6496), 1, - sym_body, - STATE(5672), 2, + ACTIONS(8100), 1, + sym__terminator, + ACTIONS(8102), 1, + aux_sym_setter_token1, + STATE(5736), 2, sym_comment, sym_include, - [292288] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294703] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, - sym__namecolon, - STATE(5254), 1, - aux_sym_object_access_repeat1, - STATE(5673), 2, + ACTIONS(8104), 2, + anon_sym_COLON, + aux_sym_enum_tuning_token1, + STATE(5737), 2, sym_comment, sym_include, - [292308] = 6, + [294721] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8018), 1, - sym_identifier, - STATE(6371), 1, - sym_qualified_name, - STATE(5674), 2, + ACTIONS(7647), 1, + anon_sym_RPAREN, + ACTIONS(8106), 1, + anon_sym_, + STATE(5738), 2, sym_comment, sym_include, - [292328] = 6, + [294741] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8020), 1, + ACTIONS(8108), 1, sym_identifier, - STATE(4537), 1, + STATE(2715), 1, sym_qualified_name, - STATE(5675), 2, + STATE(5739), 2, sym_comment, sym_include, - [292348] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294761] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, - anon_sym_DOT, - ACTIONS(8024), 1, - aux_sym__procedure_terminator_token1, - STATE(5676), 2, + ACTIONS(7184), 1, + anon_sym_LPAREN, + STATE(2591), 1, + sym_function_arguments, + STATE(5740), 2, sym_comment, sym_include, - [292368] = 6, + [294781] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8026), 1, + ACTIONS(8110), 1, sym_identifier, - STATE(2636), 1, + STATE(6406), 1, sym_qualified_name, - STATE(5677), 2, - sym_comment, - sym_include, - [292388] = 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(1639), 1, - sym__block_terminator, - STATE(5678), 2, + STATE(5741), 2, sym_comment, sym_include, - [292408] = 6, + [294801] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8112), 1, sym_identifier, - STATE(6377), 1, + STATE(4641), 1, sym_qualified_name, - STATE(5679), 2, + STATE(5742), 2, sym_comment, sym_include, - [292428] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294821] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6884), 1, - anon_sym_LPAREN, - STATE(5482), 1, - sym_function_arguments, - STATE(5680), 2, - sym_comment, - sym_include, - [292448] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8030), 1, + ACTIONS(8114), 1, sym__terminator, - ACTIONS(8032), 1, - aux_sym_catch_statement_token1, - STATE(5681), 2, + ACTIONS(8116), 1, + aux_sym_getter_token1, + STATE(5743), 2, sym_comment, sym_include, - [292468] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294841] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7509), 2, + ACTIONS(3852), 1, anon_sym_COLON, - sym__terminator, - STATE(5682), 2, + STATE(6655), 1, + sym_body, + STATE(5744), 2, sym_comment, sym_include, - [292486] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294861] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(4639), 1, + STATE(2235), 1, sym__block_terminator, - STATE(5683), 2, + STATE(5745), 2, sym_comment, sym_include, - [292506] = 5, - ACTIONS(67), 1, + [294881] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6526), 2, - anon_sym_COLON, + ACTIONS(8118), 1, + sym_identifier, + ACTIONS(8120), 1, anon_sym_COMMA, - STATE(5684), 2, + STATE(5746), 2, sym_comment, sym_include, - [292524] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294901] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7478), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5685), 2, + ACTIONS(8122), 1, + sym__terminator, + ACTIONS(8124), 1, + aux_sym_class_type_token1, + STATE(5747), 2, sym_comment, sym_include, - [292542] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294921] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(8126), 2, aux_sym__block_terminator_token1, - STATE(4721), 1, - sym__block_terminator, - STATE(5686), 2, + aux_sym_variable_definition_token1, + STATE(5748), 2, sym_comment, sym_include, - [292562] = 6, + [294939] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8034), 1, + ACTIONS(8128), 1, sym_identifier, - STATE(2663), 1, - sym_qualified_name, - STATE(5687), 2, + ACTIONS(8130), 1, + sym__terminator, + STATE(5749), 2, sym_comment, sym_include, - [292582] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [294959] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1634), 1, + STATE(1988), 1, sym__block_terminator, - STATE(5688), 2, + STATE(5750), 2, sym_comment, sym_include, - [292602] = 6, - ACTIONS(3), 1, + [294979] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6692), 1, - anon_sym_COLON, - ACTIONS(8036), 1, - sym_identifier, - STATE(5689), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1740), 1, + sym__block_terminator, + STATE(5751), 2, sym_comment, sym_include, - [292622] = 6, - ACTIONS(3), 1, + [294999] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8038), 1, - sym_identifier, - STATE(3008), 1, - sym_qualified_name, - STATE(5690), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2066), 1, + sym__block_terminator, + STATE(5752), 2, sym_comment, sym_include, - [292642] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295019] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5843), 1, - sym_body, - STATE(5691), 2, - sym_comment, - sym_include, - [292662] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7345), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5692), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1726), 1, + sym__block_terminator, + STATE(5753), 2, sym_comment, sym_include, - [292680] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295039] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(1630), 1, + STATE(1716), 1, sym__block_terminator, - STATE(5693), 2, + STATE(5754), 2, sym_comment, sym_include, - [292700] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295059] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6888), 1, + ACTIONS(6843), 1, anon_sym_LPAREN, - STATE(2694), 1, + STATE(5505), 1, sym_function_arguments, - STATE(5694), 2, + STATE(5755), 2, sym_comment, sym_include, - [292720] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295079] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5837), 1, - sym_body, - STATE(5695), 2, + ACTIONS(8132), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(8134), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5756), 2, sym_comment, sym_include, - [292740] = 6, - ACTIONS(67), 1, + [295099] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8136), 1, + sym_identifier, + ACTIONS(8138), 1, + anon_sym_STAR, + STATE(5757), 2, + sym_comment, + sym_include, + [295119] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(6588), 1, + STATE(5750), 1, sym_body, - STATE(5696), 2, + STATE(5758), 2, sym_comment, sym_include, - [292760] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295139] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2131), 1, + STATE(1677), 1, sym__block_terminator, - STATE(5697), 2, + STATE(5759), 2, sym_comment, sym_include, - [292780] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295159] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1629), 1, + STATE(2203), 1, sym__block_terminator, - STATE(5698), 2, + STATE(5760), 2, sym_comment, sym_include, - [292800] = 6, - ACTIONS(3), 1, + [295179] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8040), 1, - sym_identifier, - ACTIONS(8042), 1, - anon_sym_STAR, - STATE(5699), 2, + ACTIONS(2481), 1, + sym__namecolon, + STATE(1294), 1, + aux_sym_object_access_repeat1, + STATE(5761), 2, sym_comment, sym_include, - [292820] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295199] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5830), 2, + ACTIONS(3852), 1, anon_sym_COLON, - anon_sym_COMMA, - STATE(5700), 2, + STATE(5721), 1, + sym_body, + STATE(5762), 2, sym_comment, sym_include, - [292838] = 6, - ACTIONS(67), 1, + [295219] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2736), 1, - sym__namecolon, - STATE(2436), 1, - aux_sym_object_access_repeat1, - STATE(5701), 2, + ACTIONS(8140), 1, + sym_identifier, + STATE(5638), 1, + sym_qualified_name, + STATE(5763), 2, sym_comment, sym_include, - [292858] = 6, - ACTIONS(67), 1, + [295239] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8044), 1, - sym__terminator, - ACTIONS(8046), 1, - aux_sym_destructor_definition_token1, - STATE(5702), 2, + ACTIONS(8142), 1, + sym_identifier, + STATE(5740), 1, + sym_qualified_name, + STATE(5764), 2, sym_comment, sym_include, - [292878] = 6, + [295259] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8048), 1, + ACTIONS(8144), 1, sym_identifier, - ACTIONS(8050), 1, - anon_sym_COMMA, - STATE(5703), 2, + ACTIONS(8146), 1, + sym__integer_literal, + STATE(5765), 2, sym_comment, sym_include, - [292898] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295279] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8052), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(8054), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(5704), 2, + ACTIONS(867), 1, + anon_sym_LPAREN, + STATE(1356), 1, + sym_function_arguments, + STATE(5766), 2, sym_comment, sym_include, - [292918] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295299] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4673), 1, - sym__block_terminator, - STATE(5705), 2, + ACTIONS(8148), 1, + sym__terminator, + ACTIONS(8150), 1, + aux_sym_class_type_token1, + STATE(5767), 2, sym_comment, sym_include, - [292938] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295319] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6148), 1, - sym_body, - STATE(5706), 2, + ACTIONS(8152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5768), 2, sym_comment, sym_include, - [292958] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295337] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2386), 1, - sym__block_terminator, - STATE(5707), 2, + ACTIONS(8154), 2, + anon_sym_COLON, + aux_sym_enum_tuning_token1, + STATE(5769), 2, sym_comment, sym_include, - [292978] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295355] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(6676), 1, anon_sym_LPAREN, - STATE(4061), 1, - sym_query_fields, - STATE(5708), 2, + STATE(6429), 1, + sym_function_parameters, + STATE(5770), 2, sym_comment, sym_include, - [292998] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295375] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4490), 1, - sym_query_fields, - STATE(5709), 2, + ACTIONS(110), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(5771), 2, sym_comment, sym_include, - [293018] = 6, + [295393] = 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(8156), 1, sym_identifier, - STATE(6414), 1, + STATE(5905), 1, sym_qualified_name, - STATE(5710), 2, + STATE(5772), 2, sym_comment, sym_include, - [293038] = 6, + [295413] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8058), 1, + ACTIONS(8158), 1, sym_identifier, - STATE(3290), 1, - sym_qualified_name, - STATE(5711), 2, + ACTIONS(8160), 1, + sym__integer_literal, + STATE(5773), 2, sym_comment, sym_include, - [293058] = 6, - ACTIONS(67), 1, + [295433] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1812), 1, - sym__block_terminator, - STATE(5712), 2, + ACTIONS(8162), 1, + sym_identifier, + STATE(6097), 1, + sym_qualified_name, + STATE(5774), 2, sym_comment, sym_include, - [293078] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295453] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2010), 1, - sym__block_terminator, - STATE(5713), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4236), 1, + sym_query_fields, + STATE(5775), 2, sym_comment, sym_include, - [293098] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295473] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1810), 1, - sym__block_terminator, - STATE(5714), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4312), 1, + sym_query_fields, + STATE(5776), 2, sym_comment, sym_include, - [293118] = 5, - ACTIONS(67), 1, + [295493] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(142), 2, - sym__terminator, - aux_sym_function_call_token1, - STATE(5715), 2, + ACTIONS(8164), 1, + sym_identifier, + STATE(6726), 1, + sym_qualified_name, + STATE(5777), 2, sym_comment, sym_include, - [293136] = 5, + [295513] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(108), 2, - sym__namedot, + ACTIONS(8166), 1, sym_identifier, - STATE(5716), 2, + STATE(133), 1, + sym_qualified_name, + STATE(5778), 2, sym_comment, sym_include, - [293154] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295533] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2285), 1, - sym__block_terminator, - STATE(5717), 2, + ACTIONS(4515), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5779), 2, sym_comment, sym_include, - [293174] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295551] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5779), 1, - sym_body, - STATE(5718), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1674), 1, + sym__block_terminator, + STATE(5780), 2, sym_comment, sym_include, - [293194] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295571] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8060), 1, - sym__terminator, - ACTIONS(8062), 1, - aux_sym_catch_statement_token1, - STATE(5719), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2123), 1, + sym__block_terminator, + STATE(5781), 2, sym_comment, sym_include, - [293214] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295591] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4420), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5720), 2, + ACTIONS(8168), 1, + aux_sym_primitive_type_token1, + ACTIONS(8170), 1, + aux_sym_event_definition_token2, + STATE(5782), 2, sym_comment, sym_include, - [293232] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295611] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2358), 1, + STATE(1672), 1, sym__block_terminator, - STATE(5721), 2, + STATE(5783), 2, sym_comment, sym_include, - [293252] = 6, - ACTIONS(3), 1, + [295631] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8064), 1, - sym_identifier, - STATE(2887), 1, - sym_qualified_name, - STATE(5722), 2, + ACTIONS(6676), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_function_parameters, + STATE(5784), 2, sym_comment, sym_include, - [293272] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295651] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4640), 1, - sym__block_terminator, - STATE(5723), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5576), 1, + sym_body, + STATE(5785), 2, sym_comment, sym_include, - [293292] = 6, - ACTIONS(67), 1, + [295671] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6974), 1, - anon_sym_LPAREN, - STATE(333), 1, - sym_function_arguments, - STATE(5724), 2, + ACTIONS(8172), 1, + sym_identifier, + ACTIONS(8174), 1, + sym__integer_literal, + STATE(5786), 2, sym_comment, sym_include, - [293312] = 6, + [295691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8066), 1, + ACTIONS(8176), 1, sym_identifier, - STATE(5559), 1, - sym_qualified_name, - STATE(5725), 2, + ACTIONS(8178), 1, + anon_sym_STAR, + STATE(5787), 2, sym_comment, sym_include, - [293332] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295711] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5113), 1, - sym__block_terminator, - STATE(5726), 2, + ACTIONS(140), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(5788), 2, sym_comment, sym_include, - [293352] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295729] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1807), 1, - sym__block_terminator, - STATE(5727), 2, + ACTIONS(929), 1, + sym__namecolon, + STATE(259), 1, + aux_sym_object_access_repeat1, + STATE(5789), 2, sym_comment, sym_include, - [293372] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295749] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2011), 1, - sym__block_terminator, - STATE(5728), 2, + ACTIONS(5823), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5790), 2, sym_comment, sym_include, - [293392] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295767] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4147), 1, - sym_query_fields, - STATE(5729), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6417), 1, + sym_body, + STATE(5791), 2, sym_comment, sym_include, - [293412] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295787] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4478), 1, - sym_query_fields, - STATE(5730), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6414), 1, + sym_body, + STATE(5792), 2, sym_comment, sym_include, - [293432] = 6, + [295807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8068), 1, + ACTIONS(8180), 1, sym_identifier, - STATE(5644), 1, + STATE(4552), 1, sym_qualified_name, - STATE(5731), 2, + STATE(5793), 2, sym_comment, sym_include, - [293452] = 6, + [295827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8070), 1, + ACTIONS(8182), 1, sym_identifier, - ACTIONS(8072), 1, - sym__integer_literal, - STATE(5732), 2, + STATE(5988), 1, + sym_qualified_name, + STATE(5794), 2, sym_comment, sym_include, - [293472] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295847] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2059), 1, - sym__block_terminator, - STATE(5733), 2, + ACTIONS(6763), 1, + sym__escaped_string, + STATE(3261), 1, + sym_string_literal, + STATE(5795), 2, sym_comment, sym_include, - [293492] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295867] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2019), 1, - sym__block_terminator, - STATE(5734), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4075), 1, + sym_query_fields, + STATE(5796), 2, sym_comment, sym_include, - [293512] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295887] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2020), 1, - sym__block_terminator, - STATE(5735), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4398), 1, + sym_query_fields, + STATE(5797), 2, sym_comment, sym_include, - [293532] = 6, - ACTIONS(3), 1, + [295907] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, - sym_identifier, - ACTIONS(8076), 1, - anon_sym_STAR, - STATE(5736), 2, + ACTIONS(6763), 1, + sym__escaped_string, + STATE(3072), 1, + sym_string_literal, + STATE(5798), 2, sym_comment, sym_include, - [293552] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295927] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2021), 1, - sym__block_terminator, - STATE(5737), 2, + ACTIONS(8184), 2, + anon_sym_COLON, + aux_sym_inherits_token1, + STATE(5799), 2, sym_comment, sym_include, - [293572] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [295945] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2750), 1, - sym__namecolon, - STATE(2454), 1, - aux_sym_object_access_repeat1, - STATE(5738), 2, + ACTIONS(8186), 2, + anon_sym_COLON, + aux_sym_inherits_token1, + STATE(5800), 2, sym_comment, sym_include, - [293592] = 6, - ACTIONS(67), 1, + [295963] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8078), 1, - sym__terminator, - ACTIONS(8080), 1, - aux_sym_catch_statement_token1, - STATE(5739), 2, + ACTIONS(8188), 1, + sym_identifier, + STATE(5385), 1, + sym_qualified_name, + STATE(5801), 2, sym_comment, sym_include, - [293612] = 6, - ACTIONS(67), 1, + [295983] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2024), 1, - sym__block_terminator, - STATE(5740), 2, + ACTIONS(8190), 1, + sym_identifier, + STATE(119), 1, + sym_qualified_name, + STATE(5802), 2, sym_comment, sym_include, - [293632] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296003] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2025), 1, - sym__block_terminator, - STATE(5741), 2, + ACTIONS(128), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(5803), 2, sym_comment, sym_include, - [293652] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296021] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(2027), 1, + STATE(2215), 1, sym__block_terminator, - STATE(5742), 2, + STATE(5804), 2, sym_comment, sym_include, - [293672] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296041] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2028), 1, - sym__block_terminator, - STATE(5743), 2, + ACTIONS(8192), 1, + sym__terminator, + ACTIONS(8194), 1, + aux_sym_getter_token1, + STATE(5805), 2, sym_comment, sym_include, - [293692] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296061] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2031), 1, - sym__block_terminator, - STATE(5744), 2, + ACTIONS(8196), 1, + sym__terminator, + ACTIONS(8198), 1, + aux_sym_interface_statement_token1, + STATE(5806), 2, sym_comment, sym_include, - [293712] = 6, - ACTIONS(67), 1, + [296081] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5751), 1, - sym_body, - STATE(5745), 2, + ACTIONS(8200), 1, + sym_identifier, + ACTIONS(8202), 1, + sym__integer_literal, + STATE(5807), 2, sym_comment, sym_include, - [293732] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296101] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4475), 1, - sym_query_fields, - STATE(5746), 2, + ACTIONS(5136), 1, + sym__terminator, + ACTIONS(5138), 1, + aux_sym_function_call_token1, + STATE(5808), 2, sym_comment, sym_include, - [293752] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296121] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1614), 1, + STATE(2027), 1, sym__block_terminator, - STATE(5747), 2, + STATE(5809), 2, + sym_comment, + sym_include, + [296141] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8204), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, + STATE(5810), 2, sym_comment, sym_include, - [293772] = 6, + [296159] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8082), 1, + ACTIONS(8206), 1, sym_identifier, - STATE(5694), 1, + STATE(5659), 1, sym_qualified_name, - STATE(5748), 2, + STATE(5811), 2, sym_comment, sym_include, - [293792] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296179] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2033), 1, - sym__block_terminator, - STATE(5749), 2, - sym_comment, - sym_include, - [293812] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2036), 1, - sym__block_terminator, - STATE(5750), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5559), 1, + sym_body, + STATE(5812), 2, sym_comment, sym_include, - [293832] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296199] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2040), 1, - sym__block_terminator, - STATE(5751), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4478), 1, + sym_query_fields, + STATE(5813), 2, sym_comment, sym_include, - [293852] = 6, + [296219] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8084), 1, + ACTIONS(8208), 1, sym_identifier, - ACTIONS(8086), 1, - sym__integer_literal, - STATE(5752), 2, + STATE(134), 1, + sym_qualified_name, + STATE(5814), 2, sym_comment, sym_include, - [293872] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296239] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1798), 1, + STATE(4858), 1, sym__block_terminator, - STATE(5753), 2, + STATE(5815), 2, sym_comment, sym_include, - [293892] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296259] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2041), 1, - sym__block_terminator, - STATE(5754), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4077), 1, + sym_query_fields, + STATE(5816), 2, sym_comment, sym_include, - [293912] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296279] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1609), 1, - sym__block_terminator, - STATE(5755), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4348), 1, + sym_query_fields, + STATE(5817), 2, sym_comment, sym_include, - [293932] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296299] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2044), 1, - sym__block_terminator, - STATE(5756), 2, + ACTIONS(4492), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5818), 2, sym_comment, sym_include, - [293952] = 6, + [296317] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8088), 1, + ACTIONS(8210), 1, sym_identifier, - STATE(5724), 1, - sym_qualified_name, - STATE(5757), 2, + ACTIONS(8212), 1, + sym__terminator, + STATE(5819), 2, sym_comment, sym_include, - [293972] = 6, - ACTIONS(67), 1, + [296337] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4465), 1, - sym_query_fields, - STATE(5758), 2, + ACTIONS(8214), 1, + sym_identifier, + ACTIONS(8216), 1, + sym__integer_literal, + STATE(5820), 2, sym_comment, sym_include, - [293992] = 6, - ACTIONS(67), 1, + [296357] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8090), 1, - sym__terminator, - ACTIONS(8092), 1, - aux_sym_finally_statement_token1, - STATE(5759), 2, + ACTIONS(8218), 1, + sym_identifier, + STATE(5523), 1, + sym_qualified_name, + STATE(5821), 2, sym_comment, sym_include, - [294012] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296377] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1794), 1, - sym__block_terminator, - STATE(5760), 2, + ACTIONS(4460), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5822), 2, sym_comment, sym_include, - [294032] = 6, + [296395] = 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(8220), 1, sym_identifier, - STATE(123), 1, + STATE(135), 1, sym_qualified_name, - STATE(5761), 2, + STATE(5823), 2, sym_comment, sym_include, - [294052] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296415] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2045), 1, + STATE(2196), 1, sym__block_terminator, - STATE(5762), 2, + STATE(5824), 2, sym_comment, sym_include, - [294072] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296435] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8096), 1, - sym__terminator, - ACTIONS(8098), 1, - aux_sym_method_definition_token1, - STATE(5763), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4540), 1, + sym_query_fields, + STATE(5825), 2, sym_comment, sym_include, - [294092] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296455] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(4662), 1, + STATE(1792), 1, sym__block_terminator, - STATE(5764), 2, + STATE(5826), 2, + sym_comment, + sym_include, + [296475] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8222), 1, + sym__terminator, + ACTIONS(8224), 1, + aux_sym_class_type_token1, + STATE(5827), 2, sym_comment, sym_include, - [294112] = 6, + [296495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8100), 1, + ACTIONS(8226), 1, sym_identifier, - ACTIONS(8102), 1, + ACTIONS(8228), 1, sym__integer_literal, - STATE(5765), 2, + STATE(5828), 2, sym_comment, sym_include, - [294132] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296515] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5914), 1, - sym_body, - STATE(5766), 2, + ACTIONS(8230), 1, + sym__terminator, + ACTIONS(8232), 1, + aux_sym_destructor_definition_token1, + STATE(5829), 2, sym_comment, sym_include, - [294152] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296535] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8104), 1, + ACTIONS(8234), 1, sym__terminator, - ACTIONS(8106), 1, - aux_sym_catch_statement_token1, - STATE(5767), 2, + ACTIONS(8236), 1, + aux_sym_prompt_for_statement_token2, + STATE(5830), 2, sym_comment, sym_include, - [294172] = 6, - ACTIONS(3), 1, + [296555] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8108), 1, - sym_identifier, - STATE(5803), 1, - sym_qualified_name, - STATE(5768), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1783), 1, + sym__block_terminator, + STATE(5831), 2, sym_comment, sym_include, - [294192] = 6, + [296575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8110), 1, + ACTIONS(121), 2, + sym__namedot, sym_identifier, - STATE(121), 1, - sym_qualified_name, - STATE(5769), 2, + STATE(5832), 2, sym_comment, sym_include, - [294212] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296593] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2049), 1, - sym__block_terminator, - STATE(5770), 2, + ACTIONS(8238), 1, + sym__escaped_string, + STATE(3660), 1, + sym_string_literal, + STATE(5833), 2, sym_comment, sym_include, - [294232] = 6, + [296613] = 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(8240), 1, sym_identifier, - ACTIONS(8114), 1, - sym__integer_literal, - STATE(5771), 2, + STATE(5552), 1, + sym_qualified_name, + STATE(5834), 2, sym_comment, sym_include, - [294252] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296633] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1792), 1, - sym__block_terminator, - STATE(5772), 2, - sym_comment, - sym_include, - [294272] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8116), 1, + ACTIONS(8242), 1, sym__terminator, - ACTIONS(8118), 1, - aux_sym_catch_statement_token1, - STATE(5773), 2, + ACTIONS(8244), 1, + aux_sym_function_call_token1, + STATE(5835), 2, sym_comment, sym_include, - [294292] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296653] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1594), 1, - sym__block_terminator, - STATE(5774), 2, + ACTIONS(8246), 1, + sym__terminator, + ACTIONS(8248), 1, + aux_sym_enum_definition_token1, + STATE(5836), 2, sym_comment, sym_include, - [294312] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296673] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1791), 1, - sym__block_terminator, - STATE(5775), 2, + ACTIONS(8250), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5837), 2, sym_comment, sym_include, - [294332] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296691] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1789), 1, + STATE(1802), 1, sym__block_terminator, - STATE(5776), 2, + STATE(5838), 2, sym_comment, sym_include, - [294352] = 6, + [296711] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8120), 1, + ACTIONS(8252), 1, sym_identifier, - STATE(5919), 1, + STATE(112), 1, sym_qualified_name, - STATE(5777), 2, + STATE(5839), 2, sym_comment, sym_include, - [294372] = 6, - ACTIONS(3), 1, + [296731] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8122), 1, - sym_identifier, - STATE(130), 1, - sym_qualified_name, - STATE(5778), 2, + ACTIONS(8254), 1, + sym__terminator, + ACTIONS(8256), 1, + aux_sym_class_type_token1, + STATE(5840), 2, sym_comment, sym_include, - [294392] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296751] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2054), 1, - sym__block_terminator, - STATE(5779), 2, + ACTIONS(8258), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5841), 2, sym_comment, sym_include, - [294412] = 6, - ACTIONS(67), 1, + [296769] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2412), 1, - sym__block_terminator, - STATE(5780), 2, + ACTIONS(8260), 1, + sym_identifier, + ACTIONS(8262), 1, + sym__integer_literal, + STATE(5842), 2, sym_comment, sym_include, - [294432] = 6, + [296789] = 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(8264), 1, sym_identifier, - ACTIONS(8126), 1, - sym__integer_literal, - STATE(5781), 2, + ACTIONS(8266), 1, + sym__terminator, + STATE(5843), 2, + sym_comment, + sym_include, + [296809] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2000), 1, + sym__block_terminator, + STATE(5844), 2, sym_comment, sym_include, - [294452] = 6, + [296829] = 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(8268), 1, sym_identifier, - STATE(5971), 1, + STATE(5766), 1, sym_qualified_name, - STATE(5782), 2, + STATE(5845), 2, sym_comment, sym_include, - [294472] = 6, + [296849] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8130), 1, + ACTIONS(8270), 1, sym_identifier, - STATE(115), 1, + STATE(117), 1, sym_qualified_name, - STATE(5783), 2, + STATE(5846), 2, sym_comment, sym_include, - [294492] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296869] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8132), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5784), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1771), 1, + sym__block_terminator, + STATE(5847), 2, sym_comment, sym_include, - [294510] = 6, + [296889] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8134), 1, + ACTIONS(8272), 2, sym_identifier, - STATE(5638), 1, - sym_qualified_name, - STATE(5785), 2, + aux_sym_run_tuning_token6, + STATE(5848), 2, sym_comment, sym_include, - [294530] = 6, - ACTIONS(67), 1, + [296907] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8044), 1, + aux_sym_scope_tuning_token1, + STATE(6288), 1, + sym_new_expression, + STATE(5849), 2, + sym_comment, + sym_include, + [296927] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1590), 1, + STATE(1769), 1, sym__block_terminator, - STATE(5786), 2, + STATE(5850), 2, sym_comment, sym_include, - [294550] = 6, + [296947] = 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(8274), 1, sym_identifier, - ACTIONS(8138), 1, - sym__integer_literal, - STATE(5787), 2, + ACTIONS(8276), 1, + anon_sym_STAR, + STATE(5851), 2, sym_comment, sym_include, - [294570] = 6, + [296967] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, + ACTIONS(8278), 1, sym_identifier, - STATE(5619), 1, + STATE(6015), 1, sym_qualified_name, - STATE(5788), 2, + STATE(5852), 2, sym_comment, sym_include, - [294590] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [296987] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6466), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5789), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1665), 1, + sym__block_terminator, + STATE(5853), 2, sym_comment, sym_include, - [294608] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297007] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2140), 1, + STATE(2141), 1, sym__block_terminator, - STATE(5790), 2, + STATE(5854), 2, sym_comment, sym_include, - [294628] = 6, - ACTIONS(67), 1, + [297027] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8280), 1, + sym_identifier, + STATE(5546), 1, + sym_qualified_name, + STATE(5855), 2, + sym_comment, + sym_include, + [297047] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7720), 1, - aux_sym_on_error_phrase_token1, - STATE(6592), 1, - sym_on_error_phrase, - STATE(5791), 2, + ACTIONS(8282), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5856), 2, sym_comment, sym_include, - [294648] = 6, + [297065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8142), 1, + ACTIONS(8284), 1, sym_identifier, - STATE(5373), 1, - sym_qualified_name, - STATE(5792), 2, + ACTIONS(8286), 1, + sym__integer_literal, + STATE(5857), 2, + sym_comment, + sym_include, + [297085] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7824), 1, + aux_sym_on_error_phrase_token1, + STATE(6811), 1, + sym_on_error_phrase, + STATE(5858), 2, sym_comment, sym_include, - [294668] = 6, + [297105] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8144), 1, + ACTIONS(8288), 1, sym_identifier, - STATE(6025), 1, + STATE(5478), 1, sym_qualified_name, - STATE(5793), 2, + STATE(5859), 2, sym_comment, sym_include, - [294688] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297125] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2060), 1, + STATE(2205), 1, sym__block_terminator, - STATE(5794), 2, - sym_comment, - sym_include, - [294708] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5779), 2, - sym__augmented_assignment, - anon_sym_EQ, - STATE(5795), 2, + STATE(5860), 2, sym_comment, sym_include, - [294726] = 6, + [297145] = 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(8290), 1, sym_identifier, - STATE(126), 1, + STATE(5897), 1, sym_qualified_name, - STATE(5796), 2, + STATE(5861), 2, sym_comment, sym_include, - [294746] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297165] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4725), 1, - sym__block_terminator, - STATE(5797), 2, + ACTIONS(5801), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5862), 2, sym_comment, sym_include, - [294766] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297183] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1587), 1, + STATE(2118), 1, sym__block_terminator, - STATE(5798), 2, + STATE(5863), 2, sym_comment, sym_include, - [294786] = 6, + [297203] = 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(8292), 1, sym_identifier, - ACTIONS(8150), 1, - anon_sym_COMMA, - STATE(5799), 2, + STATE(120), 1, + sym_qualified_name, + STATE(5864), 2, sym_comment, sym_include, - [294806] = 6, - ACTIONS(3), 1, + [297223] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8152), 1, - sym_identifier, - ACTIONS(8154), 1, - sym__integer_literal, - STATE(5800), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4868), 1, + sym__block_terminator, + STATE(5865), 2, sym_comment, sym_include, - [294826] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297243] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2296), 1, - sym__block_terminator, - STATE(5801), 2, + ACTIONS(8294), 1, + sym__terminator, + ACTIONS(8296), 1, + aux_sym_method_definition_token1, + STATE(5866), 2, sym_comment, sym_include, - [294846] = 6, + [297263] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8298), 1, sym_identifier, - STATE(6094), 1, - sym_qualified_name, - STATE(5802), 2, + ACTIONS(8300), 1, + sym__integer_literal, + STATE(5867), 2, sym_comment, sym_include, - [294866] = 6, - ACTIONS(67), 1, + [297283] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7071), 1, - anon_sym_LPAREN, - STATE(2522), 1, - sym_function_arguments, - STATE(5803), 2, + ACTIONS(8302), 1, + sym_identifier, + STATE(2761), 1, + sym_qualified_name, + STATE(5868), 2, sym_comment, sym_include, - [294886] = 6, + [297303] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8158), 1, + ACTIONS(8304), 1, sym_identifier, - STATE(4915), 1, + STATE(6026), 1, sym_qualified_name, - STATE(5804), 2, + STATE(5869), 2, sym_comment, sym_include, - [294906] = 6, + [297323] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8160), 1, + ACTIONS(8306), 1, sym_identifier, - STATE(133), 1, + STATE(111), 1, sym_qualified_name, - STATE(5805), 2, + STATE(5870), 2, + sym_comment, + sym_include, + [297343] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7620), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5871), 2, sym_comment, sym_include, - [294926] = 6, - ACTIONS(67), 1, + [297361] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8308), 1, + sym__terminator, + ACTIONS(8310), 1, + aux_sym_function_call_token1, + STATE(5872), 2, + sym_comment, + sym_include, + [297381] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8162), 1, + ACTIONS(8312), 1, sym__terminator, - ACTIONS(8164), 1, + ACTIONS(8314), 1, aux_sym_catch_statement_token1, - STATE(5806), 2, + STATE(5873), 2, sym_comment, sym_include, - [294946] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297401] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(8316), 2, aux_sym__block_terminator_token1, - STATE(4730), 1, - sym__block_terminator, - STATE(5807), 2, + aux_sym_variable_definition_token1, + STATE(5874), 2, sym_comment, sym_include, - [294966] = 6, - ACTIONS(67), 1, + [297419] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1784), 1, - sym__block_terminator, - STATE(5808), 2, + ACTIONS(8318), 1, + sym_identifier, + ACTIONS(8320), 1, + sym__integer_literal, + STATE(5875), 2, sym_comment, sym_include, - [294986] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297439] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5562), 1, + STATE(5636), 1, sym_body, - STATE(5809), 2, + STATE(5876), 2, sym_comment, sym_include, - [295006] = 6, - ACTIONS(67), 1, + [297459] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2051), 1, + sym__block_terminator, + STATE(5877), 2, + sym_comment, + sym_include, + [297479] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - STATE(2759), 1, - sym_string_literal, - STATE(5810), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2230), 1, + sym__block_terminator, + STATE(5878), 2, sym_comment, sym_include, - [295026] = 6, + [297499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8166), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8168), 1, - sym__integer_literal, - STATE(5811), 2, + STATE(6700), 1, + sym_qualified_name, + STATE(5879), 2, sym_comment, sym_include, - [295046] = 6, - ACTIONS(67), 1, + [297519] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2348), 1, - sym__block_terminator, - STATE(5812), 2, + ACTIONS(8324), 1, + sym_identifier, + STATE(6113), 1, + sym_qualified_name, + STATE(5880), 2, sym_comment, sym_include, - [295066] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297539] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8170), 1, - sym__terminator, - ACTIONS(8172), 1, - aux_sym_catch_statement_token1, - STATE(5813), 2, - sym_comment, - sym_include, - [295086] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, + ACTIONS(5888), 1, anon_sym_COLON, - STATE(5385), 1, + STATE(5452), 1, sym_case_body, - STATE(5814), 2, + STATE(5881), 2, sym_comment, sym_include, - [295106] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297559] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(4738), 1, + STATE(1660), 1, sym__block_terminator, - STATE(5815), 2, + STATE(5882), 2, sym_comment, sym_include, - [295126] = 6, + [297579] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8174), 1, + ACTIONS(8326), 1, sym_identifier, - STATE(3289), 1, + STATE(3295), 1, sym_qualified_name, - STATE(5816), 2, + STATE(5883), 2, sym_comment, sym_include, - [295146] = 6, - ACTIONS(3), 1, + [297599] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8176), 1, - sym_identifier, - STATE(6135), 1, - sym_qualified_name, - STATE(5817), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1657), 1, + sym__block_terminator, + STATE(5884), 2, sym_comment, sym_include, - [295166] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297619] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8178), 1, + ACTIONS(8328), 1, sym__terminator, - ACTIONS(8180), 1, - aux_sym_getter_token1, - STATE(5818), 2, + ACTIONS(8330), 1, + aux_sym_catch_statement_token1, + STATE(5885), 2, sym_comment, sym_include, - [295186] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297639] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8182), 1, - sym__terminator, - ACTIONS(8184), 1, - aux_sym_setter_token1, - STATE(5819), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6012), 1, + sym_body, + STATE(5886), 2, sym_comment, sym_include, - [295206] = 6, + [297659] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8186), 1, + ACTIONS(8332), 1, sym_identifier, - ACTIONS(8188), 1, + ACTIONS(8334), 1, sym__integer_literal, - STATE(5820), 2, + STATE(5887), 2, sym_comment, sym_include, - [295226] = 6, - ACTIONS(3), 1, + [297679] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8190), 1, - sym_identifier, - ACTIONS(8192), 1, - anon_sym_STAR, - STATE(5821), 2, + ACTIONS(8336), 1, + sym__terminator, + ACTIONS(8338), 1, + aux_sym_interface_statement_token1, + STATE(5888), 2, sym_comment, sym_include, - [295246] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297699] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, - sym__namecolon, - STATE(335), 1, - aux_sym_object_access_repeat1, - STATE(5822), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1654), 1, + sym__block_terminator, + STATE(5889), 2, sym_comment, sym_include, - [295266] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297719] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8340), 1, aux_sym_using_statement_token2, - ACTIONS(8196), 1, + ACTIONS(8342), 1, aux_sym_input_close_statement_token2, - STATE(5823), 2, + STATE(5890), 2, sym_comment, sym_include, - [295286] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297739] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8340), 1, aux_sym_using_statement_token2, - ACTIONS(8198), 1, + ACTIONS(8344), 1, aux_sym_input_close_statement_token2, - STATE(5824), 2, + STATE(5891), 2, sym_comment, sym_include, - [295306] = 6, + [297759] = 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(8346), 1, sym_identifier, - STATE(119), 1, - sym_qualified_name, - STATE(5825), 2, + ACTIONS(8348), 1, + sym__terminator, + STATE(5892), 2, sym_comment, sym_include, - [295326] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297779] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8202), 1, - sym__escaped_string, - STATE(3734), 1, - sym_string_literal, - STATE(5826), 2, + ACTIONS(4692), 1, + sym__namecolon, + STATE(5254), 1, + aux_sym_object_access_repeat1, + STATE(5893), 2, sym_comment, sym_include, - [295346] = 6, - ACTIONS(3), 1, + [297799] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8204), 1, - sym_identifier, - ACTIONS(8206), 1, - sym__integer_literal, - STATE(5827), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6579), 1, + sym_body, + STATE(5894), 2, sym_comment, sym_include, - [295366] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297819] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(4928), 1, + STATE(4887), 1, sym__block_terminator, - STATE(5828), 2, + STATE(5895), 2, sym_comment, sym_include, - [295386] = 6, - ACTIONS(3), 1, + [297839] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8208), 1, - sym_identifier, - STATE(6086), 1, - sym_qualified_name, - STATE(5829), 2, + ACTIONS(7441), 1, + sym__terminator, + ACTIONS(8350), 1, + aux_sym_setter_token1, + STATE(5896), 2, sym_comment, sym_include, - [295406] = 6, - ACTIONS(3), 1, + [297859] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8210), 1, - sym_identifier, - STATE(132), 1, - sym_qualified_name, - STATE(5830), 2, + ACTIONS(7014), 1, + anon_sym_LPAREN, + STATE(1168), 1, + sym_function_arguments, + STATE(5897), 2, sym_comment, sym_include, - [295426] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297879] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2079), 1, + STATE(2238), 1, sym__block_terminator, - STATE(5831), 2, + STATE(5898), 2, sym_comment, sym_include, - [295446] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297899] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8212), 1, + ACTIONS(8352), 1, aux_sym_input_close_statement_token2, - ACTIONS(8214), 1, + ACTIONS(8354), 1, aux_sym_output_stream_statement_token1, - STATE(5832), 2, + STATE(5899), 2, sym_comment, sym_include, - [295466] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297919] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8214), 1, + ACTIONS(8354), 1, aux_sym_output_stream_statement_token1, - ACTIONS(8216), 1, + ACTIONS(8356), 1, aux_sym_input_close_statement_token2, - STATE(5833), 2, + STATE(5900), 2, sym_comment, sym_include, - [295486] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297939] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8218), 1, + ACTIONS(8358), 1, anon_sym_COMMA, - ACTIONS(8220), 1, + ACTIONS(8360), 1, aux_sym_on_error_phrase_token3, - STATE(5834), 2, + STATE(5901), 2, sym_comment, sym_include, - [295506] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297959] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6960), 1, - sym__terminator, - ACTIONS(6962), 1, - aux_sym_using_statement_token2, - STATE(5835), 2, + ACTIONS(1123), 1, + sym__namecolon, + STATE(370), 1, + aux_sym_object_access_repeat1, + STATE(5902), 2, sym_comment, sym_include, - [295526] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297979] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8222), 2, + ACTIONS(8362), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(5836), 2, + STATE(5903), 2, sym_comment, sym_include, - [295544] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [297997] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2083), 1, - sym__block_terminator, - STATE(5837), 2, + ACTIONS(8364), 1, + sym__terminator, + ACTIONS(8366), 1, + aux_sym_getter_token1, + STATE(5904), 2, sym_comment, sym_include, - [295564] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298017] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4809), 1, - sym__block_terminator, - STATE(5838), 2, + ACTIONS(7184), 1, + anon_sym_LPAREN, + STATE(2717), 1, + sym_function_arguments, + STATE(5905), 2, sym_comment, sym_include, - [295584] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298037] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8224), 2, + ACTIONS(8368), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5839), 2, + STATE(5906), 2, sym_comment, sym_include, - [295602] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298055] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8044), 1, aux_sym_scope_tuning_token1, - STATE(6743), 1, + STATE(6510), 1, sym_new_expression, - STATE(5840), 2, + STATE(5907), 2, sym_comment, sym_include, - [295622] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298075] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5499), 1, + STATE(5826), 1, sym_body, - STATE(5841), 2, + STATE(5908), 2, sym_comment, sym_include, - [295642] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298095] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8226), 1, + ACTIONS(8370), 1, sym__terminator, - ACTIONS(8228), 1, - aux_sym_catch_statement_token1, - STATE(5842), 2, + ACTIONS(8372), 1, + aux_sym_interface_statement_token1, + STATE(5909), 2, sym_comment, sym_include, - [295662] = 6, - ACTIONS(67), 1, + [298115] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2088), 1, - sym__block_terminator, - STATE(5843), 2, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8376), 1, + anon_sym_STAR, + STATE(5910), 2, sym_comment, sym_include, - [295682] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298135] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8230), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5844), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1645), 1, + sym__block_terminator, + STATE(5911), 2, sym_comment, sym_include, - [295700] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298155] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1538), 1, - sym__block_terminator, - STATE(5845), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4349), 1, + sym_query_fields, + STATE(5912), 2, sym_comment, sym_include, - [295720] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298175] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5494), 1, + STATE(5831), 1, sym_body, - STATE(5846), 2, + STATE(5913), 2, sym_comment, sym_include, - [295740] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298195] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1783), 1, + STATE(1973), 1, sym__block_terminator, - STATE(5847), 2, + STATE(5914), 2, sym_comment, sym_include, - [295760] = 6, - ACTIONS(3), 1, + [298215] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8232), 1, - sym_identifier, - ACTIONS(8234), 1, - sym__integer_literal, - STATE(5848), 2, + ACTIONS(8378), 1, + sym__terminator, + ACTIONS(8380), 1, + aux_sym_prompt_for_statement_token2, + STATE(5915), 2, + sym_comment, + sym_include, + [298235] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8382), 1, + sym__terminator, + ACTIONS(8384), 1, + aux_sym_interface_statement_token1, + STATE(5916), 2, sym_comment, sym_include, - [295780] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298255] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1782), 1, - sym__block_terminator, - STATE(5849), 2, + ACTIONS(8386), 1, + aux_sym_getter_token1, + ACTIONS(8388), 1, + aux_sym_setter_token1, + STATE(5917), 2, sym_comment, sym_include, - [295800] = 6, + [298275] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8236), 1, + ACTIONS(8390), 1, sym_identifier, - STATE(135), 1, + STATE(130), 1, sym_qualified_name, - STATE(5850), 2, + STATE(5918), 2, sym_comment, sym_include, - [295820] = 6, - ACTIONS(67), 1, + [298295] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5124), 1, - sym__terminator, - ACTIONS(5126), 1, - aux_sym_function_call_token1, - STATE(5851), 2, + ACTIONS(8392), 1, + sym_identifier, + STATE(3300), 1, + sym_qualified_name, + STATE(5919), 2, sym_comment, sym_include, - [295840] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298315] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4413), 1, - sym_query_fields, - STATE(5852), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4894), 1, + sym__block_terminator, + STATE(5920), 2, sym_comment, sym_include, - [295860] = 6, + [298335] = 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(8394), 1, sym_identifier, - STATE(4590), 1, + STATE(4569), 1, sym_qualified_name, - STATE(5853), 2, + STATE(5921), 2, sym_comment, sym_include, - [295880] = 6, - ACTIONS(3), 1, + [298355] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, - sym_identifier, - STATE(2675), 1, - sym_qualified_name, - STATE(5854), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1638), 1, + sym__block_terminator, + STATE(5922), 2, sym_comment, sym_include, - [295900] = 6, + [298375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8242), 1, + ACTIONS(8396), 1, sym_identifier, - STATE(5962), 1, - sym_qualified_name, - STATE(5855), 2, + ACTIONS(8398), 1, + anon_sym_STAR, + STATE(5923), 2, sym_comment, sym_include, - [295920] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298395] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(4878), 1, + STATE(1938), 1, sym__block_terminator, - STATE(5856), 2, + STATE(5924), 2, sym_comment, sym_include, - [295940] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298415] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1779), 1, - sym__block_terminator, - STATE(5857), 2, + ACTIONS(2762), 1, + sym__namecolon, + STATE(2513), 1, + aux_sym_object_access_repeat1, + STATE(5925), 2, sym_comment, sym_include, - [295960] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298435] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2092), 1, - sym__block_terminator, - STATE(5858), 2, + ACTIONS(8400), 1, + sym__terminator, + ACTIONS(8402), 1, + aux_sym_function_call_token1, + STATE(5926), 2, sym_comment, sym_include, - [295980] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298455] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1775), 1, - sym__block_terminator, - STATE(5859), 2, + ACTIONS(8404), 1, + sym__terminator, + ACTIONS(8406), 1, + aux_sym_enum_definition_token1, + STATE(5927), 2, sym_comment, sym_include, - [296000] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298475] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4895), 1, - sym__block_terminator, - STATE(5860), 2, + ACTIONS(6676), 1, + anon_sym_LPAREN, + STATE(6230), 1, + sym_function_parameters, + STATE(5928), 2, sym_comment, sym_include, - [296020] = 6, - ACTIONS(67), 1, + [298495] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4120), 1, - sym_query_fields, - STATE(5861), 2, + ACTIONS(8408), 1, + sym_identifier, + ACTIONS(8410), 1, + anon_sym_STAR, + STATE(5929), 2, sym_comment, sym_include, - [296040] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298515] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1774), 1, - sym__block_terminator, - STATE(5862), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4358), 1, + sym_query_fields, + STATE(5930), 2, sym_comment, sym_include, - [296060] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298535] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1547), 1, - sym__block_terminator, - STATE(5863), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6183), 1, + sym_body, + STATE(5931), 2, sym_comment, sym_include, - [296080] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298555] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5116), 1, - sym__block_terminator, - STATE(5864), 2, + ACTIONS(8412), 1, + sym__terminator, + ACTIONS(8414), 1, + aux_sym_catch_statement_token1, + STATE(5932), 2, sym_comment, sym_include, - [296100] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298575] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2100), 1, + STATE(1633), 1, sym__block_terminator, - STATE(5865), 2, + STATE(5933), 2, sym_comment, sym_include, - [296120] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298595] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4964), 1, - sym__block_terminator, - STATE(5866), 2, + ACTIONS(871), 1, + sym__namecolon, + STATE(200), 1, + aux_sym_object_access_repeat1, + STATE(5934), 2, sym_comment, sym_include, - [296140] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298615] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4967), 1, - sym__block_terminator, - STATE(5867), 2, + ACTIONS(8416), 1, + sym__terminator, + ACTIONS(8418), 1, + aux_sym_constructor_definition_token1, + STATE(5935), 2, sym_comment, sym_include, - [296160] = 6, + [298635] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8244), 1, + ACTIONS(8420), 1, sym_identifier, - ACTIONS(8246), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - STATE(5868), 2, + STATE(5936), 2, sym_comment, sym_include, - [296180] = 6, + [298655] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8248), 1, + ACTIONS(8424), 1, sym_identifier, - ACTIONS(8250), 1, + ACTIONS(8426), 1, anon_sym_COMMA, - STATE(5869), 2, + STATE(5937), 2, sym_comment, sym_include, - [296200] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298675] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(5023), 1, + STATE(1628), 1, sym__block_terminator, - STATE(5870), 2, + STATE(5938), 2, sym_comment, sym_include, - [296220] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298695] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5049), 1, - sym__block_terminator, - STATE(5871), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6833), 1, + sym_body, + STATE(5939), 2, sym_comment, sym_include, - [296240] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298715] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8252), 2, + ACTIONS(8428), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5872), 2, + STATE(5940), 2, sym_comment, sym_include, - [296258] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298733] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8044), 1, aux_sym_scope_tuning_token1, - STATE(6635), 1, + STATE(6412), 1, sym_new_expression, - STATE(5873), 2, + STATE(5941), 2, sym_comment, sym_include, - [296278] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298753] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5591), 1, + STATE(5958), 1, sym_body, - STATE(5874), 2, + STATE(5942), 2, sym_comment, sym_include, - [296298] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298773] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8254), 1, + ACTIONS(128), 2, sym__terminator, - ACTIONS(8256), 1, - aux_sym_interface_statement_token1, - STATE(5875), 2, + aux_sym_function_call_token1, + STATE(5943), 2, sym_comment, sym_include, - [296318] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298791] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1771), 1, - sym__block_terminator, - STATE(5876), 2, + ACTIONS(8430), 1, + sym__terminator, + ACTIONS(8432), 1, + aux_sym_class_type_token1, + STATE(5944), 2, sym_comment, sym_include, - [296338] = 6, - ACTIONS(67), 1, + [298811] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1770), 1, - sym__block_terminator, - STATE(5877), 2, + ACTIONS(8434), 1, + sym_identifier, + ACTIONS(8436), 1, + sym__terminator, + STATE(5945), 2, sym_comment, sym_include, - [296358] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298831] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(5050), 1, + STATE(1626), 1, sym__block_terminator, - STATE(5878), 2, + STATE(5946), 2, sym_comment, sym_include, - [296378] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298851] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1769), 1, - sym__block_terminator, - STATE(5879), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4364), 1, + sym_query_fields, + STATE(5947), 2, sym_comment, sym_include, - [296398] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298871] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8258), 2, - sym__terminator, - aux_sym_output_stream_statement_token1, - STATE(5880), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4191), 1, + sym_query_fields, + STATE(5948), 2, sym_comment, sym_include, - [296416] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298891] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5721), 1, + STATE(6206), 1, sym_body, - STATE(5881), 2, + STATE(5949), 2, sym_comment, sym_include, - [296436] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298911] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1768), 1, + STATE(1934), 1, sym__block_terminator, - STATE(5882), 2, + STATE(5950), 2, sym_comment, sym_include, - [296456] = 6, + [298931] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8260), 1, + ACTIONS(8438), 1, sym_identifier, - STATE(6529), 1, - sym_qualified_name, - STATE(5883), 2, + ACTIONS(8440), 1, + anon_sym_RPAREN, + STATE(5951), 2, sym_comment, sym_include, - [296476] = 6, + [298951] = 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(8442), 1, sym_identifier, - STATE(4605), 1, + STATE(6379), 1, sym_qualified_name, - STATE(5884), 2, + STATE(5952), 2, sym_comment, sym_include, - [296496] = 6, - ACTIONS(67), 1, + [298971] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1767), 1, - sym__block_terminator, - STATE(5885), 2, + ACTIONS(8444), 1, + sym_identifier, + STATE(4618), 1, + sym_qualified_name, + STATE(5953), 2, sym_comment, sym_include, - [296516] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [298991] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5077), 1, - sym__block_terminator, - STATE(5886), 2, + ACTIONS(4548), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5954), 2, sym_comment, sym_include, - [296536] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299009] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1766), 1, + STATE(1995), 1, sym__block_terminator, - STATE(5887), 2, + STATE(5955), 2, sym_comment, sym_include, - [296556] = 6, - ACTIONS(3), 1, + [299029] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8264), 1, - sym_identifier, - STATE(4130), 1, - sym_qualified_name, - STATE(5888), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6142), 1, + sym_body, + STATE(5956), 2, sym_comment, sym_include, - [296576] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299049] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(1765), 1, + STATE(2095), 1, sym__block_terminator, - STATE(5889), 2, + STATE(5957), 2, sym_comment, sym_include, - [296596] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299069] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(5088), 1, + STATE(1760), 1, sym__block_terminator, - STATE(5890), 2, + STATE(5958), 2, sym_comment, sym_include, - [296616] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299089] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1764), 1, - sym__block_terminator, - STATE(5891), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4405), 1, + sym_query_fields, + STATE(5959), 2, sym_comment, sym_include, - [296636] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299109] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5093), 1, - sym__block_terminator, - STATE(5892), 2, + ACTIONS(8446), 1, + aux_sym_image_phrase_token7, + ACTIONS(8448), 1, + aux_sym_image_phrase_token9, + STATE(5960), 2, sym_comment, sym_include, - [296656] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299129] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8266), 1, - aux_sym_image_phrase_token7, - ACTIONS(8268), 1, - aux_sym_image_phrase_token9, - STATE(5893), 2, + ACTIONS(647), 1, + sym__terminator, + ACTIONS(8450), 1, + anon_sym_NO_DASHERROR, + STATE(5961), 2, sym_comment, sym_include, - [296676] = 5, - ACTIONS(67), 1, + [299149] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7105), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5894), 2, + ACTIONS(8452), 1, + sym_identifier, + ACTIONS(8454), 1, + sym__terminator, + STATE(5962), 2, sym_comment, sym_include, - [296694] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299169] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(5119), 1, + STATE(1509), 1, sym__block_terminator, - STATE(5895), 2, + STATE(5963), 2, sym_comment, sym_include, - [296714] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299189] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4424), 1, - sym_query_fields, - STATE(5896), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4912), 1, + sym__block_terminator, + STATE(5964), 2, sym_comment, sym_include, - [296734] = 6, + [299209] = 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(8456), 1, sym_identifier, - STATE(4623), 1, + STATE(5557), 1, sym_qualified_name, - STATE(5897), 2, + STATE(5965), 2, sym_comment, sym_include, - [296754] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299229] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1763), 1, + STATE(4914), 1, sym__block_terminator, - STATE(5898), 2, + STATE(5966), 2, sym_comment, sym_include, - [296774] = 6, - ACTIONS(67), 1, + [299249] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(4554), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5967), 2, + sym_comment, + sym_include, + [299267] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5727), 1, + STATE(6000), 1, sym_body, - STATE(5899), 2, + STATE(5968), 2, sym_comment, sym_include, - [296794] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299287] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5131), 1, - sym__block_terminator, - STATE(5900), 2, + ACTIONS(8458), 1, + sym__terminator, + ACTIONS(8460), 1, + aux_sym_enum_definition_token1, + STATE(5969), 2, sym_comment, sym_include, - [296814] = 6, - ACTIONS(67), 1, + [299307] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5878), 1, - anon_sym_LPAREN, - STATE(5473), 1, - sym_function_parameters, - STATE(5901), 2, + ACTIONS(8462), 1, + sym_identifier, + STATE(6240), 1, + sym_qualified_name, + STATE(5970), 2, sym_comment, sym_include, - [296834] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299327] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(5166), 1, - sym__block_terminator, - STATE(5902), 2, + ACTIONS(8464), 1, + sym__terminator, + ACTIONS(8466), 1, + aux_sym_prompt_for_statement_token2, + STATE(5971), 2, sym_comment, sym_include, - [296854] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299347] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5753), 1, + STATE(6003), 1, sym_body, - STATE(5903), 2, + STATE(5972), 2, sym_comment, sym_include, - [296874] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299367] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2425), 1, - sym__block_terminator, - STATE(5904), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4402), 1, + sym_query_fields, + STATE(5973), 2, sym_comment, sym_include, - [296894] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299387] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8272), 1, - aux_sym_getter_token1, - ACTIONS(8274), 1, - aux_sym_setter_token1, - STATE(5905), 2, + ACTIONS(4494), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5974), 2, sym_comment, sym_include, - [296914] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299405] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1762), 1, - sym__block_terminator, - STATE(5906), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4180), 1, + sym_query_fields, + STATE(5975), 2, sym_comment, sym_include, - [296934] = 6, - ACTIONS(67), 1, + [299425] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8468), 1, + anon_sym_DOT, + ACTIONS(8470), 1, + aux_sym__procedure_terminator_token1, + STATE(5976), 2, + sym_comment, + sym_include, + [299445] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2124), 1, + STATE(2174), 1, sym__block_terminator, - STATE(5907), 2, + STATE(5977), 2, sym_comment, sym_include, - [296954] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299465] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8276), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5908), 2, + ACTIONS(8472), 1, + sym__terminator, + ACTIONS(8474), 1, + aux_sym_enum_definition_token1, + STATE(5978), 2, sym_comment, sym_include, - [296972] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299485] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1554), 1, + STATE(1749), 1, sym__block_terminator, - STATE(5909), 2, + STATE(5979), 2, sym_comment, sym_include, - [296992] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299505] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4431), 1, - sym_query_fields, - STATE(5910), 2, + ACTIONS(8476), 1, + sym__terminator, + ACTIONS(8478), 1, + aux_sym_interface_statement_token1, + STATE(5980), 2, sym_comment, sym_include, - [297012] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299525] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2363), 1, + STATE(1519), 1, sym__block_terminator, - STATE(5911), 2, + STATE(5981), 2, sym_comment, sym_include, - [297032] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299545] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5860), 1, - sym_body, - STATE(5912), 2, - sym_comment, - sym_include, - [297052] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, - sym__namecolon, - STATE(2199), 1, - aux_sym_object_access_repeat1, - STATE(5913), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2087), 1, + sym__block_terminator, + STATE(5982), 2, sym_comment, sym_include, - [297072] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299565] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2218), 1, + STATE(2168), 1, sym__block_terminator, - STATE(5914), 2, + STATE(5983), 2, sym_comment, sym_include, - [297092] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299585] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4177), 1, + STATE(4233), 1, sym_query_fields, - STATE(5915), 2, + STATE(5984), 2, sym_comment, sym_include, - [297112] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299605] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4315), 1, + STATE(4314), 1, sym_query_fields, - STATE(5916), 2, + STATE(5985), 2, sym_comment, sym_include, - [297132] = 6, + [299625] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8278), 1, + ACTIONS(8480), 1, sym_identifier, - STATE(6446), 1, + STATE(6343), 1, sym_qualified_name, - STATE(5917), 2, + STATE(5986), 2, sym_comment, sym_include, - [297152] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299645] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, - aux_sym__block_terminator_token1, - STATE(1761), 1, - sym__block_terminator, - STATE(5918), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6122), 1, + sym_body, + STATE(5987), 2, sym_comment, sym_include, - [297172] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299665] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7202), 1, anon_sym_LPAREN, - STATE(2437), 1, + STATE(2533), 1, sym_function_arguments, - STATE(5919), 2, + STATE(5988), 2, sym_comment, sym_include, - [297192] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299685] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(6473), 1, - sym_function_parameters, - STATE(5920), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6110), 1, + sym_body, + STATE(5989), 2, sym_comment, sym_include, - [297212] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299705] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8280), 1, - sym__terminator, - ACTIONS(8282), 1, - aux_sym_prompt_for_statement_token2, - STATE(5921), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4924), 1, + sym__block_terminator, + STATE(5990), 2, sym_comment, sym_include, - [297232] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299725] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(4541), 2, anon_sym_COLON, - STATE(6253), 1, - sym_body, - STATE(5922), 2, + anon_sym_COMMA, + STATE(5991), 2, sym_comment, sym_include, - [297252] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299743] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6784), 1, - sym_body, - STATE(5923), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2061), 1, + sym__block_terminator, + STATE(5992), 2, sym_comment, sym_include, - [297272] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299763] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(2361), 1, + STATE(1737), 1, sym__block_terminator, - STATE(5924), 2, + STATE(5993), 2, sym_comment, sym_include, - [297292] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299783] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5776), 1, + STATE(6037), 1, sym_body, - STATE(5925), 2, - sym_comment, - sym_include, - [297312] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(8284), 1, - sym_identifier, - STATE(6013), 1, - sym_qualified_name, - STATE(5926), 2, + STATE(5994), 2, sym_comment, sym_include, - [297332] = 6, - ACTIONS(3), 1, + [299803] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8286), 1, - sym_identifier, - ACTIONS(8288), 1, - anon_sym_STAR, - STATE(5927), 2, + ACTIONS(140), 2, + sym__terminator, + aux_sym_function_call_token1, + STATE(5995), 2, sym_comment, sym_include, - [297352] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299821] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4443), 1, + STATE(4531), 1, sym_query_fields, - STATE(5928), 2, + STATE(5996), 2, sym_comment, sym_include, - [297372] = 6, - ACTIONS(67), 1, + [299841] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2726), 1, - sym__namecolon, - STATE(2486), 1, - aux_sym_object_access_repeat1, - STATE(5929), 2, + ACTIONS(8482), 1, + sym_identifier, + STATE(4589), 1, + sym_qualified_name, + STATE(5997), 2, sym_comment, sym_include, - [297392] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299861] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, - sym__terminator, - ACTIONS(8292), 1, - aux_sym_interface_statement_token1, - STATE(5930), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1735), 1, + sym__block_terminator, + STATE(5998), 2, sym_comment, sym_include, - [297412] = 6, + [299881] = 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(8484), 1, sym_identifier, - STATE(116), 1, + STATE(6308), 1, sym_qualified_name, - STATE(5931), 2, + STATE(5999), 2, sym_comment, sym_include, - [297432] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299901] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4248), 1, - sym_query_fields, - STATE(5932), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1732), 1, + sym__block_terminator, + STATE(6000), 2, sym_comment, sym_include, - [297452] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299921] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4351), 1, - sym_query_fields, - STATE(5933), 2, + ACTIONS(8486), 1, + sym__terminator, + ACTIONS(8488), 1, + aux_sym_catch_statement_token1, + STATE(6001), 2, sym_comment, sym_include, - [297472] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [299941] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(5439), 1, - sym_function_parameters, - STATE(5934), 2, + ACTIONS(8490), 1, + sym__terminator, + ACTIONS(8492), 1, + aux_sym_interface_statement_token1, + STATE(6002), 2, sym_comment, sym_include, - [297492] = 5, - ACTIONS(67), 1, + [299961] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1727), 1, + sym__block_terminator, + STATE(6003), 2, + sym_comment, + sym_include, + [299981] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7273), 2, + ACTIONS(3852), 1, anon_sym_COLON, - sym__terminator, - STATE(5935), 2, + STATE(5990), 1, + sym_body, + STATE(6004), 2, sym_comment, sym_include, - [297510] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300001] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4201), 1, + STATE(4257), 1, sym_query_fields, - STATE(5936), 2, + STATE(6005), 2, sym_comment, sym_include, - [297530] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300021] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4302), 1, + STATE(4283), 1, sym_query_fields, - STATE(5937), 2, + STATE(6006), 2, sym_comment, sym_include, - [297550] = 6, - ACTIONS(3), 1, + [300041] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6460), 1, - anon_sym_COLON, - ACTIONS(8296), 1, - sym_identifier, - STATE(5938), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1721), 1, + sym__block_terminator, + STATE(6007), 2, sym_comment, sym_include, - [297570] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300061] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1556), 1, - sym__block_terminator, - STATE(5939), 2, + ACTIONS(8044), 1, + aux_sym_scope_tuning_token1, + STATE(6374), 1, + sym_new_expression, + STATE(6008), 2, sym_comment, sym_include, - [297590] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300081] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2153), 1, - sym__block_terminator, - STATE(5940), 2, + ACTIONS(8494), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(6009), 2, sym_comment, sym_include, - [297610] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300099] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4534), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5941), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1526), 1, + sym__block_terminator, + STATE(6010), 2, sym_comment, sym_include, - [297628] = 5, - ACTIONS(67), 1, + [300119] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4488), 2, - anon_sym_COLON, + ACTIONS(8496), 1, + sym_identifier, + ACTIONS(8498), 1, anon_sym_COMMA, - STATE(5942), 2, + STATE(6011), 2, sym_comment, sym_include, - [297646] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300139] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8298), 1, - sym__terminator, - ACTIONS(8300), 1, - aux_sym_class_type_token1, - STATE(5943), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2057), 1, + sym__block_terminator, + STATE(6012), 2, sym_comment, sym_include, - [297666] = 6, - ACTIONS(67), 1, + [300159] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5807), 1, - sym_body, - STATE(5944), 2, + ACTIONS(8500), 1, + sym_identifier, + ACTIONS(8502), 1, + anon_sym_COMMA, + STATE(6013), 2, sym_comment, sym_include, - [297686] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300179] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_DOT, - ACTIONS(8304), 1, - aux_sym__procedure_terminator_token1, - STATE(5945), 2, + ACTIONS(8504), 1, + sym__terminator, + ACTIONS(8506), 1, + aux_sym_enum_definition_token1, + STATE(6014), 2, sym_comment, sym_include, - [297706] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300199] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8306), 1, - sym__terminator, - ACTIONS(8308), 1, - aux_sym_class_type_token1, - STATE(5946), 2, + ACTIONS(7192), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_function_arguments, + STATE(6015), 2, sym_comment, sym_include, - [297726] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300219] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2160), 1, + STATE(1528), 1, sym__block_terminator, - STATE(5947), 2, + STATE(6016), 2, sym_comment, sym_include, - [297746] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300239] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8310), 1, - aux_sym_primitive_type_token1, - ACTIONS(8312), 1, - aux_sym_event_definition_token2, - STATE(5948), 2, + ACTIONS(6797), 1, + sym__terminator, + ACTIONS(6799), 1, + aux_sym_using_statement_token2, + STATE(6017), 2, sym_comment, sym_include, - [297766] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300259] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(2690), 1, - sym__namecolon, - STATE(2423), 1, - aux_sym_object_access_repeat1, - STATE(5949), 2, + ACTIONS(8468), 1, + anon_sym_DOT, + ACTIONS(8508), 1, + aux_sym__function_terminator_token1, + STATE(6018), 2, sym_comment, sym_include, - [297786] = 6, - ACTIONS(3), 1, + [300279] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8314), 1, - sym_identifier, - ACTIONS(8316), 1, - anon_sym_STAR, - STATE(5950), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2237), 1, + sym__block_terminator, + STATE(6019), 2, sym_comment, sym_include, - [297806] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300299] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1441), 1, - sym__namecolon, - STATE(1051), 1, - aux_sym_object_access_repeat1, - STATE(5951), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6112), 1, + sym_body, + STATE(6020), 2, sym_comment, sym_include, - [297826] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300319] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5859), 1, + STATE(6050), 1, sym_body, - STATE(5952), 2, + STATE(6021), 2, sym_comment, sym_include, - [297846] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300339] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4295), 1, + STATE(4462), 1, sym_query_fields, - STATE(5953), 2, + STATE(6022), 2, sym_comment, sym_include, - [297866] = 6, - ACTIONS(3), 1, + [300359] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8318), 1, - sym_identifier, - STATE(6425), 1, - sym_qualified_name, - STATE(5954), 2, + ACTIONS(8510), 1, + sym__terminator, + ACTIONS(8512), 1, + aux_sym_enum_definition_token1, + STATE(6023), 2, + sym_comment, + sym_include, + [300379] = 6, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4939), 1, + sym__block_terminator, + STATE(6024), 2, sym_comment, sym_include, - [297886] = 6, + [300399] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8320), 1, + ACTIONS(8514), 1, sym_identifier, - ACTIONS(8322), 1, - anon_sym_STAR, - STATE(5955), 2, + ACTIONS(8516), 1, + anon_sym_COMMA, + STATE(6025), 2, sym_comment, sym_include, - [297906] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300419] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, - anon_sym_DOT, - ACTIONS(8324), 1, - aux_sym__function_terminator_token1, - STATE(5956), 2, + ACTIONS(6982), 1, + anon_sym_LPAREN, + STATE(2596), 1, + sym_function_arguments, + STATE(6026), 2, sym_comment, sym_include, - [297926] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300439] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4472), 1, - sym_query_fields, - STATE(5957), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2032), 1, + sym__block_terminator, + STATE(6027), 2, sym_comment, sym_include, - [297946] = 6, - ACTIONS(67), 1, + [300459] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1719), 1, + sym__block_terminator, + STATE(6028), 2, + sym_comment, + sym_include, + [300479] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4150), 1, - sym_query_fields, - STATE(5958), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5728), 1, + sym_body, + STATE(6029), 2, sym_comment, sym_include, - [297966] = 6, + [300499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8326), 1, + ACTIONS(8518), 1, sym_identifier, - STATE(6651), 1, + STATE(4557), 1, sym_qualified_name, - STATE(5959), 2, + STATE(6030), 2, sym_comment, sym_include, - [297986] = 6, - ACTIONS(67), 1, + [300519] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8328), 1, - sym__terminator, - ACTIONS(8330), 1, - aux_sym_class_type_token1, - STATE(5960), 2, + ACTIONS(8520), 1, + sym_identifier, + ACTIONS(8522), 1, + anon_sym_STAR, + STATE(6031), 2, sym_comment, sym_include, - [298006] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300539] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(8524), 1, sym__terminator, - ACTIONS(8334), 1, + ACTIONS(8526), 1, aux_sym_class_type_token1, - STATE(5961), 2, + STATE(6032), 2, sym_comment, sym_include, - [298026] = 6, - ACTIONS(67), 1, + [300559] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(2667), 1, + sym__namecolon, + STATE(2388), 1, + aux_sym_object_access_repeat1, + STATE(6033), 2, + sym_comment, + sym_include, + [300579] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(1444), 1, - sym_function_arguments, - STATE(5962), 2, + STATE(4275), 1, + sym_query_fields, + STATE(6034), 2, sym_comment, sym_include, - [298046] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300599] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(2077), 1, + STATE(2229), 1, sym__block_terminator, - STATE(5963), 2, + STATE(6035), 2, sym_comment, sym_include, - [298066] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300619] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_DOT, - ACTIONS(8338), 1, - aux_sym__case_terminator_token1, - STATE(5964), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1718), 1, + sym__block_terminator, + STATE(6036), 2, sym_comment, sym_include, - [298086] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300639] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4285), 1, - sym_query_fields, - STATE(5965), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1714), 1, + sym__block_terminator, + STATE(6037), 2, sym_comment, sym_include, - [298106] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300659] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7619), 1, + ACTIONS(8528), 1, sym__terminator, - ACTIONS(8340), 1, - aux_sym_setter_token1, - STATE(5966), 2, + ACTIONS(8530), 1, + aux_sym_enum_definition_token1, + STATE(6038), 2, sym_comment, sym_include, - [298126] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300679] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8342), 1, + ACTIONS(8532), 1, sym__terminator, - ACTIONS(8344), 1, - aux_sym_constructor_definition_token1, - STATE(5967), 2, + ACTIONS(8534), 1, + aux_sym_catch_statement_token1, + STATE(6039), 2, sym_comment, sym_include, - [298146] = 6, - ACTIONS(67), 1, + [300699] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5723), 1, - sym_body, - STATE(5968), 2, + ACTIONS(8536), 1, + sym_identifier, + STATE(129), 1, + sym_qualified_name, + STATE(6040), 2, sym_comment, sym_include, - [298166] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300719] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8346), 1, - sym__terminator, - ACTIONS(8348), 1, - aux_sym_function_call_token1, - STATE(5969), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5920), 1, + sym_body, + STATE(6041), 2, sym_comment, sym_include, - [298186] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300739] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, - aux_sym__block_terminator_token1, - STATE(4723), 1, - sym__block_terminator, - STATE(5970), 2, + ACTIONS(8468), 1, + anon_sym_DOT, + ACTIONS(8538), 1, + aux_sym__case_terminator_token1, + STATE(6042), 2, sym_comment, sym_include, - [298206] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300759] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7149), 1, - anon_sym_LPAREN, - STATE(1066), 1, - sym_function_arguments, - STATE(5971), 2, + ACTIONS(8540), 1, + sym__terminator, + ACTIONS(8542), 1, + aux_sym_class_type_token1, + STATE(6043), 2, sym_comment, sym_include, - [298226] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300779] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6431), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5972), 2, + ACTIONS(8092), 1, + anon_sym_DOT, + ACTIONS(8544), 1, + aux_sym__function_terminator_token1, + STATE(6044), 2, sym_comment, sym_include, - [298244] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300799] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(2187), 1, + STATE(1707), 1, sym__block_terminator, - STATE(5973), 2, + STATE(6045), 2, sym_comment, sym_include, - [298264] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300819] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8350), 1, - sym__terminator, - ACTIONS(8352), 1, - aux_sym_prompt_for_statement_token2, - STATE(5974), 2, - sym_comment, - sym_include, - [298284] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(8354), 2, - sym_identifier, - aux_sym_run_tuning_token6, - STATE(5975), 2, - sym_comment, - sym_include, - [298302] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5705), 1, + STATE(5895), 1, sym_body, - STATE(5976), 2, + STATE(6046), 2, sym_comment, sym_include, - [298322] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300839] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(1992), 1, + STATE(1706), 1, sym__block_terminator, - STATE(5977), 2, + STATE(6047), 2, sym_comment, sym_include, - [298342] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300859] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6762), 1, - sym_body, - STATE(5978), 2, + ACTIONS(8044), 1, + aux_sym_scope_tuning_token1, + STATE(6452), 1, + sym_new_expression, + STATE(6048), 2, sym_comment, sym_include, - [298362] = 6, - ACTIONS(3), 1, + [300879] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8356), 1, - sym_identifier, - ACTIONS(8358), 1, - anon_sym_STAR, - STATE(5979), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1703), 1, + sym__block_terminator, + STATE(6049), 2, sym_comment, sym_include, - [298382] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300899] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(2198), 1, + STATE(1698), 1, sym__block_terminator, - STATE(5980), 2, + STATE(6050), 2, sym_comment, sym_include, - [298402] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300919] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(2420), 1, + STATE(1708), 1, sym__block_terminator, - STATE(5981), 2, + STATE(6051), 2, sym_comment, sym_include, - [298422] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300939] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8360), 1, + ACTIONS(8546), 1, sym__terminator, - ACTIONS(8362), 1, - aux_sym_function_call_token1, - STATE(5982), 2, + ACTIONS(8548), 1, + aux_sym_interface_statement_token1, + STATE(6052), 2, sym_comment, sym_include, - [298442] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300959] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, - anon_sym_DOT, - ACTIONS(8364), 1, - aux_sym__case_terminator_token1, - STATE(5983), 2, + ACTIONS(8550), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(6053), 2, sym_comment, sym_include, - [298462] = 6, - ACTIONS(3), 1, + [300977] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8366), 1, - sym_identifier, - STATE(4538), 1, - sym_qualified_name, - STATE(5984), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1694), 1, + sym__block_terminator, + STATE(6054), 2, sym_comment, sym_include, - [298482] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [300997] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7145), 1, - anon_sym_LPAREN, - STATE(2516), 1, - sym_function_arguments, - STATE(5985), 2, + ACTIONS(8552), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, + STATE(6055), 2, sym_comment, sym_include, - [298502] = 6, - ACTIONS(3), 1, + [301015] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8368), 1, - sym_identifier, - STATE(6532), 1, - sym_qualified_name, - STATE(5986), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1693), 1, + sym__block_terminator, + STATE(6056), 2, sym_comment, sym_include, - [298522] = 6, - ACTIONS(3), 1, + [301035] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8370), 1, - sym_identifier, - STATE(4617), 1, - sym_qualified_name, - STATE(5987), 2, + ACTIONS(8554), 1, + aux_sym_input_close_statement_token2, + ACTIONS(8556), 1, + aux_sym_output_stream_statement_token1, + STATE(6057), 2, sym_comment, sym_include, - [298542] = 6, + [301055] = 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(8558), 1, sym_identifier, - ACTIONS(8374), 1, - anon_sym_RPAREN, - STATE(5988), 2, + ACTIONS(8560), 1, + anon_sym_STAR, + STATE(6058), 2, sym_comment, sym_include, - [298562] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301075] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_DOT, - ACTIONS(8376), 1, - aux_sym__function_terminator_token1, - STATE(5989), 2, - sym_comment, - sym_include, - [298582] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7139), 1, - sym__terminator, - ACTIONS(7141), 1, - aux_sym_using_statement_token2, - STATE(5990), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1691), 1, + sym__block_terminator, + STATE(6059), 2, sym_comment, sym_include, - [298602] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301095] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5166), 1, aux_sym__block_terminator_token1, - STATE(2427), 1, + STATE(1690), 1, sym__block_terminator, - STATE(5991), 2, + STATE(6060), 2, sym_comment, sym_include, - [298622] = 6, + [301115] = 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(8562), 1, sym_identifier, - STATE(5985), 1, + STATE(6153), 1, sym_qualified_name, - STATE(5992), 2, + STATE(6061), 2, sym_comment, sym_include, - [298642] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301135] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1706), 1, - sym__block_terminator, - STATE(5993), 2, + ACTIONS(8564), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(6062), 2, sym_comment, sym_include, - [298662] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301153] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5563), 1, - sym_body, - STATE(5994), 2, + ACTIONS(8556), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(8566), 1, + aux_sym_input_close_statement_token2, + STATE(6063), 2, sym_comment, sym_include, - [298682] = 6, + [301173] = 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(8568), 1, sym_identifier, - STATE(5990), 1, + STATE(6155), 1, sym_qualified_name, - STATE(5995), 2, + STATE(6064), 2, sym_comment, sym_include, - [298702] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301193] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1573), 1, - sym__block_terminator, - STATE(5996), 2, + ACTIONS(8570), 1, + aux_sym_using_statement_token2, + ACTIONS(8572), 1, + aux_sym_input_close_statement_token2, + STATE(6065), 2, sym_comment, sym_include, - [298722] = 6, - ACTIONS(3), 1, + [301213] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8382), 1, - sym_identifier, - ACTIONS(8384), 1, - sym__terminator, - STATE(5997), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6445), 1, + sym_body, + STATE(6066), 2, sym_comment, sym_include, - [298742] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301233] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7720), 1, + ACTIONS(7824), 1, aux_sym_on_error_phrase_token1, - STATE(6251), 1, + STATE(6219), 1, sym_on_error_phrase, - STATE(5998), 2, + STATE(6067), 2, sym_comment, sym_include, - [298762] = 6, + [301253] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8386), 1, + ACTIONS(8574), 1, sym_identifier, - STATE(5205), 1, + STATE(5345), 1, sym_qualified_name, - STATE(5999), 2, + STATE(6068), 2, sym_comment, sym_include, - [298782] = 6, - ACTIONS(3), 1, + [301273] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8388), 1, - sym_identifier, - STATE(3268), 1, - sym_qualified_name, - STATE(6000), 2, + ACTIONS(8570), 1, + aux_sym_using_statement_token2, + ACTIONS(8576), 1, + aux_sym_input_close_statement_token2, + STATE(6069), 2, sym_comment, sym_include, - [298802] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301293] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5589), 1, - sym_body, - STATE(6001), 2, + ACTIONS(8578), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6070), 2, sym_comment, sym_include, - [298822] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301311] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5075), 2, + ACTIONS(5122), 2, sym__augmented_assignment, anon_sym_EQ, - STATE(6002), 2, + STATE(6071), 2, sym_comment, sym_include, - [298840] = 5, - ACTIONS(67), 1, + [301329] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(8580), 1, + sym_identifier, + ACTIONS(8582), 1, sym__terminator, - aux_sym_function_call_token1, - STATE(6003), 2, + STATE(6072), 2, sym_comment, sym_include, - [298858] = 6, - ACTIONS(67), 1, + [301349] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, - aux_sym_scope_tuning_token1, - STATE(6611), 1, - sym_new_expression, - STATE(6004), 2, + ACTIONS(8584), 1, + sym_identifier, + ACTIONS(8586), 1, + sym__integer_literal, + STATE(6073), 2, sym_comment, sym_include, - [298878] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301369] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8390), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(6005), 2, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(5354), 1, + sym_case_body, + STATE(6074), 2, sym_comment, sym_include, - [298896] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301389] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8588), 1, sym__terminator, - ACTIONS(8394), 1, - aux_sym_prompt_for_statement_token2, - STATE(6006), 2, + ACTIONS(8590), 1, + aux_sym_enum_definition_token1, + STATE(6075), 2, sym_comment, sym_include, - [298916] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301409] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2409), 1, - sym__block_terminator, - STATE(6007), 2, - sym_comment, - sym_include, - [298936] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - aux_sym__block_terminator_token1, - STATE(1589), 1, - sym__block_terminator, - STATE(6008), 2, + ACTIONS(8592), 1, + sym__terminator, + ACTIONS(8594), 1, + aux_sym_function_call_token1, + STATE(6076), 2, sym_comment, sym_include, - [298956] = 6, - ACTIONS(67), 1, + [301429] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_DOT, - ACTIONS(8396), 1, - aux_sym__function_terminator_token1, - STATE(6009), 2, + ACTIONS(8596), 1, + sym_identifier, + STATE(3287), 1, + sym_qualified_name, + STATE(6077), 2, sym_comment, sym_include, - [298976] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301449] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8398), 1, - sym__terminator, - ACTIONS(8400), 1, - aux_sym_interface_statement_token1, - STATE(6010), 2, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(5263), 1, + sym_case_body, + STATE(6078), 2, sym_comment, sym_include, - [298996] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301469] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7924), 1, - anon_sym_DOT, - ACTIONS(8402), 1, - aux_sym__case_terminator_token1, - STATE(6011), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1689), 1, + sym__block_terminator, + STATE(6079), 2, sym_comment, sym_include, - [299016] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301489] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4277), 1, - sym_query_fields, - STATE(6012), 2, + ACTIONS(8044), 1, + aux_sym_scope_tuning_token1, + STATE(6861), 1, + sym_new_expression, + STATE(6080), 2, sym_comment, sym_include, - [299036] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301509] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6634), 1, - sym_body, - STATE(6013), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1688), 1, + sym__block_terminator, + STATE(6081), 2, sym_comment, sym_include, - [299056] = 6, - ACTIONS(3), 1, + [301529] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8404), 1, - sym_identifier, - ACTIONS(8406), 1, + ACTIONS(110), 2, sym__terminator, - STATE(6014), 2, + aux_sym_function_call_token1, + STATE(6082), 2, sym_comment, sym_include, - [299076] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301547] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(2225), 1, + STATE(2044), 1, sym__block_terminator, - STATE(6015), 2, + STATE(6083), 2, sym_comment, sym_include, - [299096] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301567] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(6115), 1, + STATE(5625), 1, sym_body, - STATE(6016), 2, + STATE(6084), 2, sym_comment, sym_include, - [299116] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301587] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(6072), 1, + STATE(6193), 1, sym_body, - STATE(6017), 2, + STATE(6085), 2, sym_comment, sym_include, - [299136] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301607] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2258), 1, + STATE(4949), 1, sym__block_terminator, - STATE(6018), 2, + STATE(6086), 2, sym_comment, sym_include, - [299156] = 6, - ACTIONS(3), 1, + [301627] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8408), 1, - sym_identifier, - STATE(4567), 1, - sym_qualified_name, - STATE(6019), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1687), 1, + sym__block_terminator, + STATE(6087), 2, sym_comment, sym_include, - [299176] = 6, - ACTIONS(3), 1, + [301647] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8410), 1, - sym_identifier, - STATE(131), 1, - sym_qualified_name, - STATE(6020), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1545), 1, + sym__block_terminator, + STATE(6088), 2, sym_comment, sym_include, - [299196] = 6, - ACTIONS(67), 1, + [301667] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1686), 1, + sym__block_terminator, + STATE(6089), 2, + sym_comment, + sym_include, + [301687] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, + ACTIONS(5888), 1, anon_sym_COLON, - STATE(5244), 1, + STATE(5341), 1, sym_case_body, - STATE(6021), 2, + STATE(6090), 2, sym_comment, sym_include, - [299216] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301707] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5670), 1, - sym_body, - STATE(6022), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1685), 1, + sym__block_terminator, + STATE(6091), 2, sym_comment, sym_include, - [299236] = 6, + [301727] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8412), 1, + ACTIONS(8598), 1, sym_identifier, - STATE(3273), 1, + STATE(3307), 1, sym_qualified_name, - STATE(6023), 2, + STATE(6092), 2, sym_comment, sym_include, - [299256] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301747] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5532), 1, - sym_body, - STATE(6024), 2, + ACTIONS(8600), 1, + sym__terminator, + ACTIONS(8602), 1, + aux_sym_finally_statement_token1, + STATE(6093), 2, sym_comment, sym_include, - [299276] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301767] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7117), 1, - anon_sym_LPAREN, - STATE(244), 1, - sym_function_arguments, - STATE(6025), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4953), 1, + sym__block_terminator, + STATE(6094), 2, sym_comment, sym_include, - [299296] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301787] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8414), 1, - aux_sym_image_phrase_token7, - ACTIONS(8416), 1, - aux_sym_image_phrase_token9, - STATE(6026), 2, + ACTIONS(6907), 1, + sym__terminator, + ACTIONS(6909), 1, + aux_sym_using_statement_token2, + STATE(6095), 2, sym_comment, sym_include, - [299316] = 6, + [301807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8418), 1, + ACTIONS(8604), 1, sym_identifier, - ACTIONS(8420), 1, + ACTIONS(8606), 1, sym__integer_literal, - STATE(6027), 2, + STATE(6096), 2, sym_comment, sym_include, - [299336] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301827] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, - aux_sym_scope_tuning_token1, - STATE(6204), 1, - sym_new_expression, - STATE(6028), 2, + ACTIONS(7194), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym_function_arguments, + STATE(6097), 2, sym_comment, sym_include, - [299356] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301847] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8422), 2, - sym__terminator, - aux_sym_field_definition_token1, - STATE(6029), 2, + ACTIONS(5166), 1, + aux_sym__block_terminator_token1, + STATE(1684), 1, + sym__block_terminator, + STATE(6098), 2, sym_comment, sym_include, - [299374] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301867] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8424), 1, + ACTIONS(8608), 1, aux_sym_using_statement_token2, - ACTIONS(8426), 1, + ACTIONS(8610), 1, aux_sym_input_close_statement_token2, - STATE(6030), 2, + STATE(6099), 2, sym_comment, sym_include, - [299394] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301887] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8424), 1, + ACTIONS(8608), 1, aux_sym_using_statement_token2, - ACTIONS(8428), 1, + ACTIONS(8612), 1, aux_sym_input_close_statement_token2, - STATE(6031), 2, + STATE(6100), 2, sym_comment, sym_include, - [299414] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301907] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5523), 1, - sym_body, - STATE(6032), 2, + ACTIONS(8614), 1, + sym__terminator, + ACTIONS(8616), 1, + aux_sym_prompt_for_statement_token2, + STATE(6101), 2, sym_comment, sym_include, - [299434] = 6, - ACTIONS(67), 1, + [301927] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, - aux_sym_scope_tuning_token1, - STATE(6717), 1, - sym_new_expression, - STATE(6033), 2, + ACTIONS(8618), 1, + sym_identifier, + ACTIONS(8620), 1, + anon_sym_STAR, + STATE(6102), 2, sym_comment, sym_include, - [299454] = 5, - ACTIONS(67), 1, + [301947] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8430), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(6034), 2, + ACTIONS(8622), 1, + sym_identifier, + STATE(5228), 1, + sym_qualified_name, + STATE(6103), 2, sym_comment, sym_include, - [299472] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [301967] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(6035), 2, + ACTIONS(7824), 1, + aux_sym_on_error_phrase_token1, + STATE(6859), 1, + sym_on_error_phrase, + STATE(6104), 2, sym_comment, sym_include, - [299490] = 6, + [301987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8432), 1, + ACTIONS(8624), 1, sym_identifier, - ACTIONS(8434), 1, - sym__terminator, - STATE(6036), 2, + STATE(6017), 1, + sym_qualified_name, + STATE(6105), 2, sym_comment, sym_include, - [299510] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302007] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5198), 1, aux_sym__block_terminator_token1, - STATE(2234), 1, + STATE(1550), 1, sym__block_terminator, - STATE(6037), 2, + STATE(6106), 2, sym_comment, sym_include, - [299530] = 5, - ACTIONS(67), 1, + [302027] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7111), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(6038), 2, + ACTIONS(8626), 1, + sym_identifier, + STATE(5566), 1, + sym_qualified_name, + STATE(6107), 2, sym_comment, sym_include, - [299548] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302047] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8436), 1, + ACTIONS(8628), 1, aux_sym_input_close_statement_token2, - ACTIONS(8438), 1, + ACTIONS(8630), 1, aux_sym_output_stream_statement_token1, - STATE(6039), 2, + STATE(6108), 2, sym_comment, sym_include, - [299568] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302067] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8438), 1, + ACTIONS(8630), 1, aux_sym_output_stream_statement_token1, - ACTIONS(8440), 1, + ACTIONS(8632), 1, aux_sym_input_close_statement_token2, - STATE(6040), 2, + STATE(6109), 2, sym_comment, sym_include, - [299588] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302087] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8442), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, - STATE(6041), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5026), 1, + sym__block_terminator, + STATE(6110), 2, sym_comment, sym_include, - [299606] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302107] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8444), 2, + ACTIONS(8634), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(6042), 2, + STATE(6111), 2, sym_comment, sym_include, - [299624] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302125] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8446), 1, - aux_sym_input_close_statement_token2, - ACTIONS(8448), 1, - aux_sym_output_stream_statement_token1, - STATE(6043), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2324), 1, + sym__block_terminator, + STATE(6112), 2, sym_comment, sym_include, - [299644] = 6, - ACTIONS(3), 1, + [302145] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8450), 1, - sym_identifier, - ACTIONS(8452), 1, - anon_sym_STAR, - STATE(6044), 2, + ACTIONS(79), 1, + anon_sym_LPAREN, + STATE(1454), 1, + sym_function_arguments, + STATE(6113), 2, sym_comment, sym_include, - [299664] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302165] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8454), 2, + ACTIONS(8636), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(6045), 2, + STATE(6114), 2, sym_comment, sym_include, - [299682] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302183] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8044), 1, aux_sym_scope_tuning_token1, - STATE(6264), 1, + STATE(6262), 1, sym_new_expression, - STATE(6046), 2, + STATE(6115), 2, sym_comment, sym_include, - [299702] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302203] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(6008), 1, + STATE(6106), 1, sym_body, - STATE(6047), 2, + STATE(6116), 2, sym_comment, sym_include, - [299722] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302223] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(1613), 1, - sym__namecolon, - STATE(1077), 1, - aux_sym_object_access_repeat1, - STATE(6048), 2, + ACTIONS(8638), 1, + sym__terminator, + ACTIONS(8640), 1, + aux_sym_interface_statement_token1, + STATE(6117), 2, sym_comment, sym_include, - [299742] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302243] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8456), 1, - sym__terminator, - ACTIONS(8458), 1, - aux_sym_class_type_token1, - STATE(6049), 2, + ACTIONS(5898), 1, + anon_sym_LPAREN, + STATE(5606), 1, + sym_function_parameters, + STATE(6118), 2, sym_comment, sym_include, - [299762] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302263] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8448), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(8460), 1, - aux_sym_input_close_statement_token2, - STATE(6050), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5536), 1, + sym_body, + STATE(6119), 2, sym_comment, sym_include, - [299782] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302283] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_DOT, - ACTIONS(8462), 1, - aux_sym__case_terminator_token1, - STATE(6051), 2, + ACTIONS(8642), 1, + sym__terminator, + ACTIONS(8644), 1, + aux_sym_catch_statement_token1, + STATE(6120), 2, sym_comment, sym_include, - [299802] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302303] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5996), 1, + STATE(6088), 1, sym_body, - STATE(6052), 2, + STATE(6121), 2, sym_comment, sym_include, - [299822] = 6, - ACTIONS(3), 1, + [302323] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8464), 1, - sym_identifier, - STATE(3028), 1, - sym_qualified_name, - STATE(6053), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4962), 1, + sym__block_terminator, + STATE(6122), 2, sym_comment, sym_include, - [299842] = 6, - ACTIONS(3), 1, + [302343] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8466), 1, - sym_identifier, - STATE(3256), 1, - sym_qualified_name, - STATE(6054), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1560), 1, + sym__block_terminator, + STATE(6123), 2, sym_comment, sym_include, - [299862] = 6, - ACTIONS(67), 1, + [302363] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4967), 1, + sym__block_terminator, + STATE(6124), 2, + sym_comment, + sym_include, + [302383] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(5341), 1, - sym_case_body, - STATE(6055), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1564), 1, + sym__block_terminator, + STATE(6125), 2, sym_comment, sym_include, - [299882] = 6, + [302403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8468), 1, + ACTIONS(8646), 1, sym_identifier, - STATE(118), 1, + STATE(121), 1, sym_qualified_name, - STATE(6056), 2, + STATE(6126), 2, sym_comment, sym_include, - [299902] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302423] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8470), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(6057), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(6019), 1, + sym_body, + STATE(6127), 2, sym_comment, sym_include, - [299920] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302443] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8472), 1, - aux_sym_using_statement_token2, - ACTIONS(8474), 1, - aux_sym_input_close_statement_token2, - STATE(6058), 2, + ACTIONS(8648), 1, + sym__terminator, + ACTIONS(8650), 1, + aux_sym_class_type_token1, + STATE(6128), 2, sym_comment, sym_include, - [299940] = 6, + [302463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8476), 1, + ACTIONS(8652), 1, sym_identifier, - STATE(4568), 1, + STATE(4584), 1, sym_qualified_name, - STATE(6059), 2, + STATE(6129), 2, sym_comment, sym_include, - [299960] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302483] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8472), 1, - aux_sym_using_statement_token2, - ACTIONS(8478), 1, - aux_sym_input_close_statement_token2, - STATE(6060), 2, + ACTIONS(8654), 1, + sym__terminator, + ACTIONS(8656), 1, + aux_sym_interface_statement_token1, + STATE(6130), 2, sym_comment, sym_include, - [299980] = 6, - ACTIONS(67), 1, + [302503] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4982), 1, + sym__block_terminator, + STATE(6131), 2, + sym_comment, + sym_include, + [302523] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - sym__escaped_string, - STATE(3061), 1, - sym_string_literal, - STATE(6061), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4436), 1, + sym_query_fields, + STATE(6132), 2, sym_comment, sym_include, - [300000] = 6, + [302543] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8480), 1, + ACTIONS(8658), 1, sym_identifier, - ACTIONS(8482), 1, - sym__integer_literal, - STATE(6062), 2, + ACTIONS(8660), 1, + anon_sym_STAR, + STATE(6133), 2, sym_comment, sym_include, - [300020] = 6, + [302563] = 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(8662), 1, sym_identifier, - STATE(3288), 1, - sym_qualified_name, - STATE(6063), 2, + ACTIONS(8664), 1, + anon_sym_STAR, + STATE(6134), 2, sym_comment, sym_include, - [300040] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302583] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(5455), 1, - sym_case_body, - STATE(6064), 2, + ACTIONS(2709), 1, + sym__namecolon, + STATE(2407), 1, + aux_sym_object_access_repeat1, + STATE(6135), 2, sym_comment, sym_include, - [300060] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302603] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8486), 1, - sym__terminator, - ACTIONS(8488), 1, - aux_sym_interface_statement_token1, - STATE(6065), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(4983), 1, + sym__block_terminator, + STATE(6136), 2, sym_comment, sym_include, - [300080] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302623] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2343), 1, - sym__block_terminator, - STATE(6066), 2, + ACTIONS(5126), 1, + sym__terminator, + ACTIONS(5128), 1, + aux_sym_function_call_token1, + STATE(6137), 2, sym_comment, sym_include, - [300100] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302643] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2351), 1, - sym__block_terminator, - STATE(6067), 2, + ACTIONS(2752), 1, + sym__namecolon, + STATE(2506), 1, + aux_sym_object_access_repeat1, + STATE(6138), 2, sym_comment, sym_include, - [300120] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302663] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5247), 1, aux_sym__block_terminator_token1, - STATE(2350), 1, + STATE(1923), 1, sym__block_terminator, - STATE(6068), 2, + STATE(6139), 2, sym_comment, sym_include, - [300140] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302683] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5599), 1, - sym_body, - STATE(6069), 2, + ACTIONS(8666), 1, + sym__terminator, + ACTIONS(8668), 1, + aux_sym_finally_statement_token1, + STATE(6140), 2, sym_comment, sym_include, - [300160] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302703] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, + ACTIONS(8092), 1, anon_sym_DOT, - ACTIONS(8490), 1, - aux_sym__procedure_terminator_token1, - STATE(6070), 2, + ACTIONS(8670), 1, + aux_sym__case_terminator_token1, + STATE(6141), 2, sym_comment, sym_include, - [300180] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302723] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5463), 1, - sym_body, - STATE(6071), 2, - sym_comment, - sym_include, - [300200] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2013), 1, + STATE(4990), 1, sym__block_terminator, - STATE(6072), 2, + STATE(6142), 2, sym_comment, sym_include, - [300220] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302743] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(4436), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(6073), 2, - sym_comment, - sym_include, - [300238] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, - sym__terminator, - ACTIONS(8494), 1, - aux_sym_interface_statement_token1, - STATE(6074), 2, + ACTIONS(5196), 1, + aux_sym__block_terminator_token1, + STATE(2056), 1, + sym__block_terminator, + STATE(6143), 2, sym_comment, sym_include, - [300258] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302763] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(2710), 1, - sym__namecolon, - STATE(2318), 1, - aux_sym_object_access_repeat1, - STATE(6075), 2, - sym_comment, - sym_include, - [300278] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8496), 2, + ACTIONS(8672), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(6076), 2, + STATE(6144), 2, sym_comment, sym_include, - [300296] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302781] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7970), 1, + ACTIONS(8044), 1, aux_sym_scope_tuning_token1, - STATE(6380), 1, + STATE(6363), 1, sym_new_expression, - STATE(6077), 2, + STATE(6145), 2, sym_comment, sym_include, - [300316] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302801] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, + ACTIONS(3852), 1, anon_sym_COLON, - STATE(5863), 1, + STATE(5981), 1, sym_body, - STATE(6078), 2, + STATE(6146), 2, sym_comment, sym_include, - [300336] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302821] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5077), 1, - sym__terminator, - ACTIONS(5079), 1, - aux_sym_function_call_token1, - STATE(6079), 2, + ACTIONS(1501), 1, + sym__namecolon, + STATE(1050), 1, + aux_sym_object_access_repeat1, + STATE(6147), 2, sym_comment, sym_include, - [300356] = 6, + [302841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8498), 1, + ACTIONS(8674), 1, sym_identifier, - ACTIONS(8500), 1, + ACTIONS(8676), 1, anon_sym_STAR, - STATE(6080), 2, + STATE(6148), 2, sym_comment, sym_include, - [300376] = 6, + [302861] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8502), 1, + ACTIONS(8678), 1, sym_identifier, - STATE(5432), 1, + STATE(6403), 1, sym_qualified_name, - STATE(6081), 2, + STATE(6149), 2, sym_comment, sym_include, - [300396] = 6, - ACTIONS(67), 1, + [302881] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7720), 1, - aux_sym_on_error_phrase_token1, - STATE(6754), 1, - sym_on_error_phrase, - STATE(6082), 2, + ACTIONS(8680), 1, + sym_identifier, + STATE(4558), 1, + sym_qualified_name, + STATE(6150), 2, sym_comment, sym_include, - [300416] = 6, + [302901] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, + ACTIONS(8682), 1, sym_identifier, - STATE(5510), 1, + STATE(3275), 1, sym_qualified_name, - STATE(6083), 2, + STATE(6151), 2, sym_comment, sym_include, - [300436] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302921] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8506), 1, - sym__terminator, - ACTIONS(8508), 1, - aux_sym_finally_statement_token1, - STATE(6084), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2065), 1, + sym__block_terminator, + STATE(6152), 2, sym_comment, sym_include, - [300456] = 6, - ACTIONS(3), 1, + [302941] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8510), 1, - sym_identifier, - STATE(5527), 1, - sym_qualified_name, - STATE(6085), 2, + ACTIONS(6937), 1, + anon_sym_LPAREN, + STATE(2489), 1, + sym_function_arguments, + STATE(6153), 2, sym_comment, sym_include, - [300476] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [302961] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7031), 1, - anon_sym_LPAREN, - STATE(2531), 1, - sym_function_arguments, - STATE(6086), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(6154), 2, sym_comment, sym_include, - [300496] = 6, - ACTIONS(3), 1, + [302981] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8512), 1, - sym_identifier, - STATE(6405), 1, - sym_qualified_name, - STATE(6087), 2, + ACTIONS(6933), 1, + sym__terminator, + ACTIONS(6935), 1, + aux_sym_using_statement_token2, + STATE(6155), 2, sym_comment, sym_include, - [300516] = 6, - ACTIONS(3), 1, + [303001] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8514), 1, - sym_identifier, - STATE(4551), 1, - sym_qualified_name, - STATE(6088), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1604), 1, + sym__block_terminator, + STATE(6156), 2, sym_comment, sym_include, - [300536] = 6, - ACTIONS(67), 1, + [303021] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5933), 1, + sym_body, + STATE(6157), 2, + sym_comment, + sym_include, + [303041] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5196), 1, aux_sym__block_terminator_token1, - STATE(1607), 1, + STATE(2295), 1, sym__block_terminator, - STATE(6089), 2, + STATE(6158), 2, sym_comment, sym_include, - [300556] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303061] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7924), 1, - anon_sym_DOT, - ACTIONS(8516), 1, - aux_sym__function_terminator_token1, - STATE(6090), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5922), 1, + sym_body, + STATE(6159), 2, sym_comment, sym_include, - [300576] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303081] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8518), 1, - sym__terminator, - ACTIONS(8520), 1, - aux_sym_interface_statement_token1, - STATE(6091), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5029), 1, + sym__block_terminator, + STATE(6160), 2, sym_comment, sym_include, - [300596] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303101] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1643), 1, + STATE(5028), 1, sym__block_terminator, - STATE(6092), 2, + STATE(6161), 2, sym_comment, sym_include, - [300616] = 6, - ACTIONS(67), 1, + [303121] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5027), 1, + sym__block_terminator, + STATE(6162), 2, + sym_comment, + sym_include, + [303141] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2332), 1, + STATE(5050), 1, sym__block_terminator, - STATE(6093), 2, + STATE(6163), 2, sym_comment, sym_include, - [300636] = 6, - ACTIONS(67), 1, + [303161] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5025), 1, + sym__block_terminator, + STATE(6164), 2, + sym_comment, + sym_include, + [303181] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(851), 1, - anon_sym_LPAREN, - STATE(1408), 1, - sym_function_arguments, - STATE(6094), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5024), 1, + sym__block_terminator, + STATE(6165), 2, sym_comment, sym_include, - [300656] = 6, - ACTIONS(67), 1, + [303201] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5021), 1, + sym__block_terminator, + STATE(6166), 2, + sym_comment, + sym_include, + [303221] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8522), 1, + ACTIONS(8684), 1, sym__terminator, - ACTIONS(8524), 1, + ACTIONS(8686), 1, aux_sym_class_type_token1, - STATE(6095), 2, + STATE(6167), 2, sym_comment, sym_include, - [300676] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303241] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2269), 1, + STATE(5020), 1, sym__block_terminator, - STATE(6096), 2, + STATE(6168), 2, sym_comment, sym_include, - [300696] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303261] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2291), 1, + STATE(5019), 1, sym__block_terminator, - STATE(6097), 2, + STATE(6169), 2, sym_comment, sym_include, - [300716] = 5, - ACTIONS(67), 1, + [303281] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4106), 1, + sym_query_fields, + STATE(6170), 2, + sym_comment, + sym_include, + [303301] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8526), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(6098), 2, + ACTIONS(7948), 1, + anon_sym_LPAREN, + STATE(4539), 1, + sym_query_fields, + STATE(6171), 2, sym_comment, sym_include, - [300734] = 6, + [303321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8528), 1, + ACTIONS(8688), 1, sym_identifier, - ACTIONS(8530), 1, - anon_sym_STAR, - STATE(6099), 2, + STATE(6448), 1, + sym_qualified_name, + STATE(6172), 2, sym_comment, sym_include, - [300754] = 6, + [303341] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8532), 1, + ACTIONS(8690), 1, sym_identifier, - ACTIONS(8534), 1, - anon_sym_COMMA, - STATE(6100), 2, + STATE(3037), 1, + sym_qualified_name, + STATE(6173), 2, sym_comment, sym_include, - [300774] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303361] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5774), 1, - sym_body, - STATE(6101), 2, + ACTIONS(5884), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6174), 2, sym_comment, sym_include, - [300794] = 6, - ACTIONS(3), 1, + [303379] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8536), 1, - sym_identifier, - ACTIONS(8538), 1, - sym__terminator, - STATE(6102), 2, + ACTIONS(6676), 1, + anon_sym_LPAREN, + STATE(6469), 1, + sym_function_parameters, + STATE(6175), 2, sym_comment, sym_include, - [300814] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303399] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5755), 1, - sym_body, - STATE(6103), 2, + ACTIONS(8692), 1, + sym__terminator, + ACTIONS(8694), 1, + aux_sym_method_definition_token1, + STATE(6176), 2, sym_comment, sym_include, - [300834] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303419] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2280), 1, + STATE(5018), 1, sym__block_terminator, - STATE(6104), 2, + STATE(6177), 2, sym_comment, sym_include, - [300854] = 6, - ACTIONS(3), 1, + [303439] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8540), 1, - sym_identifier, - ACTIONS(8542), 1, - anon_sym_STAR, - STATE(6105), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5015), 1, + sym__block_terminator, + STATE(6178), 2, sym_comment, sym_include, - [300874] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303459] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(911), 1, - sym__namecolon, - STATE(252), 1, - aux_sym_object_access_repeat1, - STATE(6106), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5882), 1, + sym_body, + STATE(6179), 2, sym_comment, sym_include, - [300894] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303479] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(2347), 1, + STATE(5013), 1, sym__block_terminator, - STATE(6107), 2, + STATE(6180), 2, sym_comment, sym_include, - [300914] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303499] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5138), 1, - aux_sym__block_terminator_token1, - STATE(2306), 1, - sym__block_terminator, - STATE(6108), 2, + ACTIONS(8696), 1, + sym__terminator, + ACTIONS(8698), 1, + aux_sym_constructor_definition_token1, + STATE(6181), 2, sym_comment, sym_include, - [300934] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303519] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, - sym__namecolon, - STATE(3512), 1, - aux_sym_object_access_repeat1, - STATE(6109), 2, + ACTIONS(8700), 1, + sym__terminator, + ACTIONS(8702), 1, + aux_sym_destructor_definition_token1, + STATE(6182), 2, sym_comment, sym_include, - [300954] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303539] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1681), 1, + STATE(5012), 1, sym__block_terminator, - STATE(6110), 2, + STATE(6183), 2, sym_comment, sym_include, - [300974] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303559] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4141), 1, + STATE(4090), 1, sym_query_fields, - STATE(6111), 2, + STATE(6184), 2, sym_comment, sym_include, - [300994] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303579] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4492), 1, + STATE(4480), 1, sym_query_fields, - STATE(6112), 2, + STATE(6185), 2, sym_comment, sym_include, - [301014] = 6, - ACTIONS(3), 1, + [303599] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8544), 1, - sym_identifier, - STATE(6481), 1, - sym_qualified_name, - STATE(6113), 2, + ACTIONS(5190), 1, + aux_sym__block_terminator_token1, + STATE(5008), 1, + sym__block_terminator, + STATE(6186), 2, sym_comment, sym_include, - [301034] = 6, - ACTIONS(3), 1, + [303619] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8548), 1, - sym__terminator, - STATE(6114), 2, + ACTIONS(5247), 1, + aux_sym__block_terminator_token1, + STATE(2060), 1, + sym__block_terminator, + STATE(6187), 2, sym_comment, sym_include, - [301054] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303639] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1666), 1, + STATE(5001), 1, sym__block_terminator, - STATE(6115), 2, + STATE(6188), 2, sym_comment, sym_include, - [301074] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303659] = 6, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(6631), 1, - sym_body, - STATE(6116), 2, - sym_comment, - sym_include, - [301094] = 6, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1715), 1, + STATE(5000), 1, sym__block_terminator, - STATE(6117), 2, + STATE(6189), 2, sym_comment, sym_include, - [301114] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303679] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5688), 1, - sym_body, - STATE(6118), 2, + ACTIONS(7515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6190), 2, sym_comment, sym_include, - [301134] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303697] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8550), 1, - sym__terminator, - ACTIONS(8552), 1, - aux_sym_finally_statement_token1, - STATE(6119), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(6191), 2, sym_comment, sym_include, - [301154] = 6, + [303717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8554), 1, + ACTIONS(8704), 1, sym_identifier, - ACTIONS(8556), 1, - anon_sym_COMMA, - STATE(6120), 2, - sym_comment, - sym_include, - [301174] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(8706), 1, sym__terminator, - ACTIONS(5083), 1, - aux_sym_function_call_token1, - STATE(6121), 2, + STATE(6192), 2, sym_comment, sym_include, - [301194] = 6, - ACTIONS(3), 1, + [303737] = 6, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8558), 1, - sym_identifier, - STATE(3576), 1, - sym_qualified_name, - STATE(6122), 2, + ACTIONS(5198), 1, + aux_sym__block_terminator_token1, + STATE(1585), 1, + sym__block_terminator, + STATE(6193), 2, sym_comment, sym_include, - [301214] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303757] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5190), 1, aux_sym__block_terminator_token1, - STATE(1835), 1, + STATE(4999), 1, sym__block_terminator, - STATE(6123), 2, + STATE(6194), 2, sym_comment, sym_include, - [301234] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303777] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4065), 1, - sym_query_fields, - STATE(6124), 2, + ACTIONS(3852), 1, + anon_sym_COLON, + STATE(5579), 1, + sym_body, + STATE(6195), 2, sym_comment, sym_include, - [301254] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303797] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7948), 1, anon_sym_LPAREN, - STATE(4516), 1, + STATE(4458), 1, sym_query_fields, - STATE(6125), 2, + STATE(6196), 2, sym_comment, sym_include, - [301274] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303817] = 6, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5878), 1, - anon_sym_LPAREN, - STATE(5923), 1, - sym_function_parameters, - STATE(6126), 2, + ACTIONS(8708), 1, + sym__terminator, + ACTIONS(8710), 1, + aux_sym_catch_statement_token1, + STATE(6197), 2, sym_comment, sym_include, - [301294] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303837] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2304), 1, - sym__block_terminator, - STATE(6127), 2, + ACTIONS(8712), 1, + anon_sym_RBRACE, + STATE(6198), 2, sym_comment, sym_include, - [301314] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303854] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7041), 1, - sym__terminator, - ACTIONS(7043), 1, - aux_sym_using_statement_token2, - STATE(6128), 2, + ACTIONS(8714), 1, + anon_sym_COMMA, + STATE(6199), 2, sym_comment, sym_include, - [301334] = 6, - ACTIONS(3), 1, + [303871] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4333), 1, - anon_sym_RPAREN, - ACTIONS(4335), 1, - anon_sym_, - STATE(6129), 2, + ACTIONS(8716), 1, + anon_sym_RBRACE, + STATE(6200), 2, sym_comment, sym_include, - [301354] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303888] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, - aux_sym__block_terminator_token1, - STATE(2313), 1, - sym__block_terminator, - STATE(6130), 2, + ACTIONS(8718), 1, + anon_sym_RBRACK, + STATE(6201), 2, sym_comment, sym_include, - [301374] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303905] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - anon_sym_COLON, - STATE(5654), 1, - sym_body, - STATE(6131), 2, + ACTIONS(8720), 1, + sym__integer_literal, + STATE(6202), 2, sym_comment, sym_include, - [301394] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303922] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4525), 1, - sym_query_fields, - STATE(6132), 2, + ACTIONS(8696), 1, + sym__terminator, + STATE(6203), 2, sym_comment, sym_include, - [301414] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303939] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8560), 1, + ACTIONS(8722), 1, sym__terminator, - ACTIONS(8562), 1, - aux_sym_getter_token1, - STATE(6133), 2, + STATE(6204), 2, sym_comment, sym_include, - [301434] = 6, - ACTIONS(67), 1, + [303956] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LPAREN, - STATE(1057), 1, - sym_function_arguments, - STATE(6134), 2, + ACTIONS(8724), 1, + sym_identifier, + STATE(6205), 2, sym_comment, sym_include, - [301454] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [303973] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7039), 1, - anon_sym_LPAREN, - STATE(1169), 1, - sym_function_arguments, - STATE(6135), 2, + ACTIONS(8726), 1, + aux_sym__block_terminator_token1, + STATE(6206), 2, sym_comment, sym_include, - [301474] = 6, + [303990] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8564), 1, + ACTIONS(8728), 1, sym_identifier, - ACTIONS(8566), 1, - anon_sym_STAR, - STATE(6136), 2, + STATE(6207), 2, sym_comment, sym_include, - [301494] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304007] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(855), 1, - sym__namecolon, - STATE(189), 1, - aux_sym_object_access_repeat1, - STATE(6137), 2, + ACTIONS(8730), 1, + sym__terminator, + STATE(6208), 2, sym_comment, sym_include, - [301514] = 6, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304024] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, - anon_sym_LPAREN, - STATE(4532), 1, - sym_query_fields, - STATE(6138), 2, + ACTIONS(7904), 1, + anon_sym_DOT, + STATE(6209), 2, sym_comment, sym_include, - [301534] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304041] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8568), 1, - sym__terminator, - STATE(6139), 2, + ACTIONS(8732), 1, + aux_sym__block_terminator_token1, + STATE(6210), 2, sym_comment, sym_include, - [301551] = 5, + [304058] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8570), 1, + ACTIONS(8734), 1, sym_identifier, - STATE(6140), 2, + STATE(6211), 2, sym_comment, sym_include, - [301568] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304075] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8572), 1, - anon_sym_LPAREN, - STATE(6141), 2, + ACTIONS(8736), 1, + aux_sym__block_terminator_token1, + STATE(6212), 2, sym_comment, sym_include, - [301585] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304092] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8574), 1, + ACTIONS(8738), 1, sym__terminator, - STATE(6142), 2, + STATE(6213), 2, sym_comment, sym_include, - [301602] = 5, - ACTIONS(67), 1, + [304109] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8740), 1, + sym_identifier, + STATE(6214), 2, + sym_comment, + sym_include, + [304126] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8576), 1, - aux_sym_sort_clause_token2, - STATE(6143), 2, + ACTIONS(8742), 1, + sym__terminator, + STATE(6215), 2, sym_comment, sym_include, - [301619] = 5, - ACTIONS(67), 1, + [304143] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8744), 1, + aux_sym_do_block_token1, + STATE(6216), 2, + sym_comment, + sym_include, + [304160] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8578), 1, - aux_sym__block_terminator_token1, - STATE(6144), 2, + ACTIONS(8746), 1, + sym__terminator, + STATE(6217), 2, sym_comment, sym_include, - [301636] = 5, + [304177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8580), 1, + ACTIONS(8748), 1, sym_identifier, - STATE(6145), 2, + STATE(6218), 2, + sym_comment, + sym_include, + [304194] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8750), 1, + sym__terminator, + STATE(6219), 2, sym_comment, sym_include, - [301653] = 5, - ACTIONS(67), 1, + [304211] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8752), 1, + sym__terminator, + STATE(6220), 2, + sym_comment, + sym_include, + [304228] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8582), 1, - anon_sym_RBRACE, - STATE(6146), 2, + ACTIONS(8754), 1, + aux_sym__block_terminator_token1, + STATE(6221), 2, sym_comment, sym_include, - [301670] = 5, - ACTIONS(3), 1, + [304245] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8584), 1, - sym_identifier, - STATE(6147), 2, + ACTIONS(8756), 1, + aux_sym__block_terminator_token1, + STATE(6222), 2, sym_comment, sym_include, - [301687] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304262] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, - aux_sym__block_terminator_token1, - STATE(6148), 2, + ACTIONS(8758), 1, + sym__terminator, + STATE(6223), 2, sym_comment, sym_include, - [301704] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304279] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8588), 1, - anon_sym_RBRACE, - STATE(6149), 2, + ACTIONS(8760), 1, + anon_sym_RBRACK, + STATE(6224), 2, sym_comment, sym_include, - [301721] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304296] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, - anon_sym_DOT, - STATE(6150), 2, + ACTIONS(8762), 1, + aux_sym__block_terminator_token1, + STATE(6225), 2, sym_comment, sym_include, - [301738] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304313] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8590), 1, + ACTIONS(8764), 1, sym__terminator, - STATE(6151), 2, + STATE(6226), 2, sym_comment, sym_include, - [301755] = 5, - ACTIONS(67), 1, + [304330] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8592), 1, - sym__integer_literal, - STATE(6152), 2, + ACTIONS(8766), 1, + sym_identifier, + STATE(6227), 2, sym_comment, sym_include, - [301772] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304347] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8594), 1, - aux_sym__block_terminator_token1, - STATE(6153), 2, + ACTIONS(8768), 1, + sym__terminator, + STATE(6228), 2, sym_comment, sym_include, - [301789] = 5, - ACTIONS(67), 1, + [304364] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8596), 1, - anon_sym_RBRACK, - STATE(6154), 2, + ACTIONS(8770), 1, + sym_identifier, + STATE(6229), 2, sym_comment, sym_include, - [301806] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304381] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8598), 1, - anon_sym_RBRACE, - STATE(6155), 2, + ACTIONS(8772), 1, + sym__terminator, + STATE(6230), 2, sym_comment, sym_include, - [301823] = 5, + [304398] = 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(8774), 1, sym_identifier, - STATE(6156), 2, + STATE(6231), 2, + sym_comment, + sym_include, + [304415] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(5126), 1, + sym__terminator, + STATE(6232), 2, sym_comment, sym_include, - [301840] = 5, + [304432] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8602), 1, + ACTIONS(8776), 1, sym_identifier, - STATE(6157), 2, + STATE(6233), 2, sym_comment, sym_include, - [301857] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304449] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8604), 1, - sym__terminator, - STATE(6158), 2, + ACTIONS(8778), 1, + anon_sym_RBRACE, + STATE(6234), 2, sym_comment, sym_include, - [301874] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304466] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8654), 1, sym__terminator, - STATE(6159), 2, + STATE(6235), 2, sym_comment, sym_include, - [301891] = 5, + [304483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8608), 1, + ACTIONS(8780), 1, sym_identifier, - STATE(6160), 2, + STATE(6236), 2, sym_comment, sym_include, - [301908] = 5, + [304500] = 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(8782), 1, sym_identifier, - STATE(6161), 2, + STATE(6237), 2, sym_comment, sym_include, - [301925] = 5, + [304517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8612), 1, + ACTIONS(8784), 1, sym_identifier, - STATE(6162), 2, + STATE(6238), 2, sym_comment, sym_include, - [301942] = 5, - ACTIONS(67), 1, + [304534] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8786), 1, + sym__terminator, + STATE(6239), 2, + sym_comment, + sym_include, + [304551] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8614), 1, - aux_sym__block_terminator_token1, - STATE(6163), 2, + ACTIONS(7500), 1, + sym__terminator, + STATE(6240), 2, sym_comment, sym_include, - [301959] = 5, + [304568] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8616), 1, + ACTIONS(8788), 1, sym_identifier, - STATE(6164), 2, + STATE(6241), 2, sym_comment, sym_include, - [301976] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304585] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8618), 1, + ACTIONS(8790), 1, sym__terminator, - STATE(6165), 2, + STATE(6242), 2, sym_comment, sym_include, - [301993] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304602] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8620), 1, + ACTIONS(6642), 1, sym__terminator, - STATE(6166), 2, + STATE(6243), 2, sym_comment, sym_include, - [302010] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304619] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8622), 1, - sym__integer_literal, - STATE(6167), 2, + ACTIONS(8792), 1, + sym__terminator, + STATE(6244), 2, sym_comment, sym_include, - [302027] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304636] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8624), 1, - aux_sym_image_phrase_token10, - STATE(6168), 2, + ACTIONS(8794), 1, + sym__terminator, + STATE(6245), 2, sym_comment, sym_include, - [302044] = 5, - ACTIONS(3), 1, + [304653] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8626), 1, - sym_identifier, - STATE(6169), 2, + ACTIONS(8796), 1, + sym__terminator, + STATE(6246), 2, sym_comment, sym_include, - [302061] = 5, - ACTIONS(3), 1, + [304670] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8628), 1, - sym_identifier, - STATE(6170), 2, + ACTIONS(8798), 1, + aux_sym__block_terminator_token1, + STATE(6247), 2, sym_comment, sym_include, - [302078] = 5, + [304687] = 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(8800), 1, sym_identifier, - STATE(6171), 2, - sym_comment, - sym_include, - [302095] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8632), 1, - aux_sym_do_block_token1, - STATE(6172), 2, + STATE(6248), 2, sym_comment, sym_include, - [302112] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304704] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8634), 1, - aux_sym__block_terminator_token1, - STATE(6173), 2, - sym_comment, - sym_include, - [302129] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8636), 1, + ACTIONS(8802), 1, sym__terminator, - STATE(6174), 2, + STATE(6249), 2, sym_comment, sym_include, - [302146] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304721] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8638), 1, + ACTIONS(8804), 1, sym__terminator, - STATE(6175), 2, + STATE(6250), 2, sym_comment, sym_include, - [302163] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304738] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8640), 1, + ACTIONS(8806), 1, sym__terminator, - STATE(6176), 2, + STATE(6251), 2, sym_comment, sym_include, - [302180] = 5, - ACTIONS(3), 1, + [304755] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8642), 1, - sym_identifier, - STATE(6177), 2, + ACTIONS(8808), 1, + anon_sym_RBRACE, + STATE(6252), 2, sym_comment, sym_include, - [302197] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304772] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8624), 1, - aux_sym_image_phrase_token8, - STATE(6178), 2, + ACTIONS(8810), 1, + aux_sym__block_terminator_token1, + STATE(6253), 2, sym_comment, sym_include, - [302214] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304789] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, - anon_sym_DOT, - STATE(6179), 2, + ACTIONS(8812), 1, + sym__terminator, + STATE(6254), 2, sym_comment, sym_include, - [302231] = 5, - ACTIONS(67), 1, + [304806] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8646), 1, - aux_sym_buffer_definition_token2, - STATE(6180), 2, + ACTIONS(8814), 1, + sym_identifier, + STATE(6255), 2, sym_comment, sym_include, - [302248] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304823] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8518), 1, - sym__terminator, - STATE(6181), 2, + ACTIONS(8816), 1, + anon_sym_DOT, + STATE(6256), 2, sym_comment, sym_include, - [302265] = 5, + [304840] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8648), 1, + ACTIONS(8818), 1, sym_identifier, - STATE(6182), 2, + STATE(6257), 2, sym_comment, sym_include, - [302282] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304857] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8650), 1, + ACTIONS(156), 1, sym__terminator, - STATE(6183), 2, + STATE(6258), 2, sym_comment, sym_include, - [302299] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304874] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8652), 1, - anon_sym_RBRACE, - STATE(6184), 2, + ACTIONS(8820), 1, + sym__terminator, + STATE(6259), 2, sym_comment, sym_include, - [302316] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304891] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8654), 1, + ACTIONS(8822), 1, sym__terminator, - STATE(6185), 2, + STATE(6260), 2, sym_comment, sym_include, - [302333] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304908] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8656), 1, - anon_sym_RBRACE, - STATE(6186), 2, + ACTIONS(8824), 1, + sym__terminator, + STATE(6261), 2, sym_comment, sym_include, - [302350] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304925] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, - anon_sym_COLON, - STATE(6187), 2, + ACTIONS(8826), 1, + sym__terminator, + STATE(6262), 2, sym_comment, sym_include, - [302367] = 5, - ACTIONS(3), 1, + [304942] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8660), 1, - sym_identifier, - STATE(6188), 2, + ACTIONS(8828), 1, + sym__terminator, + STATE(6263), 2, sym_comment, sym_include, - [302384] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304959] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8662), 1, - sym__integer_literal, - STATE(6189), 2, + ACTIONS(8830), 1, + aux_sym__block_terminator_token1, + STATE(6264), 2, sym_comment, sym_include, - [302401] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [304976] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8664), 1, + ACTIONS(8832), 1, anon_sym_RBRACE, - STATE(6190), 2, + STATE(6265), 2, sym_comment, sym_include, - [302418] = 5, + [304993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8666), 1, + ACTIONS(8834), 1, sym_identifier, - STATE(6191), 2, + STATE(6266), 2, sym_comment, sym_include, - [302435] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305010] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8668), 1, + ACTIONS(8836), 1, sym__integer_literal, - STATE(6192), 2, + STATE(6267), 2, sym_comment, sym_include, - [302452] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305027] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8670), 1, + ACTIONS(8838), 1, sym__terminator, - STATE(6193), 2, + STATE(6268), 2, sym_comment, sym_include, - [302469] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305044] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8672), 1, - anon_sym_DOT, - STATE(6194), 2, + ACTIONS(8840), 1, + sym__terminator, + STATE(6269), 2, sym_comment, sym_include, - [302486] = 5, + [305061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8674), 1, + ACTIONS(8842), 1, sym_identifier, - STATE(6195), 2, - sym_comment, - sym_include, - [302503] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8676), 1, - sym__terminator, - STATE(6196), 2, + STATE(6270), 2, sym_comment, sym_include, - [302520] = 5, + [305078] = 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(8844), 1, sym_identifier, - STATE(6197), 2, + STATE(6271), 2, sym_comment, sym_include, - [302537] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305095] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8680), 1, - aux_sym_do_block_token1, - STATE(6198), 2, + ACTIONS(8846), 1, + anon_sym_LPAREN, + STATE(6272), 2, sym_comment, sym_include, - [302554] = 5, - ACTIONS(67), 1, + [305112] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8682), 1, - aux_sym_buffer_definition_token2, - STATE(6199), 2, + ACTIONS(8848), 1, + sym_identifier, + STATE(6273), 2, sym_comment, sym_include, - [302571] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305129] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8684), 1, - anon_sym_RBRACK, - STATE(6200), 2, + ACTIONS(8850), 1, + sym__terminator, + STATE(6274), 2, sym_comment, sym_include, - [302588] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305146] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8686), 1, + ACTIONS(8852), 1, anon_sym_COMMA, - STATE(6201), 2, + STATE(6275), 2, sym_comment, sym_include, - [302605] = 5, + [305163] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8688), 1, + ACTIONS(8854), 1, sym_identifier, - STATE(6202), 2, + STATE(6276), 2, sym_comment, sym_include, - [302622] = 5, + [305180] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8690), 1, + ACTIONS(8856), 1, sym_identifier, - STATE(6203), 2, - sym_comment, - sym_include, - [302639] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8692), 1, - sym__terminator, - STATE(6204), 2, + STATE(6277), 2, sym_comment, sym_include, - [302656] = 5, + [305197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8694), 1, + ACTIONS(8858), 1, sym_identifier, - STATE(6205), 2, + STATE(6278), 2, sym_comment, sym_include, - [302673] = 5, + [305214] = 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(8860), 1, sym_identifier, - STATE(6206), 2, + STATE(6279), 2, sym_comment, sym_include, - [302690] = 5, - ACTIONS(3), 1, + [305231] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8698), 1, - sym_identifier, - STATE(6207), 2, + ACTIONS(156), 1, + sym__namecolon, + STATE(6280), 2, sym_comment, sym_include, - [302707] = 5, - ACTIONS(3), 1, + [305248] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8700), 1, - sym_identifier, - STATE(6208), 2, + ACTIONS(8862), 1, + aux_sym__block_terminator_token1, + STATE(6281), 2, sym_comment, sym_include, - [302724] = 5, - ACTIONS(67), 1, + [305265] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8702), 1, - sym__terminator, - STATE(6209), 2, + ACTIONS(8864), 1, + sym_identifier, + STATE(6282), 2, sym_comment, sym_include, - [302741] = 5, + [305282] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8704), 1, + ACTIONS(8866), 1, sym_identifier, - STATE(6210), 2, + STATE(6283), 2, sym_comment, sym_include, - [302758] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305299] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5077), 1, - sym__terminator, - STATE(6211), 2, + ACTIONS(8868), 1, + aux_sym__block_terminator_token1, + STATE(6284), 2, sym_comment, sym_include, - [302775] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305316] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8706), 1, + ACTIONS(8870), 1, anon_sym_RBRACE, - STATE(6212), 2, + STATE(6285), 2, sym_comment, sym_include, - [302792] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305333] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8708), 1, - aux_sym__block_terminator_token1, - STATE(6213), 2, + ACTIONS(8872), 1, + sym__terminator, + STATE(6286), 2, sym_comment, sym_include, - [302809] = 5, - ACTIONS(3), 1, + [305350] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8710), 1, - sym_identifier, - STATE(6214), 2, + ACTIONS(8874), 1, + sym__terminator, + STATE(6287), 2, sym_comment, sym_include, - [302826] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305367] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_RBRACE, - STATE(6215), 2, + ACTIONS(8876), 1, + sym__terminator, + STATE(6288), 2, sym_comment, sym_include, - [302843] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305384] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8714), 1, - aux_sym_buffer_definition_token2, - STATE(6216), 2, + ACTIONS(8592), 1, + sym__terminator, + STATE(6289), 2, sym_comment, sym_include, - [302860] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305401] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8716), 1, - aux_sym_when_expression_token1, - STATE(6217), 2, + ACTIONS(7485), 1, + sym__terminator, + STATE(6290), 2, sym_comment, sym_include, - [302877] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305418] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8718), 1, - sym__terminator, - STATE(6218), 2, + ACTIONS(8878), 1, + anon_sym_RBRACE, + STATE(6291), 2, sym_comment, sym_include, - [302894] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305435] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, - aux_sym__block_terminator_token1, - STATE(6219), 2, + ACTIONS(8880), 1, + sym__terminator, + STATE(6292), 2, sym_comment, sym_include, - [302911] = 5, + [305452] = 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(8882), 1, sym_identifier, - STATE(6220), 2, - sym_comment, - sym_include, - [302928] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8724), 1, - aux_sym__block_terminator_token1, - STATE(6221), 2, + STATE(6293), 2, sym_comment, sym_include, - [302945] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305469] = 5, 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, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8728), 1, + ACTIONS(8884), 1, aux_sym__block_terminator_token1, - STATE(6223), 2, + STATE(6294), 2, sym_comment, sym_include, - [302979] = 5, - ACTIONS(67), 1, + [305486] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8730), 1, - sym__terminator, - STATE(6224), 2, + ACTIONS(8886), 1, + sym_identifier, + STATE(6295), 2, sym_comment, sym_include, - [302996] = 5, - ACTIONS(67), 1, + [305503] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8732), 1, - sym__terminator, - STATE(6225), 2, + ACTIONS(8888), 1, + sym_identifier, + STATE(6296), 2, sym_comment, sym_include, - [303013] = 5, - ACTIONS(67), 1, + [305520] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8734), 1, - anon_sym_RBRACE, - STATE(6226), 2, + ACTIONS(8890), 1, + sym_identifier, + STATE(6297), 2, sym_comment, sym_include, - [303030] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305537] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8736), 1, - sym__terminator, - STATE(6227), 2, - sym_comment, - sym_include, - [303047] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8738), 1, - aux_sym_of_token1, - STATE(6228), 2, + ACTIONS(8892), 1, + sym__integer_literal, + STATE(6298), 2, sym_comment, sym_include, - [303064] = 5, + [305554] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8740), 1, + ACTIONS(8894), 1, sym_identifier, - STATE(6229), 2, + STATE(6299), 2, sym_comment, sym_include, - [303081] = 5, + [305571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, + ACTIONS(8896), 1, sym_identifier, - STATE(6230), 2, + STATE(6300), 2, sym_comment, sym_include, - [303098] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305588] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8742), 1, + ACTIONS(8898), 1, aux_sym__block_terminator_token1, - STATE(6231), 2, + STATE(6301), 2, sym_comment, sym_include, - [303115] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305605] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8744), 1, + ACTIONS(8900), 1, aux_sym__block_terminator_token1, - STATE(6232), 2, + STATE(6302), 2, + sym_comment, + sym_include, + [305622] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8902), 1, + sym__terminator, + STATE(6303), 2, sym_comment, sym_include, - [303132] = 5, + [305639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8746), 1, + ACTIONS(8904), 1, sym_identifier, - STATE(6233), 2, + STATE(6304), 2, sym_comment, sym_include, - [303149] = 5, + [305656] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8748), 1, + ACTIONS(8906), 1, sym_identifier, - STATE(6234), 2, + STATE(6305), 2, sym_comment, sym_include, - [303166] = 5, + [305673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8750), 1, + ACTIONS(8908), 1, sym_identifier, - STATE(6235), 2, + STATE(6306), 2, sym_comment, sym_include, - [303183] = 5, - ACTIONS(67), 1, + [305690] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(228), 2, + sym_file_name, + anon_sym_LBRACE, + STATE(6307), 2, + sym_comment, + sym_include, + [305705] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8752), 1, + ACTIONS(7483), 1, sym__terminator, - STATE(6236), 2, + STATE(6308), 2, sym_comment, sym_include, - [303200] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305722] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8754), 1, - sym__terminator, - STATE(6237), 2, + ACTIONS(8910), 1, + aux_sym__block_terminator_token1, + STATE(6309), 2, sym_comment, sym_include, - [303217] = 5, + [305739] = 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(8912), 1, sym_identifier, - STATE(6238), 2, + STATE(6310), 2, sym_comment, sym_include, - [303234] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305756] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8758), 1, - sym__terminator, - STATE(6239), 2, + ACTIONS(8914), 1, + aux_sym__block_terminator_token1, + STATE(6311), 2, sym_comment, sym_include, - [303251] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305773] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8760), 1, - aux_sym__block_terminator_token1, - STATE(6240), 2, + ACTIONS(8916), 1, + aux_sym_of_token1, + STATE(6312), 2, sym_comment, sym_include, - [303268] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305790] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(8918), 1, sym__terminator, - STATE(6241), 2, + STATE(6313), 2, sym_comment, sym_include, - [303285] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305807] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8762), 1, - aux_sym__block_terminator_token1, - STATE(6242), 2, + ACTIONS(8540), 1, + sym__terminator, + STATE(6314), 2, sym_comment, sym_include, - [303302] = 5, - ACTIONS(3), 1, + [305824] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(6243), 2, + ACTIONS(8920), 1, + sym__terminator, + STATE(6315), 2, sym_comment, sym_include, - [303319] = 5, - ACTIONS(3), 1, + [305841] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, - sym_identifier, - STATE(6244), 2, + ACTIONS(8922), 1, + aux_sym__block_terminator_token1, + STATE(6316), 2, sym_comment, sym_include, - [303336] = 5, - ACTIONS(3), 1, + [305858] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8768), 1, - sym_identifier, - STATE(6245), 2, + ACTIONS(8924), 1, + sym__terminator, + STATE(6317), 2, sym_comment, sym_include, - [303353] = 5, - ACTIONS(3), 1, + [305875] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8770), 1, - sym_identifier, - STATE(6246), 2, + ACTIONS(8926), 1, + anon_sym_RBRACE, + STATE(6318), 2, sym_comment, sym_include, - [303370] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305892] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8772), 1, + ACTIONS(8928), 1, sym__terminator, - STATE(6247), 2, + STATE(6319), 2, sym_comment, sym_include, - [303387] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305909] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8774), 1, - aux_sym__block_terminator_token1, - STATE(6248), 2, - sym_comment, - sym_include, - [303404] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(6585), 1, sym__terminator, - STATE(6249), 2, + STATE(6320), 2, sym_comment, sym_include, - [303421] = 5, + [305926] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8778), 1, + ACTIONS(8930), 1, sym_identifier, - STATE(6250), 2, + STATE(6321), 2, sym_comment, sym_include, - [303438] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305943] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8780), 1, + ACTIONS(7559), 1, sym__terminator, - STATE(6251), 2, + STATE(6322), 2, sym_comment, sym_include, - [303455] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305960] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8782), 1, + ACTIONS(8528), 1, sym__terminator, - STATE(6252), 2, + STATE(6323), 2, sym_comment, sym_include, - [303472] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305977] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8784), 1, + ACTIONS(8932), 1, aux_sym__block_terminator_token1, - STATE(6253), 2, + STATE(6324), 2, sym_comment, sym_include, - [303489] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [305994] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8786), 1, - aux_sym__block_terminator_token1, - STATE(6254), 2, + ACTIONS(8934), 1, + sym__terminator, + STATE(6325), 2, sym_comment, sym_include, - [303506] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306011] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8788), 1, - anon_sym_RBRACE, - STATE(6255), 2, + ACTIONS(7481), 1, + sym__terminator, + STATE(6326), 2, sym_comment, sym_include, - [303523] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306028] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8790), 1, + ACTIONS(8222), 1, sym__terminator, - STATE(6256), 2, + STATE(6327), 2, sym_comment, sym_include, - [303540] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306045] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8792), 1, - aux_sym__block_terminator_token1, - STATE(6257), 2, + ACTIONS(8936), 1, + anon_sym_DOT, + STATE(6328), 2, sym_comment, sym_include, - [303557] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306062] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8794), 1, - sym__terminator, - STATE(6258), 2, + ACTIONS(8938), 1, + aux_sym__block_terminator_token1, + STATE(6329), 2, sym_comment, sym_include, - [303574] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306079] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8796), 1, + ACTIONS(8940), 1, sym__terminator, - STATE(6259), 2, + STATE(6330), 2, sym_comment, sym_include, - [303591] = 5, - ACTIONS(67), 1, + [306096] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8798), 1, - sym__integer_literal, - STATE(6260), 2, + ACTIONS(8942), 1, + sym_identifier, + STATE(6331), 2, sym_comment, sym_include, - [303608] = 5, + [306113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8800), 1, + ACTIONS(8944), 1, sym_identifier, - STATE(6261), 2, + STATE(6332), 2, sym_comment, sym_include, - [303625] = 5, - ACTIONS(67), 1, + [306130] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8802), 1, - aux_sym_input_expression_token2, - STATE(6262), 2, + ACTIONS(8946), 1, + sym_identifier, + STATE(6333), 2, sym_comment, sym_include, - [303642] = 5, - ACTIONS(67), 1, + [306147] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8804), 1, - anon_sym_DOT, - STATE(6263), 2, + ACTIONS(8948), 1, + sym_identifier, + STATE(6334), 2, sym_comment, sym_include, - [303659] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306164] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8806), 1, + ACTIONS(8524), 1, sym__terminator, - STATE(6264), 2, + STATE(6335), 2, sym_comment, sym_include, - [303676] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306181] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, - sym__terminator, - STATE(6265), 2, + ACTIONS(8950), 1, + anon_sym_RBRACE, + STATE(6336), 2, sym_comment, sym_include, - [303693] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306198] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8810), 1, - sym__terminator, - STATE(6266), 2, + ACTIONS(8952), 1, + anon_sym_RBRACE, + STATE(6337), 2, sym_comment, sym_include, - [303710] = 5, - ACTIONS(3), 1, + [306215] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8812), 1, - sym_identifier, - STATE(6267), 2, + ACTIONS(8954), 1, + sym__integer_literal, + STATE(6338), 2, sym_comment, sym_include, - [303727] = 5, - ACTIONS(67), 1, + [306232] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8510), 1, + sym__terminator, + STATE(6339), 2, + sym_comment, + sym_include, + [306249] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8814), 1, - anon_sym_RBRACE, - STATE(6268), 2, + ACTIONS(8956), 1, + sym__terminator, + STATE(6340), 2, sym_comment, sym_include, - [303744] = 5, + [306266] = 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(8958), 1, sym_identifier, - STATE(6269), 2, + STATE(6341), 2, sym_comment, sym_include, - [303761] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306283] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8818), 1, - sym__terminator, - STATE(6270), 2, - sym_comment, - sym_include, - [303778] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8820), 1, + ACTIONS(8960), 1, sym__terminator, - STATE(6271), 2, + STATE(6342), 2, sym_comment, sym_include, - [303795] = 5, - ACTIONS(3), 1, + [306300] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8822), 1, - sym_identifier, - STATE(6272), 2, + ACTIONS(7565), 1, + sym__terminator, + STATE(6343), 2, sym_comment, sym_include, - [303812] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306317] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8824), 1, - aux_sym__block_terminator_token1, - STATE(6273), 2, + ACTIONS(6659), 1, + sym__terminator, + STATE(6344), 2, sym_comment, sym_include, - [303829] = 5, - ACTIONS(3), 1, + [306334] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8826), 1, - sym_identifier, - STATE(6274), 2, + ACTIONS(8962), 1, + aux_sym__block_terminator_token1, + STATE(6345), 2, sym_comment, sym_include, - [303846] = 5, - ACTIONS(3), 1, + [306351] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8828), 1, - sym_identifier, - STATE(6275), 2, + ACTIONS(8964), 1, + sym__terminator, + STATE(6346), 2, sym_comment, sym_include, - [303863] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306368] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8830), 1, - aux_sym_type_tuning_token1, - STATE(6276), 2, + ACTIONS(6717), 1, + sym__terminator, + STATE(6347), 2, sym_comment, sym_include, - [303880] = 5, + [306385] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8832), 1, + ACTIONS(8966), 1, sym_identifier, - STATE(6277), 2, + STATE(6348), 2, sym_comment, sym_include, - [303897] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306402] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8834), 1, + ACTIONS(8968), 1, sym__terminator, - STATE(6278), 2, + STATE(6349), 2, sym_comment, sym_include, - [303914] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306419] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8836), 1, + ACTIONS(8970), 1, sym__terminator, - STATE(6279), 2, + STATE(6350), 2, sym_comment, sym_include, - [303931] = 5, + [306436] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8838), 1, + ACTIONS(8972), 1, sym_identifier, - STATE(6280), 2, + STATE(6351), 2, sym_comment, sym_include, - [303948] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306453] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8840), 1, - anon_sym_RBRACK, - STATE(6281), 2, + ACTIONS(6616), 1, + sym__terminator, + STATE(6352), 2, sym_comment, sym_include, - [303965] = 5, - ACTIONS(3), 1, + [306470] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8842), 1, - sym_identifier, - STATE(6282), 2, + ACTIONS(8974), 1, + anon_sym_RBRACK, + STATE(6353), 2, sym_comment, sym_include, - [303982] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306487] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8360), 1, + ACTIONS(8490), 1, sym__terminator, - STATE(6283), 2, + STATE(6354), 2, sym_comment, sym_include, - [303999] = 5, - ACTIONS(3), 1, + [306504] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8844), 1, - sym_identifier, - STATE(6284), 2, + ACTIONS(8976), 1, + aux_sym__block_terminator_token1, + STATE(6355), 2, sym_comment, sym_include, - [304016] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306521] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, - anon_sym_DOT, - STATE(6285), 2, + ACTIONS(8978), 1, + sym__integer_literal, + STATE(6356), 2, sym_comment, sym_include, - [304033] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306538] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8846), 1, + ACTIONS(8980), 1, sym__terminator, - STATE(6286), 2, + STATE(6357), 2, sym_comment, sym_include, - [304050] = 5, - ACTIONS(67), 1, + [306555] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8982), 1, + anon_sym_RBRACE, + STATE(6358), 2, + sym_comment, + sym_include, + [306572] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8848), 1, + ACTIONS(8984), 1, sym__terminator, - STATE(6287), 2, + STATE(6359), 2, sym_comment, sym_include, - [304067] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306589] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8850), 1, + ACTIONS(8986), 1, sym__terminator, - STATE(6288), 2, + STATE(6360), 2, sym_comment, sym_include, - [304084] = 5, + [306606] = 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(8988), 1, sym_identifier, - STATE(6289), 2, + STATE(6361), 2, sym_comment, sym_include, - [304101] = 5, + [306623] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8854), 1, + ACTIONS(8990), 1, sym_identifier, - STATE(6290), 2, + STATE(6362), 2, sym_comment, sym_include, - [304118] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306640] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8856), 1, - anon_sym_RBRACE, - STATE(6291), 2, + ACTIONS(8992), 1, + sym__terminator, + STATE(6363), 2, sym_comment, sym_include, - [304135] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306657] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8858), 1, - sym__terminator, - STATE(6292), 2, + ACTIONS(8994), 1, + aux_sym_sort_clause_token2, + STATE(6364), 2, sym_comment, sym_include, - [304152] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306674] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8860), 1, - anon_sym_RBRACK, - STATE(6293), 2, + ACTIONS(8996), 1, + sym__terminator, + STATE(6365), 2, sym_comment, sym_include, - [304169] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306691] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8862), 1, + ACTIONS(8998), 1, sym__terminator, - STATE(6294), 2, + STATE(6366), 2, sym_comment, sym_include, - [304186] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306708] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8864), 1, + ACTIONS(9000), 1, sym__terminator, - STATE(6295), 2, + STATE(6367), 2, sym_comment, sym_include, - [304203] = 5, - ACTIONS(3), 1, + [306725] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8866), 1, - sym_identifier, - STATE(6296), 2, + ACTIONS(9002), 1, + aux_sym__block_terminator_token1, + STATE(6368), 2, sym_comment, sym_include, - [304220] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306742] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8868), 1, - sym__integer_literal, - STATE(6297), 2, + ACTIONS(9004), 1, + sym__terminator, + STATE(6369), 2, sym_comment, sym_include, - [304237] = 5, - ACTIONS(67), 1, + [306759] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, + sym__terminator, + STATE(6370), 2, + sym_comment, + sym_include, + [306776] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6080), 1, + ACTIONS(6097), 1, aux_sym_do_block_token1, - STATE(6298), 2, + STATE(6371), 2, sym_comment, sym_include, - [304254] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306793] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8870), 1, - aux_sym__block_terminator_token1, - STATE(6299), 2, + ACTIONS(9006), 1, + sym__terminator, + STATE(6372), 2, sym_comment, sym_include, - [304271] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306810] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8872), 1, + ACTIONS(9008), 1, sym__terminator, - STATE(6300), 2, + STATE(6373), 2, sym_comment, sym_include, - [304288] = 5, - ACTIONS(3), 1, + [306827] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8874), 1, - sym_identifier, - STATE(6301), 2, + ACTIONS(9010), 1, + sym__terminator, + STATE(6374), 2, sym_comment, sym_include, - [304305] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306844] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8876), 1, + ACTIONS(9012), 1, aux_sym__block_terminator_token1, - STATE(6302), 2, + STATE(6375), 2, sym_comment, sym_include, - [304322] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306861] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8346), 1, - sym__terminator, - STATE(6303), 2, + ACTIONS(9014), 1, + aux_sym_input_expression_token2, + STATE(6376), 2, sym_comment, sym_include, - [304339] = 5, - ACTIONS(3), 1, + [306878] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8878), 1, - sym_identifier, - STATE(6304), 2, + ACTIONS(8308), 1, + sym__terminator, + STATE(6377), 2, sym_comment, sym_include, - [304356] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306895] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8880), 1, + ACTIONS(9016), 1, anon_sym_RBRACK, - STATE(6305), 2, + STATE(6378), 2, sym_comment, sym_include, - [304373] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306912] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8882), 1, - anon_sym_RBRACE, - STATE(6306), 2, + ACTIONS(7575), 1, + sym__terminator, + STATE(6379), 2, sym_comment, sym_include, - [304390] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306929] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8884), 1, - anon_sym_RBRACE, - STATE(6307), 2, + ACTIONS(9018), 1, + sym__terminator, + STATE(6380), 2, sym_comment, sym_include, - [304407] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306946] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8886), 1, - sym__integer_literal, - STATE(6308), 2, + ACTIONS(9020), 1, + sym__terminator, + STATE(6381), 2, sym_comment, sym_include, - [304424] = 5, - ACTIONS(3), 1, + [306963] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8888), 1, - sym_identifier, - STATE(6309), 2, + ACTIONS(9022), 1, + anon_sym_RBRACE, + STATE(6382), 2, sym_comment, sym_include, - [304441] = 5, - ACTIONS(3), 1, + [306980] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8890), 1, - sym_identifier, - STATE(6310), 2, + ACTIONS(8476), 1, + sym__terminator, + STATE(6383), 2, sym_comment, sym_include, - [304458] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [306997] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8328), 1, + ACTIONS(9024), 1, sym__terminator, - STATE(6311), 2, + STATE(6384), 2, sym_comment, sym_include, - [304475] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307014] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, + ACTIONS(9026), 1, sym__terminator, - STATE(6312), 2, + STATE(6385), 2, sym_comment, sym_include, - [304492] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307031] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8892), 1, - aux_sym__block_terminator_token1, - STATE(6313), 2, + ACTIONS(9028), 1, + aux_sym_image_phrase_token8, + STATE(6386), 2, sym_comment, sym_include, - [304509] = 5, - ACTIONS(3), 1, + [307048] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8894), 1, - sym_identifier, - STATE(6314), 2, + ACTIONS(8458), 1, + sym__terminator, + STATE(6387), 2, sym_comment, sym_include, - [304526] = 5, - ACTIONS(3), 1, + [307065] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8896), 1, - sym_identifier, - STATE(6315), 2, + ACTIONS(9030), 1, + sym__terminator, + STATE(6388), 2, sym_comment, sym_include, - [304543] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307082] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8898), 1, - anon_sym_RBRACE, - STATE(6316), 2, + ACTIONS(8472), 1, + sym__terminator, + STATE(6389), 2, sym_comment, sym_include, - [304560] = 5, - ACTIONS(3), 1, + [307099] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8900), 1, - sym_identifier, - STATE(6317), 2, + ACTIONS(9032), 1, + sym__terminator, + STATE(6390), 2, sym_comment, sym_include, - [304577] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307116] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7163), 1, - sym__terminator, - STATE(6318), 2, + ACTIONS(9034), 1, + anon_sym_RBRACK, + STATE(6391), 2, sym_comment, sym_include, - [304594] = 5, - ACTIONS(3), 1, + [307133] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8902), 1, - sym_identifier, - STATE(6319), 2, + ACTIONS(9036), 1, + aux_sym__block_terminator_token1, + STATE(6392), 2, sym_comment, sym_include, - [304611] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307150] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(166), 1, - sym__namecolon, - STATE(6320), 2, + ACTIONS(9038), 1, + sym__terminator, + STATE(6393), 2, sym_comment, sym_include, - [304628] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307167] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8904), 1, - aux_sym_buffer_definition_token2, - STATE(6321), 2, + ACTIONS(9040), 1, + aux_sym_do_block_token1, + STATE(6394), 2, sym_comment, sym_include, - [304645] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307184] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8906), 1, - sym__terminator, - STATE(6322), 2, + ACTIONS(9042), 1, + anon_sym_COMMA, + STATE(6395), 2, sym_comment, sym_include, - [304662] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307201] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8908), 1, - aux_sym__block_terminator_token1, - STATE(6323), 2, + ACTIONS(9044), 1, + anon_sym_COMMA, + STATE(6396), 2, sym_comment, sym_include, - [304679] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307218] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8910), 1, + ACTIONS(9046), 1, sym__terminator, - STATE(6324), 2, + STATE(6397), 2, sym_comment, sym_include, - [304696] = 5, - ACTIONS(3), 1, + [307235] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8912), 1, - sym_identifier, - STATE(6325), 2, + ACTIONS(9048), 1, + sym__terminator, + STATE(6398), 2, sym_comment, sym_include, - [304713] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307252] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8298), 1, + ACTIONS(9050), 1, sym__terminator, - STATE(6326), 2, + STATE(6399), 2, sym_comment, sym_include, - [304730] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307269] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8914), 1, + ACTIONS(9052), 1, aux_sym__block_terminator_token1, - STATE(6327), 2, + STATE(6400), 2, sym_comment, sym_include, - [304747] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307286] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7505), 1, + ACTIONS(6532), 1, sym__terminator, - STATE(6328), 2, + STATE(6401), 2, sym_comment, sym_include, - [304764] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307303] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8916), 1, - aux_sym_argument_mode_token3, - STATE(6329), 2, + ACTIONS(9054), 1, + sym__terminator, + STATE(6402), 2, sym_comment, sym_include, - [304781] = 5, - ACTIONS(67), 1, + [307320] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, + sym__terminator, + STATE(6403), 2, + sym_comment, + sym_include, + [307337] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8918), 1, + ACTIONS(7453), 1, sym__terminator, - STATE(6330), 2, + STATE(6404), 2, sym_comment, sym_include, - [304798] = 5, + [307354] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8920), 1, + ACTIONS(9056), 1, sym_identifier, - STATE(6331), 2, + STATE(6405), 2, sym_comment, sym_include, - [304815] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307371] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8922), 1, + ACTIONS(7457), 1, sym__terminator, - STATE(6332), 2, + STATE(6406), 2, sym_comment, sym_include, - [304832] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307388] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, - aux_sym_primitive_type_token1, - STATE(6333), 2, - sym_comment, - sym_include, - [304849] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8926), 1, + ACTIONS(9058), 1, sym__terminator, - STATE(6334), 2, + STATE(6407), 2, sym_comment, sym_include, - [304866] = 5, + [307405] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8928), 1, + ACTIONS(9060), 1, sym_identifier, - STATE(6335), 2, + STATE(6408), 2, sym_comment, sym_include, - [304883] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307422] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8930), 1, + ACTIONS(7451), 1, sym__terminator, - STATE(6336), 2, + STATE(6409), 2, sym_comment, sym_include, - [304900] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307439] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8932), 1, - aux_sym_sort_clause_token2, - STATE(6337), 2, - sym_comment, - sym_include, - [304917] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, + ACTIONS(9062), 1, sym__terminator, - STATE(6338), 2, + STATE(6410), 2, sym_comment, sym_include, - [304934] = 5, - ACTIONS(3), 1, + [307456] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8934), 1, - sym_identifier, - STATE(6339), 2, + ACTIONS(9064), 1, + aux_sym__block_terminator_token1, + STATE(6411), 2, sym_comment, sym_include, - [304951] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307473] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_COMMA, - STATE(6340), 2, - sym_comment, - sym_include, - [304968] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8938), 1, - sym_identifier, - STATE(6341), 2, + ACTIONS(9066), 1, + sym__terminator, + STATE(6412), 2, sym_comment, sym_include, - [304985] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307490] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8940), 1, - aux_sym__block_terminator_token1, - STATE(6342), 2, + ACTIONS(9068), 1, + anon_sym_RBRACK, + STATE(6413), 2, sym_comment, sym_include, - [305002] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307507] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8942), 1, - aux_sym_buffer_definition_token2, - STATE(6343), 2, + ACTIONS(9070), 1, + aux_sym__block_terminator_token1, + STATE(6414), 2, sym_comment, sym_include, - [305019] = 5, + [307524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8944), 1, + ACTIONS(9072), 1, sym_identifier, - STATE(6344), 2, + STATE(6415), 2, sym_comment, sym_include, - [305036] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307541] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8946), 1, - sym__terminator, - STATE(6345), 2, - sym_comment, - sym_include, - [305053] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8948), 1, + ACTIONS(8430), 1, sym__terminator, - STATE(6346), 2, + STATE(6416), 2, sym_comment, sym_include, - [305070] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307558] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8950), 1, - sym__terminator, - STATE(6347), 2, + ACTIONS(9074), 1, + aux_sym__block_terminator_token1, + STATE(6417), 2, sym_comment, sym_include, - [305087] = 5, - ACTIONS(67), 1, + [307575] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8952), 1, - anon_sym_RPAREN, - STATE(6348), 2, + ACTIONS(9076), 1, + sym_identifier, + STATE(6418), 2, sym_comment, sym_include, - [305104] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307592] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8954), 1, - anon_sym_LPAREN, - STATE(6349), 2, + ACTIONS(9078), 1, + sym__terminator, + STATE(6419), 2, sym_comment, sym_include, - [305121] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307609] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8956), 1, + ACTIONS(9080), 1, sym__terminator, - STATE(6350), 2, + STATE(6420), 2, sym_comment, sym_include, - [305138] = 5, + [307626] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8958), 1, + ACTIONS(9082), 1, sym_identifier, - STATE(6351), 2, + STATE(6421), 2, sym_comment, sym_include, - [305155] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307643] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, - sym__terminator, - STATE(6352), 2, + ACTIONS(9084), 1, + aux_sym__block_terminator_token1, + STATE(6422), 2, sym_comment, sym_include, - [305172] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307660] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8962), 1, - sym__terminator, - STATE(6353), 2, + ACTIONS(9086), 1, + aux_sym_input_expression_token2, + STATE(6423), 2, sym_comment, sym_include, - [305189] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307677] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8964), 1, + ACTIONS(9088), 1, sym__terminator, - STATE(6354), 2, + STATE(6424), 2, sym_comment, sym_include, - [305206] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307694] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8966), 1, - anon_sym_RBRACK, - STATE(6355), 2, + ACTIONS(9090), 1, + aux_sym__block_terminator_token1, + STATE(6425), 2, sym_comment, sym_include, - [305223] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307711] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8968), 1, - sym__integer_literal, - STATE(6356), 2, + ACTIONS(9092), 1, + aux_sym_primitive_type_token1, + STATE(6426), 2, sym_comment, sym_include, - [305240] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307728] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8970), 1, - sym__terminator, - STATE(6357), 2, + ACTIONS(9094), 1, + aux_sym_buffer_definition_token2, + STATE(6427), 2, sym_comment, sym_include, - [305257] = 5, - ACTIONS(67), 1, + [307745] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8972), 1, - sym__terminator, - STATE(6358), 2, + ACTIONS(9096), 1, + sym_identifier, + STATE(6428), 2, sym_comment, sym_include, - [305274] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307762] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8974), 1, + ACTIONS(9098), 1, sym__terminator, - STATE(6359), 2, + STATE(6429), 2, sym_comment, sym_include, - [305291] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307779] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8254), 1, + ACTIONS(8400), 1, sym__terminator, - STATE(6360), 2, + STATE(6430), 2, sym_comment, sym_include, - [305308] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307796] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8976), 1, - anon_sym_RBRACK, - STATE(6361), 2, + ACTIONS(9100), 1, + sym__terminator, + STATE(6431), 2, sym_comment, sym_include, - [305325] = 5, + [307813] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8978), 1, + ACTIONS(9102), 1, sym_identifier, - STATE(6362), 2, + STATE(6432), 2, sym_comment, sym_include, - [305342] = 5, - ACTIONS(67), 1, + [307830] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8980), 1, - aux_sym__block_terminator_token1, - STATE(6363), 2, + ACTIONS(9104), 1, + sym_identifier, + STATE(6433), 2, sym_comment, sym_include, - [305359] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307847] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(6464), 1, - sym__terminator, - STATE(6364), 2, - sym_comment, - sym_include, - [305376] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8982), 1, - aux_sym_do_block_token1, - STATE(6365), 2, + ACTIONS(9106), 1, + aux_sym__block_terminator_token1, + STATE(6434), 2, sym_comment, sym_include, - [305393] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307864] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8984), 1, - anon_sym_COMMA, - STATE(6366), 2, - sym_comment, - sym_include, - [305410] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8986), 1, - anon_sym_COMMA, - STATE(6367), 2, + ACTIONS(9108), 1, + aux_sym__block_terminator_token1, + STATE(6435), 2, sym_comment, sym_include, - [305427] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307881] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8988), 1, - aux_sym_buffer_definition_token2, - STATE(6368), 2, - sym_comment, - sym_include, - [305444] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6586), 1, + ACTIONS(9110), 1, sym__terminator, - STATE(6369), 2, + STATE(6436), 2, sym_comment, sym_include, - [305461] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307898] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(8990), 1, - anon_sym_RBRACE, - STATE(6370), 2, - sym_comment, - sym_include, - [305478] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7221), 1, + ACTIONS(9112), 1, sym__terminator, - STATE(6371), 2, + STATE(6437), 2, sym_comment, sym_include, - [305495] = 5, + [307915] = 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(9114), 1, sym_identifier, - STATE(6372), 2, + STATE(6438), 2, sym_comment, sym_include, - [305512] = 5, + [307932] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8994), 1, + ACTIONS(9116), 1, sym_identifier, - STATE(6373), 2, + STATE(6439), 2, sym_comment, sym_include, - [305529] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307949] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7233), 1, + ACTIONS(9118), 1, sym__terminator, - STATE(6374), 2, + STATE(6440), 2, sym_comment, sym_include, - [305546] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [307966] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8996), 1, - anon_sym_RBRACK, - STATE(6375), 2, + ACTIONS(9120), 1, + anon_sym_RBRACE, + STATE(6441), 2, sym_comment, sym_include, - [305563] = 4, + [307983] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(178), 2, - sym_file_name, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(6376), 2, + ACTIONS(9122), 1, + sym_identifier, + STATE(6442), 2, sym_comment, sym_include, - [305578] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308000] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7360), 1, + ACTIONS(6518), 1, sym__terminator, - STATE(6377), 2, + STATE(6443), 2, sym_comment, sym_include, - [305595] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308017] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7482), 1, - aux_sym_on_error_phrase_token2, - STATE(6378), 2, + ACTIONS(9124), 1, + sym__terminator, + STATE(6444), 2, sym_comment, sym_include, - [305612] = 5, - ACTIONS(3), 1, + [308034] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8998), 1, - sym_identifier, - STATE(6379), 2, + ACTIONS(9126), 1, + aux_sym__block_terminator_token1, + STATE(6445), 2, sym_comment, sym_include, - [305629] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308051] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9000), 1, - sym__terminator, - STATE(6380), 2, + ACTIONS(9128), 1, + aux_sym__block_terminator_token1, + STATE(6446), 2, sym_comment, sym_include, - [305646] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308068] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9002), 1, + ACTIONS(9130), 1, aux_sym__block_terminator_token1, - STATE(6381), 2, + STATE(6447), 2, sym_comment, sym_include, - [305663] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308085] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9004), 1, + ACTIONS(7445), 1, sym__terminator, - STATE(6382), 2, + STATE(6448), 2, sym_comment, sym_include, - [305680] = 5, - ACTIONS(67), 1, + [308102] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9006), 1, - sym__terminator, - STATE(6383), 2, + ACTIONS(9132), 1, + sym_identifier, + STATE(6449), 2, sym_comment, sym_include, - [305697] = 5, - ACTIONS(67), 1, + [308119] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9008), 1, - anon_sym_RBRACE, - STATE(6384), 2, + ACTIONS(9134), 1, + sym_identifier, + STATE(6450), 2, sym_comment, sym_include, - [305714] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308136] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9010), 1, + ACTIONS(9136), 1, sym__terminator, - STATE(6385), 2, + STATE(6451), 2, sym_comment, sym_include, - [305731] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308153] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9012), 1, + ACTIONS(9138), 1, sym__terminator, - STATE(6386), 2, + STATE(6452), 2, sym_comment, sym_include, - [305748] = 5, - ACTIONS(67), 1, + [308170] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9014), 1, - sym__terminator, - STATE(6387), 2, + ACTIONS(9140), 1, + sym_identifier, + STATE(6453), 2, sym_comment, sym_include, - [305765] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308187] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9016), 1, + ACTIONS(9142), 1, sym__terminator, - STATE(6388), 2, + STATE(6454), 2, sym_comment, sym_include, - [305782] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308204] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9018), 1, - anon_sym_EQ, - STATE(6389), 2, + ACTIONS(9144), 1, + anon_sym_DOT, + STATE(6455), 2, sym_comment, sym_include, - [305799] = 5, - ACTIONS(3), 1, + [308221] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9020), 1, - sym_identifier, - STATE(6390), 2, + ACTIONS(9146), 1, + aux_sym__block_terminator_token1, + STATE(6456), 2, sym_comment, sym_include, - [305816] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308238] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9022), 1, + ACTIONS(9148), 1, sym__terminator, - STATE(6391), 2, + STATE(6457), 2, sym_comment, sym_include, - [305833] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308255] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9024), 1, + ACTIONS(8370), 1, sym__terminator, - STATE(6392), 2, + STATE(6458), 2, sym_comment, sym_include, - [305850] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308272] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9026), 1, + ACTIONS(7437), 1, sym__terminator, - STATE(6393), 2, + STATE(6459), 2, sym_comment, sym_include, - [305867] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308289] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9028), 1, - aux_sym__block_terminator_token1, - STATE(6394), 2, + ACTIONS(9150), 1, + anon_sym_DOT, + STATE(6460), 2, sym_comment, sym_include, - [305884] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308306] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9030), 1, + ACTIONS(9152), 1, sym__terminator, - STATE(6395), 2, + STATE(6461), 2, sym_comment, sym_include, - [305901] = 5, - ACTIONS(3), 1, + [308323] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9032), 1, - sym_identifier, - STATE(6396), 2, + ACTIONS(9154), 1, + aux_sym__block_terminator_token1, + STATE(6462), 2, sym_comment, sym_include, - [305918] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308340] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9034), 1, + ACTIONS(9156), 1, sym__terminator, - STATE(6397), 2, + STATE(6463), 2, + sym_comment, + sym_include, + [308357] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9158), 1, + sym__integer_literal, + STATE(6464), 2, sym_comment, sym_include, - [305935] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308374] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9036), 1, - aux_sym__block_terminator_token1, - STATE(6398), 2, + ACTIONS(9160), 1, + sym__terminator, + STATE(6465), 2, sym_comment, sym_include, - [305952] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308391] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9038), 1, + ACTIONS(5136), 1, sym__terminator, - STATE(6399), 2, + STATE(6466), 2, sym_comment, sym_include, - [305969] = 5, + [308408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9040), 1, + ACTIONS(9162), 1, sym_identifier, - STATE(6400), 2, + STATE(6467), 2, sym_comment, sym_include, - [305986] = 5, - ACTIONS(67), 1, + [308425] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9164), 1, + anon_sym_RBRACE, + STATE(6468), 2, + sym_comment, + sym_include, + [308442] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9042), 1, + ACTIONS(9166), 1, sym__terminator, - STATE(6401), 2, + STATE(6469), 2, sym_comment, sym_include, - [306003] = 5, + [308459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(9168), 1, sym_identifier, - STATE(6402), 2, + STATE(6470), 2, sym_comment, sym_include, - [306020] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308476] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6516), 1, + ACTIONS(9170), 1, sym__terminator, - STATE(6403), 2, + STATE(6471), 2, sym_comment, sym_include, - [306037] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308493] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9046), 1, - sym__terminator, - STATE(6404), 2, + ACTIONS(9172), 1, + sym__integer_literal, + STATE(6472), 2, sym_comment, sym_include, - [306054] = 5, - ACTIONS(67), 1, + [308510] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9174), 1, + aux_sym_type_tuning_token1, + STATE(6473), 2, + sym_comment, + sym_include, + [308527] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7379), 1, + ACTIONS(7439), 1, sym__terminator, - STATE(6405), 2, + STATE(6474), 2, sym_comment, sym_include, - [306071] = 5, + [308544] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9048), 1, + ACTIONS(9176), 1, sym_identifier, - STATE(6406), 2, - sym_comment, - sym_include, - [306088] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9050), 1, - aux_sym__block_terminator_token1, - STATE(6407), 2, + STATE(6475), 2, sym_comment, sym_include, - [306105] = 5, - ACTIONS(67), 1, + [308561] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9052), 1, - aux_sym__block_terminator_token1, - STATE(6408), 2, + ACTIONS(9178), 1, + sym_identifier, + STATE(6476), 2, sym_comment, sym_include, - [306122] = 5, + [308578] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9054), 1, + ACTIONS(9180), 1, sym_identifier, - STATE(6409), 2, + STATE(6477), 2, sym_comment, sym_include, - [306139] = 5, + [308595] = 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(9182), 1, sym_identifier, - STATE(6410), 2, + STATE(6478), 2, sym_comment, sym_include, - [306156] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308612] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9058), 1, - sym__terminator, - STATE(6411), 2, - sym_comment, - sym_include, - [306173] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9060), 1, - sym__terminator, - STATE(6412), 2, + ACTIONS(9184), 1, + aux_sym_output_stream_statement_token1, + STATE(6479), 2, sym_comment, sym_include, - [306190] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308629] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6504), 1, - sym__terminator, - STATE(6413), 2, + ACTIONS(9186), 1, + aux_sym__block_terminator_token1, + STATE(6480), 2, sym_comment, sym_include, - [306207] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308646] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7269), 1, - sym__terminator, - STATE(6414), 2, + ACTIONS(9188), 1, + anon_sym_RBRACE, + STATE(6481), 2, sym_comment, sym_include, - [306224] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308663] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8182), 1, - sym__terminator, - STATE(6415), 2, + ACTIONS(9190), 1, + aux_sym_run_tuning_token5, + STATE(6482), 2, sym_comment, sym_include, - [306241] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308680] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7387), 1, + ACTIONS(9192), 1, sym__terminator, - STATE(6416), 2, + STATE(6483), 2, sym_comment, sym_include, - [306258] = 5, + [308697] = 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(9194), 1, sym_identifier, - STATE(6417), 2, + STATE(6484), 2, sym_comment, sym_include, - [306275] = 5, + [308714] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9064), 1, + ACTIONS(9196), 1, sym_identifier, - STATE(6418), 2, + STATE(6485), 2, sym_comment, sym_include, - [306292] = 5, + [308731] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9066), 1, + ACTIONS(9198), 1, sym_identifier, - STATE(6419), 2, + STATE(6486), 2, sym_comment, sym_include, - [306309] = 5, - ACTIONS(3), 1, + [308748] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9068), 1, - sym_identifier, - STATE(6420), 2, + ACTIONS(9200), 1, + sym__terminator, + STATE(6487), 2, sym_comment, sym_include, - [306326] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308765] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9070), 1, - sym__terminator, - STATE(6421), 2, + ACTIONS(9202), 1, + aux_sym_sort_clause_token2, + STATE(6488), 2, sym_comment, sym_include, - [306343] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308782] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9072), 1, - anon_sym_RBRACE, - STATE(6422), 2, + ACTIONS(9204), 1, + aux_sym_buffer_definition_token2, + STATE(6489), 2, sym_comment, sym_include, - [306360] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308799] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9074), 1, - sym__integer_literal, - STATE(6423), 2, + ACTIONS(9206), 1, + aux_sym_buffer_definition_token2, + STATE(6490), 2, sym_comment, sym_include, - [306377] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308816] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6462), 1, - sym__terminator, - STATE(6424), 2, + ACTIONS(9208), 1, + aux_sym_input_expression_token2, + STATE(6491), 2, sym_comment, sym_include, - [306394] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308833] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7403), 1, - sym__terminator, - STATE(6425), 2, + ACTIONS(9210), 1, + aux_sym_buffer_definition_token2, + STATE(6492), 2, sym_comment, sym_include, - [306411] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308850] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9076), 1, - aux_sym__block_terminator_token1, - STATE(6426), 2, + ACTIONS(8092), 1, + anon_sym_DOT, + STATE(6493), 2, sym_comment, sym_include, - [306428] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308867] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9078), 1, + ACTIONS(9212), 1, sym__terminator, - STATE(6427), 2, + STATE(6494), 2, sym_comment, sym_include, - [306445] = 5, - ACTIONS(3), 1, + [308884] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - sym_identifier, - STATE(6428), 2, + ACTIONS(8230), 1, + sym__terminator, + STATE(6495), 2, sym_comment, sym_include, - [306462] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308901] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9082), 1, - anon_sym_RBRACE, - STATE(6429), 2, + ACTIONS(7615), 1, + sym__terminator, + STATE(6496), 2, sym_comment, sym_include, - [306479] = 5, - ACTIONS(3), 1, + [308918] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9084), 1, - sym_identifier, - STATE(6430), 2, + ACTIONS(8254), 1, + sym__terminator, + STATE(6497), 2, sym_comment, sym_include, - [306496] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308935] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(166), 1, + ACTIONS(8242), 1, sym__terminator, - STATE(6431), 2, + STATE(6498), 2, sym_comment, sym_include, - [306513] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308952] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6514), 1, + ACTIONS(9214), 1, sym__terminator, - STATE(6432), 2, + STATE(6499), 2, sym_comment, sym_include, - [306530] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308969] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9086), 1, - aux_sym_output_stream_statement_token1, - STATE(6433), 2, + ACTIONS(9216), 1, + sym__terminator, + STATE(6500), 2, sym_comment, sym_include, - [306547] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [308986] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9088), 1, - anon_sym_RBRACE, - STATE(6434), 2, + ACTIONS(9218), 1, + sym__terminator, + STATE(6501), 2, sym_comment, sym_include, - [306564] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309003] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7395), 1, + ACTIONS(9220), 1, sym__terminator, - STATE(6435), 2, + STATE(6502), 2, sym_comment, sym_include, - [306581] = 5, - ACTIONS(67), 1, + [309020] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9090), 1, - sym__terminator, - STATE(6436), 2, + ACTIONS(9222), 1, + sym_identifier, + STATE(6503), 2, sym_comment, sym_include, - [306598] = 5, + [309037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9092), 1, + ACTIONS(9224), 1, sym_identifier, - STATE(6437), 2, + STATE(6504), 2, sym_comment, sym_include, - [306615] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309054] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5124), 1, - sym__terminator, - STATE(6438), 2, + ACTIONS(7186), 1, + aux_sym_of_token1, + STATE(6505), 2, sym_comment, sym_include, - [306632] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309071] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9094), 1, - sym__terminator, - STATE(6439), 2, + ACTIONS(9226), 1, + aux_sym_image_phrase_token3, + STATE(6506), 2, sym_comment, sym_include, - [306649] = 5, + [309088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9096), 1, + ACTIONS(9228), 1, sym_identifier, - STATE(6440), 2, + STATE(6507), 2, sym_comment, sym_include, - [306666] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309105] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9098), 1, - sym__terminator, - STATE(6441), 2, + ACTIONS(9230), 1, + sym__integer_literal, + STATE(6508), 2, sym_comment, sym_include, - [306683] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309122] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9100), 1, - sym__terminator, - STATE(6442), 2, + ACTIONS(9232), 1, + aux_sym_sort_clause_token2, + STATE(6509), 2, sym_comment, sym_include, - [306700] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309139] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9102), 1, - aux_sym_input_expression_token2, - STATE(6443), 2, + ACTIONS(9234), 1, + sym__terminator, + STATE(6510), 2, sym_comment, sym_include, - [306717] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309156] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9104), 1, - sym__terminator, - STATE(6444), 2, + ACTIONS(9236), 1, + anon_sym_LPAREN, + STATE(6511), 2, sym_comment, sym_include, - [306734] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309173] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7924), 1, - anon_sym_DOT, - STATE(6445), 2, + ACTIONS(9238), 1, + anon_sym_LPAREN, + STATE(6512), 2, sym_comment, sym_include, - [306751] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309190] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7171), 1, + ACTIONS(9240), 1, sym__terminator, - STATE(6446), 2, + STATE(6513), 2, sym_comment, sym_include, - [306768] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309207] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9106), 1, - aux_sym_run_tuning_token5, - STATE(6447), 2, + ACTIONS(9242), 1, + sym__terminator, + STATE(6514), 2, sym_comment, sym_include, - [306785] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309224] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(7625), 1, sym__terminator, - STATE(6448), 2, + STATE(6515), 2, sym_comment, sym_include, - [306802] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309241] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9108), 1, + ACTIONS(6649), 1, sym__terminator, - STATE(6449), 2, + STATE(6516), 2, sym_comment, sym_include, - [306819] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309258] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9110), 1, - anon_sym_COMMA, - STATE(6450), 2, + ACTIONS(9028), 1, + aux_sym_image_phrase_token10, + STATE(6517), 2, sym_comment, sym_include, - [306836] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309275] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9112), 1, + ACTIONS(9244), 1, sym__terminator, - STATE(6451), 2, + STATE(6518), 2, sym_comment, sym_include, - [306853] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309292] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9114), 1, + ACTIONS(9246), 1, sym__terminator, - STATE(6452), 2, + STATE(6519), 2, sym_comment, sym_include, - [306870] = 5, - ACTIONS(67), 1, + [309309] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9248), 1, + anon_sym_DOT, + STATE(6520), 2, + sym_comment, + sym_include, + [309326] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9116), 1, + ACTIONS(9250), 1, sym__terminator, - STATE(6453), 2, + STATE(6521), 2, sym_comment, sym_include, - [306887] = 5, - ACTIONS(3), 1, + [309343] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9118), 1, - sym_identifier, - STATE(6454), 2, + ACTIONS(9252), 1, + aux_sym_field_option_token7, + STATE(6522), 2, sym_comment, sym_include, - [306904] = 5, - ACTIONS(67), 1, + [309360] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9254), 1, + anon_sym_RPAREN, + STATE(6523), 2, + sym_comment, + sym_include, + [309377] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9120), 1, - sym__terminator, - STATE(6455), 2, + ACTIONS(9256), 1, + aux_sym__block_terminator_token1, + STATE(6524), 2, sym_comment, sym_include, - [306921] = 5, - ACTIONS(67), 1, + [309394] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9258), 1, + aux_sym__block_terminator_token1, + STATE(6525), 2, + sym_comment, + sym_include, + [309411] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8178), 1, - sym__terminator, - STATE(6456), 2, + ACTIONS(9260), 1, + aux_sym__block_terminator_token1, + STATE(6526), 2, sym_comment, sym_include, - [306938] = 5, - ACTIONS(67), 1, + [309428] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9122), 1, - sym__terminator, - STATE(6457), 2, + ACTIONS(9262), 1, + sym_identifier, + STATE(6527), 2, sym_comment, sym_include, - [306955] = 5, + [309445] = 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(9264), 1, sym_identifier, - STATE(6458), 2, + STATE(6528), 2, sym_comment, sym_include, - [306972] = 5, - ACTIONS(67), 1, + [309462] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(9266), 1, + sym_identifier, + STATE(6529), 2, + sym_comment, + sym_include, + [309479] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9126), 1, + ACTIONS(9268), 1, sym__terminator, - STATE(6459), 2, + STATE(6530), 2, sym_comment, sym_include, - [306989] = 5, - ACTIONS(67), 1, + [309496] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9270), 1, + aux_sym_buffer_definition_token2, + STATE(6531), 2, + sym_comment, + sym_include, + [309513] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9128), 1, + ACTIONS(9272), 1, sym__terminator, - STATE(6460), 2, + STATE(6532), 2, sym_comment, sym_include, - [307006] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309530] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9130), 1, - sym__terminator, - STATE(6461), 2, + ACTIONS(8168), 1, + aux_sym_primitive_type_token1, + STATE(6533), 2, sym_comment, sym_include, - [307023] = 5, + [309547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9132), 1, + ACTIONS(4409), 1, sym_identifier, - STATE(6462), 2, + STATE(6534), 2, + sym_comment, + sym_include, + [309564] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(7786), 1, + anon_sym_DOT, + STATE(6535), 2, sym_comment, sym_include, - [307040] = 5, + [309581] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9134), 1, + ACTIONS(9274), 1, sym_identifier, - STATE(6463), 2, + STATE(6536), 2, sym_comment, sym_include, - [307057] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309598] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9136), 1, - sym__terminator, - STATE(6464), 2, + ACTIONS(9276), 1, + anon_sym_RBRACE, + STATE(6537), 2, sym_comment, sym_include, - [307074] = 5, + [309615] = 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(9278), 1, sym_identifier, - STATE(6465), 2, + STATE(6538), 2, sym_comment, sym_include, - [307091] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309632] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9140), 1, - anon_sym_COMMA, - STATE(6466), 2, + ACTIONS(9280), 1, + sym__terminator, + STATE(6539), 2, sym_comment, sym_include, - [307108] = 5, - ACTIONS(67), 1, + [309649] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9142), 1, - sym__terminator, - STATE(6467), 2, + ACTIONS(9282), 1, + sym_identifier, + STATE(6540), 2, sym_comment, sym_include, - [307125] = 5, - ACTIONS(67), 1, + [309666] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9144), 1, - anon_sym_RBRACE, - STATE(6468), 2, + ACTIONS(9284), 1, + sym_identifier, + STATE(6541), 2, sym_comment, sym_include, - [307142] = 5, - ACTIONS(67), 1, + [309683] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9146), 1, - sym__terminator, - STATE(6469), 2, + ACTIONS(9286), 1, + sym_identifier, + STATE(6542), 2, sym_comment, sym_include, - [307159] = 5, - ACTIONS(67), 1, + [309700] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9148), 1, - sym__integer_literal, - STATE(6470), 2, + ACTIONS(9288), 1, + sym_identifier, + STATE(6543), 2, sym_comment, sym_include, - [307176] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309717] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9150), 1, - aux_sym__block_terminator_token1, - STATE(6471), 2, + ACTIONS(9290), 1, + anon_sym_RBRACK, + STATE(6544), 2, sym_comment, sym_include, - [307193] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309734] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, - sym__terminator, - STATE(6472), 2, + ACTIONS(9292), 1, + aux_sym__block_terminator_token1, + STATE(6545), 2, sym_comment, sym_include, - [307210] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309751] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9152), 1, + ACTIONS(9294), 1, sym__terminator, - STATE(6473), 2, + STATE(6546), 2, sym_comment, sym_include, - [307227] = 5, + [309768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9154), 1, + ACTIONS(9296), 1, sym_identifier, - STATE(6474), 2, + STATE(6547), 2, sym_comment, sym_include, - [307244] = 5, + [309785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9156), 1, + ACTIONS(9298), 1, sym_identifier, - STATE(6475), 2, + STATE(6548), 2, sym_comment, sym_include, - [307261] = 5, + [309802] = 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(9300), 1, sym_identifier, - STATE(6476), 2, + STATE(6549), 2, sym_comment, sym_include, - [307278] = 5, - ACTIONS(3), 1, + [309819] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9160), 1, - sym_identifier, - STATE(6477), 2, + ACTIONS(9302), 1, + aux_sym_do_block_token1, + STATE(6550), 2, sym_comment, sym_include, - [307295] = 5, - ACTIONS(67), 1, + [309836] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9304), 1, + aux_sym__block_terminator_token1, + STATE(6551), 2, + sym_comment, + sym_include, + [309853] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9162), 1, - anon_sym_RBRACE, - STATE(6478), 2, + ACTIONS(9306), 1, + anon_sym_COMMA, + STATE(6552), 2, sym_comment, sym_include, - [307312] = 5, + [309870] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9164), 1, + ACTIONS(9308), 1, sym_identifier, - STATE(6479), 2, + STATE(6553), 2, sym_comment, sym_include, - [307329] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [309887] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9166), 1, - anon_sym_RBRACE, - STATE(6480), 2, - sym_comment, - sym_include, - [307346] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7447), 1, + ACTIONS(9310), 1, sym__terminator, - STATE(6481), 2, + STATE(6554), 2, sym_comment, sym_include, - [307363] = 5, - ACTIONS(67), 1, + [309904] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9168), 1, - aux_sym__block_terminator_token1, - STATE(6482), 2, + ACTIONS(9312), 1, + sym_identifier, + STATE(6555), 2, sym_comment, sym_include, - [307380] = 5, + [309921] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9170), 1, + ACTIONS(9314), 1, sym_identifier, - STATE(6483), 2, + STATE(6556), 2, sym_comment, sym_include, - [307397] = 5, - ACTIONS(3), 1, + [309938] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9172), 1, - sym_identifier, - STATE(6484), 2, + ACTIONS(9316), 1, + anon_sym_COMMA, + STATE(6557), 2, + sym_comment, + sym_include, + [309955] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9318), 1, + sym__terminator, + STATE(6558), 2, sym_comment, sym_include, - [307414] = 5, + [309972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9174), 1, + ACTIONS(9320), 1, sym_identifier, - STATE(6485), 2, + STATE(6559), 2, sym_comment, sym_include, - [307431] = 5, + [309989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9176), 1, + ACTIONS(9322), 1, sym_identifier, - STATE(6486), 2, + STATE(6560), 2, sym_comment, sym_include, - [307448] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310006] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9178), 1, - aux_sym__block_terminator_token1, - STATE(6487), 2, + ACTIONS(9324), 1, + sym__terminator, + STATE(6561), 2, sym_comment, sym_include, - [307465] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310023] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8044), 1, + ACTIONS(9326), 1, sym__terminator, - STATE(6488), 2, + STATE(6562), 2, sym_comment, sym_include, - [307482] = 5, - ACTIONS(3), 1, + [310040] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9180), 1, - sym_identifier, - STATE(6489), 2, + ACTIONS(9328), 1, + anon_sym_RBRACE, + STATE(6563), 2, sym_comment, sym_include, - [307499] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310057] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9182), 1, + ACTIONS(9330), 1, anon_sym_LPAREN, - STATE(6490), 2, + STATE(6564), 2, sym_comment, sym_include, - [307516] = 5, + [310074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9184), 1, + ACTIONS(9332), 1, sym_identifier, - STATE(6491), 2, + STATE(6565), 2, sym_comment, sym_include, - [307533] = 5, + [310091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9186), 1, + ACTIONS(9334), 1, sym_identifier, - STATE(6492), 2, + STATE(6566), 2, sym_comment, sym_include, - [307550] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310108] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9188), 1, - anon_sym_RBRACK, - STATE(6493), 2, + ACTIONS(9336), 1, + sym__terminator, + STATE(6567), 2, sym_comment, sym_include, - [307567] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310125] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9190), 1, + ACTIONS(9338), 1, sym__terminator, - STATE(6494), 2, + STATE(6568), 2, sym_comment, sym_include, - [307584] = 5, + [310142] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9192), 1, + ACTIONS(9340), 1, sym_identifier, - STATE(6495), 2, + STATE(6569), 2, sym_comment, sym_include, - [307601] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310159] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9194), 1, + ACTIONS(9342), 1, aux_sym__block_terminator_token1, - STATE(6496), 2, + STATE(6570), 2, sym_comment, sym_include, - [307618] = 5, - ACTIONS(3), 1, + [310176] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9196), 1, - sym_identifier, - STATE(6497), 2, + ACTIONS(8114), 1, + sym__terminator, + STATE(6571), 2, sym_comment, sym_include, - [307635] = 5, - ACTIONS(67), 1, + [310193] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9198), 1, - aux_sym_do_block_token1, - STATE(6498), 2, + ACTIONS(9344), 1, + sym_identifier, + STATE(6572), 2, sym_comment, sym_include, - [307652] = 5, - ACTIONS(67), 1, + [310210] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9200), 1, - anon_sym_COMMA, - STATE(6499), 2, + ACTIONS(9346), 1, + sym_identifier, + STATE(6573), 2, sym_comment, sym_include, - [307669] = 5, + [310227] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9202), 1, + ACTIONS(9348), 1, sym_identifier, - STATE(6500), 2, + STATE(6574), 2, sym_comment, sym_include, - [307686] = 5, + [310244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9204), 1, + ACTIONS(9350), 1, sym_identifier, - STATE(6501), 2, + STATE(6575), 2, sym_comment, sym_include, - [307703] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310261] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9206), 1, + ACTIONS(9352), 1, sym__terminator, - STATE(6502), 2, + STATE(6576), 2, sym_comment, sym_include, - [307720] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310278] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9208), 1, - anon_sym_COMMA, - STATE(6503), 2, + ACTIONS(8100), 1, + sym__terminator, + STATE(6577), 2, sym_comment, sym_include, - [307737] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310295] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9210), 1, - anon_sym_COMMA, - STATE(6504), 2, + ACTIONS(9354), 1, + aux_sym__block_terminator_token1, + STATE(6578), 2, sym_comment, sym_include, - [307754] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310312] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9212), 1, - anon_sym_RBRACE, - STATE(6505), 2, + ACTIONS(9356), 1, + aux_sym__block_terminator_token1, + STATE(6579), 2, sym_comment, sym_include, - [307771] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310329] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9214), 1, + ACTIONS(9358), 1, anon_sym_COMMA, - STATE(6506), 2, + STATE(6580), 2, sym_comment, sym_include, - [307788] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310346] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9216), 1, - sym__integer_literal, - STATE(6507), 2, + ACTIONS(9360), 1, + aux_sym__block_terminator_token1, + STATE(6581), 2, sym_comment, sym_include, - [307805] = 5, - ACTIONS(3), 1, + [310363] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9218), 1, - sym_identifier, - STATE(6508), 2, + ACTIONS(9362), 1, + sym__terminator, + STATE(6582), 2, sym_comment, sym_include, - [307822] = 5, - ACTIONS(67), 1, + [310380] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9364), 1, + sym__terminator, + STATE(6583), 2, + sym_comment, + sym_include, + [310397] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9220), 1, + ACTIONS(9366), 1, aux_sym_buffer_definition_token2, - STATE(6509), 2, + STATE(6584), 2, sym_comment, sym_include, - [307839] = 5, + [310414] = 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(9368), 1, sym_identifier, - STATE(6510), 2, + STATE(6585), 2, sym_comment, sym_include, - [307856] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310431] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9224), 1, + ACTIONS(9370), 1, aux_sym_buffer_definition_token2, - STATE(6511), 2, + STATE(6586), 2, sym_comment, sym_include, - [307873] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310448] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9226), 1, + ACTIONS(9372), 1, aux_sym_buffer_definition_token2, - STATE(6512), 2, + STATE(6587), 2, sym_comment, sym_include, - [307890] = 5, + [310465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9228), 1, + ACTIONS(9374), 1, sym_identifier, - STATE(6513), 2, + STATE(6588), 2, sym_comment, sym_include, - [307907] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310482] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, + ACTIONS(9376), 1, aux_sym_on_error_phrase_token3, - STATE(6514), 2, + STATE(6589), 2, sym_comment, sym_include, - [307924] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310499] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9232), 1, + ACTIONS(9378), 1, aux_sym_on_error_phrase_token3, - STATE(6515), 2, + STATE(6590), 2, sym_comment, sym_include, - [307941] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310516] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7484), 1, + ACTIONS(7333), 1, aux_sym_on_stop_phrase_token1, - STATE(6516), 2, + STATE(6591), 2, sym_comment, sym_include, - [307958] = 5, - ACTIONS(3), 1, + [310533] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9234), 1, - sym_identifier, - STATE(6517), 2, + ACTIONS(9380), 1, + sym__terminator, + STATE(6592), 2, sym_comment, sym_include, - [307975] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310550] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6896), 1, + ACTIONS(6830), 1, aux_sym_of_token1, - STATE(6518), 2, + STATE(6593), 2, + sym_comment, + sym_include, + [310567] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9382), 1, + anon_sym_RBRACK, + STATE(6594), 2, + sym_comment, + sym_include, + [310584] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9384), 1, + aux_sym__block_terminator_token1, + STATE(6595), 2, sym_comment, sym_include, - [307992] = 5, - ACTIONS(67), 1, + [310601] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9386), 1, + sym__terminator, + STATE(6596), 2, + sym_comment, + sym_include, + [310618] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7499), 1, + ACTIONS(9388), 1, sym__terminator, - STATE(6519), 2, + STATE(6597), 2, sym_comment, sym_include, - [308009] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310635] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9236), 1, - sym__terminator, - STATE(6520), 2, + ACTIONS(7353), 1, + aux_sym_on_error_phrase_token2, + STATE(6598), 2, sym_comment, sym_include, - [308026] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310652] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9238), 1, - anon_sym_RBRACE, - STATE(6521), 2, + ACTIONS(9390), 1, + aux_sym_buffer_definition_token2, + STATE(6599), 2, sym_comment, sym_include, - [308043] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310669] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7465), 1, - sym__terminator, - STATE(6522), 2, + ACTIONS(9392), 1, + aux_sym_buffer_definition_token2, + STATE(6600), 2, sym_comment, sym_include, - [308060] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310686] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9240), 1, + ACTIONS(9394), 1, aux_sym_buffer_definition_token2, - STATE(6523), 2, + STATE(6601), 2, sym_comment, sym_include, - [308077] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310703] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9242), 1, - aux_sym_buffer_definition_token2, - STATE(6524), 2, + ACTIONS(9396), 1, + aux_sym_of_token1, + STATE(6602), 2, sym_comment, sym_include, - [308094] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310720] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9244), 1, - aux_sym_buffer_definition_token2, - STATE(6525), 2, + ACTIONS(9398), 1, + aux_sym__block_terminator_token1, + STATE(6603), 2, sym_comment, sym_include, - [308111] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310737] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9246), 1, - aux_sym_of_token1, - STATE(6526), 2, + ACTIONS(9400), 1, + sym__terminator, + STATE(6604), 2, sym_comment, sym_include, - [308128] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310754] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9248), 1, - sym__terminator, - STATE(6527), 2, + ACTIONS(9402), 1, + sym__integer_literal, + STATE(6605), 2, sym_comment, sym_include, - [308145] = 5, + [310771] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9250), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(6528), 2, + STATE(6606), 2, sym_comment, sym_include, - [308162] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310788] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7473), 1, - sym__terminator, - STATE(6529), 2, + ACTIONS(9406), 1, + aux_sym__block_terminator_token1, + STATE(6607), 2, sym_comment, sym_include, - [308179] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310805] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9252), 1, - anon_sym_RBRACK, - STATE(6530), 2, + ACTIONS(9408), 1, + sym__terminator, + STATE(6608), 2, sym_comment, sym_include, - [308196] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310822] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9254), 1, - aux_sym__block_terminator_token1, - STATE(6531), 2, + ACTIONS(9410), 1, + anon_sym_RBRACE, + STATE(6609), 2, sym_comment, sym_include, - [308213] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310839] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7507), 1, - sym__terminator, - STATE(6532), 2, + ACTIONS(9412), 1, + anon_sym_RBRACE, + STATE(6610), 2, sym_comment, sym_include, - [308230] = 5, + [310856] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9256), 1, + ACTIONS(9414), 1, sym_identifier, - STATE(6533), 2, + STATE(6611), 2, sym_comment, sym_include, - [308247] = 5, - ACTIONS(3), 1, + [310873] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9258), 1, - sym_identifier, - STATE(6534), 2, + ACTIONS(7409), 1, + aux_sym_on_stop_phrase_token1, + STATE(6612), 2, sym_comment, sym_include, - [308264] = 5, + [310890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9260), 1, + ACTIONS(9416), 1, sym_identifier, - STATE(6535), 2, + STATE(6613), 2, sym_comment, sym_include, - [308281] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310907] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9262), 1, - sym__terminator, - STATE(6536), 2, - sym_comment, - sym_include, - [308298] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6638), 1, + ACTIONS(5150), 1, sym__terminator, - STATE(6537), 2, + STATE(6614), 2, sym_comment, sym_include, - [308315] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310924] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9264), 1, - sym__terminator, - STATE(6538), 2, - sym_comment, - sym_include, - [308332] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9266), 1, + ACTIONS(9418), 1, anon_sym_LPAREN, - STATE(6539), 2, + STATE(6615), 2, sym_comment, sym_include, - [308349] = 5, + [310941] = 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(9420), 1, sym_identifier, - STATE(6540), 2, + STATE(6616), 2, sym_comment, sym_include, - [308366] = 5, + [310958] = 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(9422), 1, sym_identifier, - STATE(6541), 2, + STATE(6617), 2, sym_comment, sym_include, - [308383] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310975] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6900), 1, - aux_sym_of_token1, - STATE(6542), 2, + ACTIONS(9424), 1, + aux_sym__block_terminator_token1, + STATE(6618), 2, sym_comment, sym_include, - [308400] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [310992] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9272), 1, + ACTIONS(9426), 1, sym__terminator, - STATE(6543), 2, + STATE(6619), 2, sym_comment, sym_include, - [308417] = 5, + [311009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9274), 1, + ACTIONS(9428), 1, sym_identifier, - STATE(6544), 2, + STATE(6620), 2, sym_comment, sym_include, - [308434] = 5, - ACTIONS(3), 1, + [311026] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9276), 1, - sym_identifier, - STATE(6545), 2, + ACTIONS(9430), 1, + sym__terminator, + STATE(6621), 2, sym_comment, sym_include, - [308451] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311043] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9278), 1, - sym__terminator, - STATE(6546), 2, + ACTIONS(9432), 1, + anon_sym_RBRACE, + STATE(6622), 2, sym_comment, sym_include, - [308468] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311060] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9280), 1, + ACTIONS(9434), 1, aux_sym__block_terminator_token1, - STATE(6547), 2, + STATE(6623), 2, sym_comment, sym_include, - [308485] = 5, + [311077] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9282), 1, + ACTIONS(9436), 1, sym_identifier, - STATE(6548), 2, + STATE(6624), 2, sym_comment, sym_include, - [308502] = 5, + [311094] = 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(9438), 1, sym_identifier, - STATE(6549), 2, + STATE(6625), 2, sym_comment, sym_include, - [308519] = 5, + [311111] = 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(9440), 1, sym_identifier, - STATE(6550), 2, - sym_comment, - sym_include, - [308536] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, - ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9288), 1, - sym__terminator, - STATE(6551), 2, + STATE(6626), 2, sym_comment, sym_include, - [308553] = 5, + [311128] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9290), 1, + ACTIONS(9442), 1, sym_identifier, - STATE(6552), 2, + STATE(6627), 2, sym_comment, sym_include, - [308570] = 5, + [311145] = 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(9444), 1, sym_identifier, - STATE(6553), 2, + STATE(6628), 2, sym_comment, sym_include, - [308587] = 5, - ACTIONS(3), 1, + [311162] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9294), 1, - sym_identifier, - STATE(6554), 2, + ACTIONS(9446), 1, + aux_sym__block_terminator_token1, + STATE(6629), 2, sym_comment, sym_include, - [308604] = 5, - ACTIONS(67), 1, + [311179] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9448), 1, + sym__terminator, + STATE(6630), 2, + sym_comment, + sym_include, + [311196] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_COMMA, - STATE(6555), 2, + STATE(6631), 2, sym_comment, sym_include, - [308621] = 5, + [311213] = 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(9452), 1, sym_identifier, - STATE(6556), 2, + STATE(6632), 2, sym_comment, sym_include, - [308638] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311230] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9300), 1, + ACTIONS(5132), 1, sym__terminator, - STATE(6557), 2, + STATE(6633), 2, sym_comment, sym_include, - [308655] = 5, - ACTIONS(67), 1, + [311247] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + sym__terminator, + STATE(6634), 2, + sym_comment, + sym_include, + [311264] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9302), 1, + ACTIONS(9454), 1, aux_sym_buffer_definition_token2, - STATE(6558), 2, + STATE(6635), 2, sym_comment, sym_include, - [308672] = 5, + [311281] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9304), 1, + ACTIONS(9456), 1, sym_identifier, - STATE(6559), 2, + STATE(6636), 2, sym_comment, sym_include, - [308689] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311298] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9458), 1, aux_sym_buffer_definition_token2, - STATE(6560), 2, + STATE(6637), 2, sym_comment, sym_include, - [308706] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311315] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9308), 1, + ACTIONS(9460), 1, aux_sym_buffer_definition_token2, - STATE(6561), 2, + STATE(6638), 2, sym_comment, sym_include, - [308723] = 5, + [311332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9310), 1, + ACTIONS(9462), 1, sym_identifier, - STATE(6562), 2, + STATE(6639), 2, sym_comment, sym_include, - [308740] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311349] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9464), 1, aux_sym_on_error_phrase_token3, - STATE(6563), 2, + STATE(6640), 2, sym_comment, sym_include, - [308757] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311366] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9314), 1, + ACTIONS(8016), 1, sym__terminator, - STATE(6564), 2, + STATE(6641), 2, sym_comment, sym_include, - [308774] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311383] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6858), 1, + ACTIONS(6824), 1, aux_sym_of_token1, - STATE(6565), 2, + STATE(6642), 2, sym_comment, sym_include, - [308791] = 5, - ACTIONS(67), 1, + [311400] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7730), 1, - anon_sym_DOT, - STATE(6566), 2, + ACTIONS(9466), 1, + sym_identifier, + STATE(6643), 2, sym_comment, sym_include, - [308808] = 5, - ACTIONS(67), 1, + [311417] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9316), 1, - anon_sym_LPAREN, - STATE(6567), 2, + ACTIONS(9468), 1, + sym_identifier, + STATE(6644), 2, sym_comment, sym_include, - [308825] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311434] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9318), 1, - sym__terminator, - STATE(6568), 2, + ACTIONS(9470), 1, + anon_sym_RBRACE, + STATE(6645), 2, sym_comment, sym_include, - [308842] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311451] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9320), 1, - sym__terminator, - STATE(6569), 2, + ACTIONS(9472), 1, + aux_sym_on_error_phrase_token3, + STATE(6646), 2, sym_comment, sym_include, - [308859] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311468] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9322), 1, - aux_sym_buffer_definition_token2, - STATE(6570), 2, + ACTIONS(9474), 1, + aux_sym__block_terminator_token1, + STATE(6647), 2, sym_comment, sym_include, - [308876] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311485] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9324), 1, + ACTIONS(9476), 1, aux_sym_buffer_definition_token2, - STATE(6571), 2, + STATE(6648), 2, sym_comment, sym_include, - [308893] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311502] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9326), 1, + ACTIONS(9478), 1, aux_sym_buffer_definition_token2, - STATE(6572), 2, + STATE(6649), 2, sym_comment, sym_include, - [308910] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311519] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9328), 1, - aux_sym_of_token1, - STATE(6573), 2, + ACTIONS(9480), 1, + aux_sym_buffer_definition_token2, + STATE(6650), 2, sym_comment, sym_include, - [308927] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311536] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9330), 1, - aux_sym__block_terminator_token1, - STATE(6574), 2, + ACTIONS(9482), 1, + aux_sym_of_token1, + STATE(6651), 2, sym_comment, sym_include, - [308944] = 5, - ACTIONS(3), 1, + [311553] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9332), 1, - sym_identifier, - STATE(6575), 2, + ACTIONS(9484), 1, + sym__terminator, + STATE(6652), 2, sym_comment, sym_include, - [308961] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311570] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9334), 1, - sym__terminator, - STATE(6576), 2, + ACTIONS(9486), 1, + aux_sym_on_error_phrase_token3, + STATE(6653), 2, sym_comment, sym_include, - [308978] = 5, + [311587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9336), 1, + ACTIONS(9488), 1, sym_identifier, - STATE(6577), 2, + STATE(6654), 2, sym_comment, sym_include, - [308995] = 5, - ACTIONS(3), 1, + [311604] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9338), 1, - sym_identifier, - STATE(6578), 2, + ACTIONS(9490), 1, + aux_sym__block_terminator_token1, + STATE(6655), 2, sym_comment, sym_include, - [309012] = 5, - ACTIONS(3), 1, + [311621] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9340), 1, - sym_identifier, - STATE(6579), 2, + ACTIONS(9492), 1, + anon_sym_LPAREN, + STATE(6656), 2, sym_comment, sym_include, - [309029] = 5, - ACTIONS(3), 1, + [311638] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9342), 1, - sym_identifier, - STATE(6580), 2, + ACTIONS(9494), 1, + sym__integer_literal, + STATE(6657), 2, + sym_comment, + sym_include, + [311655] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9496), 1, + anon_sym_RBRACE, + STATE(6658), 2, sym_comment, sym_include, - [309046] = 5, + [311672] = 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(9498), 1, sym_identifier, - STATE(6581), 2, + STATE(6659), 2, sym_comment, sym_include, - [309063] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311689] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9346), 1, - aux_sym__block_terminator_token1, - STATE(6582), 2, + ACTIONS(9500), 1, + anon_sym_RBRACE, + STATE(6660), 2, sym_comment, sym_include, - [309080] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311706] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9348), 1, - aux_sym__block_terminator_token1, - STATE(6583), 2, + ACTIONS(9502), 1, + sym__terminator, + STATE(6661), 2, sym_comment, sym_include, - [309097] = 5, - ACTIONS(67), 1, + [311723] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9350), 1, - sym__terminator, - STATE(6584), 2, + ACTIONS(9504), 1, + sym_identifier, + STATE(6662), 2, sym_comment, sym_include, - [309114] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311740] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9352), 1, + ACTIONS(9506), 1, anon_sym_LPAREN, - STATE(6585), 2, + STATE(6663), 2, sym_comment, sym_include, - [309131] = 5, + [311757] = 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(9508), 1, sym_identifier, - STATE(6586), 2, + STATE(6664), 2, sym_comment, sym_include, - [309148] = 5, + [311774] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9356), 1, + ACTIONS(9510), 1, sym_identifier, - STATE(6587), 2, + STATE(6665), 2, sym_comment, sym_include, - [309165] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311791] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9358), 1, - aux_sym__block_terminator_token1, - STATE(6588), 2, + ACTIONS(6569), 1, + sym__terminator, + STATE(6666), 2, sym_comment, sym_include, - [309182] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311808] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9360), 1, + ACTIONS(5146), 1, sym__terminator, - STATE(6589), 2, + STATE(6667), 2, sym_comment, sym_include, - [309199] = 5, + [311825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9362), 1, + ACTIONS(9512), 1, sym_identifier, - STATE(6590), 2, + STATE(6668), 2, sym_comment, sym_include, - [309216] = 5, - ACTIONS(67), 1, + [311842] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9364), 1, - sym__terminator, - STATE(6591), 2, + ACTIONS(9514), 1, + sym_identifier, + STATE(6669), 2, sym_comment, sym_include, - [309233] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311859] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9366), 1, - sym__terminator, - STATE(6592), 2, + ACTIONS(9516), 1, + aux_sym_output_stream_statement_token1, + STATE(6670), 2, sym_comment, sym_include, - [309250] = 5, + [311876] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9368), 1, + ACTIONS(9518), 1, sym_identifier, - STATE(6593), 2, + STATE(6671), 2, sym_comment, sym_include, - [309267] = 5, - ACTIONS(67), 1, + [311893] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9370), 1, - sym__terminator, - STATE(6594), 2, + ACTIONS(9520), 1, + sym_identifier, + STATE(6672), 2, sym_comment, sym_include, - [309284] = 5, + [311910] = 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(9522), 1, sym_identifier, - STATE(6595), 2, + STATE(6673), 2, sym_comment, sym_include, - [309301] = 5, + [311927] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9374), 1, + ACTIONS(9524), 1, sym_identifier, - STATE(6596), 2, + STATE(6674), 2, sym_comment, sym_include, - [309318] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311944] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_RBRACE, - STATE(6597), 2, + ACTIONS(9526), 1, + sym__terminator, + STATE(6675), 2, sym_comment, sym_include, - [309335] = 5, - ACTIONS(67), 1, + [311961] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9378), 1, - aux_sym_output_stream_statement_token1, - STATE(6598), 2, + ACTIONS(9528), 1, + sym_identifier, + STATE(6676), 2, sym_comment, sym_include, - [309352] = 5, - ACTIONS(67), 1, + [311978] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9380), 1, - sym__integer_literal, - STATE(6599), 2, + ACTIONS(9530), 1, + sym_identifier, + STATE(6677), 2, sym_comment, sym_include, - [309369] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [311995] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9382), 1, + ACTIONS(9532), 1, anon_sym_COMMA, - STATE(6600), 2, + STATE(6678), 2, sym_comment, sym_include, - [309386] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312012] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9534), 1, sym__terminator, - STATE(6601), 2, + STATE(6679), 2, sym_comment, sym_include, - [309403] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312029] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9386), 1, + ACTIONS(7699), 1, sym__terminator, - STATE(6602), 2, + STATE(6680), 2, sym_comment, sym_include, - [309420] = 5, - ACTIONS(67), 1, + [312046] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9536), 1, + anon_sym_RBRACE, + STATE(6681), 2, + sym_comment, + sym_include, + [312063] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9388), 1, + ACTIONS(9538), 1, aux_sym_buffer_definition_token2, - STATE(6603), 2, + STATE(6682), 2, sym_comment, sym_include, - [309437] = 5, + [312080] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9390), 1, + ACTIONS(9540), 1, sym_identifier, - STATE(6604), 2, + STATE(6683), 2, sym_comment, sym_include, - [309454] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312097] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9392), 1, + ACTIONS(9542), 1, aux_sym_buffer_definition_token2, - STATE(6605), 2, + STATE(6684), 2, sym_comment, sym_include, - [309471] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312114] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9394), 1, + ACTIONS(9544), 1, aux_sym_buffer_definition_token2, - STATE(6606), 2, + STATE(6685), 2, sym_comment, sym_include, - [309488] = 5, + [312131] = 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(9546), 1, sym_identifier, - STATE(6607), 2, + STATE(6686), 2, sym_comment, sym_include, - [309505] = 5, - ACTIONS(67), 1, + [312148] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7423), 1, - aux_sym_on_stop_phrase_token1, - STATE(6608), 2, + ACTIONS(9548), 1, + sym_identifier, + STATE(6687), 2, sym_comment, sym_include, - [309522] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312165] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6848), 1, + ACTIONS(6813), 1, aux_sym_of_token1, - STATE(6609), 2, + STATE(6688), 2, sym_comment, sym_include, - [309539] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312182] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9398), 1, - sym__terminator, - STATE(6610), 2, + ACTIONS(9550), 1, + aux_sym__block_terminator_token1, + STATE(6689), 2, sym_comment, sym_include, - [309556] = 5, - ACTIONS(67), 1, + [312199] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9400), 1, - sym__terminator, - STATE(6611), 2, + ACTIONS(9552), 1, + sym_identifier, + STATE(6690), 2, sym_comment, sym_include, - [309573] = 5, - ACTIONS(67), 1, + [312216] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(9554), 1, + sym_identifier, + STATE(6691), 2, + sym_comment, + sym_include, + [312233] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9402), 1, - aux_sym__block_terminator_token1, - STATE(6612), 2, + ACTIONS(9556), 1, + sym__terminator, + STATE(6692), 2, sym_comment, sym_include, - [309590] = 5, + [312250] = 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(9558), 1, sym_identifier, - STATE(6613), 2, + STATE(6693), 2, sym_comment, sym_include, - [309607] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312267] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9406), 1, + ACTIONS(9560), 1, aux_sym_buffer_definition_token2, - STATE(6614), 2, + STATE(6694), 2, sym_comment, sym_include, - [309624] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312284] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9408), 1, + ACTIONS(9562), 1, aux_sym_buffer_definition_token2, - STATE(6615), 2, + STATE(6695), 2, sym_comment, sym_include, - [309641] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312301] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9410), 1, + ACTIONS(9564), 1, aux_sym_buffer_definition_token2, - STATE(6616), 2, + STATE(6696), 2, sym_comment, sym_include, - [309658] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312318] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9566), 1, aux_sym_of_token1, - STATE(6617), 2, + STATE(6697), 2, sym_comment, sym_include, - [309675] = 5, - ACTIONS(3), 1, + [312335] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9414), 1, - sym_identifier, - STATE(6618), 2, + ACTIONS(9568), 1, + sym__terminator, + STATE(6698), 2, sym_comment, sym_include, - [309692] = 5, + [312352] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9416), 1, + ACTIONS(9570), 1, sym_identifier, - STATE(6619), 2, + STATE(6699), 2, sym_comment, sym_include, - [309709] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312369] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7918), 1, + ACTIONS(7703), 1, sym__terminator, - STATE(6620), 2, + STATE(6700), 2, sym_comment, sym_include, - [309726] = 5, + [312386] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9418), 1, + ACTIONS(9572), 1, sym_identifier, - STATE(6621), 2, + STATE(6701), 2, sym_comment, sym_include, - [309743] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312403] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9420), 1, - sym__terminator, - STATE(6622), 2, - sym_comment, - sym_include, - [309760] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9422), 1, - aux_sym__block_terminator_token1, - STATE(6623), 2, + ACTIONS(9574), 1, + sym__terminator, + STATE(6702), 2, sym_comment, sym_include, - [309777] = 5, + [312420] = 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(9576), 1, sym_identifier, - STATE(6624), 2, + STATE(6703), 2, sym_comment, sym_include, - [309794] = 5, - ACTIONS(67), 1, + [312437] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9426), 1, - sym__terminator, - STATE(6625), 2, + ACTIONS(9578), 1, + sym_identifier, + STATE(6704), 2, sym_comment, sym_include, - [309811] = 5, + [312454] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9428), 1, + ACTIONS(9580), 1, sym_identifier, - STATE(6626), 2, + STATE(6705), 2, sym_comment, sym_include, - [309828] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312471] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9430), 1, + ACTIONS(9582), 1, sym__terminator, - STATE(6627), 2, + STATE(6706), 2, sym_comment, sym_include, - [309845] = 5, - ACTIONS(67), 1, + [312488] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(6536), 1, + sym__terminator, + STATE(6707), 2, + sym_comment, + sym_include, + [312505] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9432), 1, + ACTIONS(9584), 1, anon_sym_LPAREN, - STATE(6628), 2, + STATE(6708), 2, sym_comment, sym_include, - [309862] = 5, + [312522] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9434), 1, + ACTIONS(9586), 1, sym_identifier, - STATE(6629), 2, + STATE(6709), 2, sym_comment, sym_include, - [309879] = 5, + [312539] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9436), 1, + ACTIONS(9588), 1, sym_identifier, - STATE(6630), 2, + STATE(6710), 2, sym_comment, sym_include, - [309896] = 5, - ACTIONS(67), 1, + [312556] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(9590), 1, + sym_identifier, + STATE(6711), 2, + sym_comment, + sym_include, + [312573] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9438), 1, - aux_sym__block_terminator_token1, - STATE(6631), 2, + ACTIONS(9592), 1, + aux_sym_buffer_definition_token2, + STATE(6712), 2, sym_comment, sym_include, - [309913] = 5, + [312590] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(9594), 1, sym_identifier, - STATE(6632), 2, + STATE(6713), 2, sym_comment, sym_include, - [309930] = 5, + [312607] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9442), 1, + ACTIONS(9596), 1, sym_identifier, - STATE(6633), 2, + STATE(6714), 2, sym_comment, sym_include, - [309947] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312624] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9444), 1, - aux_sym__block_terminator_token1, - STATE(6634), 2, + ACTIONS(9598), 1, + anon_sym_COMMA, + STATE(6715), 2, sym_comment, sym_include, - [309964] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312641] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9446), 1, + ACTIONS(9600), 1, sym__terminator, - STATE(6635), 2, + STATE(6716), 2, sym_comment, sym_include, - [309981] = 5, + [312658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9448), 1, + ACTIONS(9602), 1, sym_identifier, - STATE(6636), 2, + STATE(6717), 2, sym_comment, sym_include, - [309998] = 5, - ACTIONS(67), 1, + [312675] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7896), 1, - sym__terminator, - STATE(6637), 2, + ACTIONS(9604), 1, + sym_identifier, + STATE(6718), 2, sym_comment, sym_include, - [310015] = 5, + [312692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9450), 1, + ACTIONS(9606), 1, sym_identifier, - STATE(6638), 2, + STATE(6719), 2, sym_comment, sym_include, - [310032] = 5, + [312709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9452), 1, + ACTIONS(9608), 1, sym_identifier, - STATE(6639), 2, + STATE(6720), 2, sym_comment, sym_include, - [310049] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312726] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9454), 1, - sym__terminator, - STATE(6640), 2, + ACTIONS(9610), 1, + sym__integer_literal, + STATE(6721), 2, sym_comment, sym_include, - [310066] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312743] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7546), 1, - sym__terminator, - STATE(6641), 2, + ACTIONS(9612), 1, + anon_sym_LPAREN, + STATE(6722), 2, sym_comment, sym_include, - [310083] = 5, - ACTIONS(3), 1, + [312760] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9456), 1, - sym_identifier, - STATE(6642), 2, + ACTIONS(9614), 1, + anon_sym_COMMA, + STATE(6723), 2, sym_comment, sym_include, - [310100] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312777] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9458), 1, - anon_sym_COMMA, - STATE(6643), 2, + ACTIONS(9616), 1, + anon_sym_RPAREN, + STATE(6724), 2, sym_comment, sym_include, - [310117] = 5, - ACTIONS(3), 1, + [312794] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9460), 1, - sym_identifier, - STATE(6644), 2, + ACTIONS(9618), 1, + sym__integer_literal, + STATE(6725), 2, sym_comment, sym_include, - [310134] = 5, - ACTIONS(3), 1, + [312811] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9462), 1, - sym_identifier, - STATE(6645), 2, + ACTIONS(7327), 1, + sym__terminator, + STATE(6726), 2, sym_comment, sym_include, - [310151] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312828] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9464), 1, + ACTIONS(9620), 1, aux_sym_buffer_definition_token2, - STATE(6646), 2, + STATE(6727), 2, sym_comment, sym_include, - [310168] = 5, + [312845] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9466), 1, + ACTIONS(9622), 1, sym_identifier, - STATE(6647), 2, + STATE(6728), 2, sym_comment, sym_include, - [310185] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312862] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9468), 1, + ACTIONS(9624), 1, aux_sym_buffer_definition_token2, - STATE(6648), 2, + STATE(6729), 2, sym_comment, sym_include, - [310202] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312879] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9470), 1, + ACTIONS(9626), 1, aux_sym_buffer_definition_token2, - STATE(6649), 2, + STATE(6730), 2, sym_comment, sym_include, - [310219] = 5, + [312896] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9472), 1, + ACTIONS(9628), 1, sym_identifier, - STATE(6650), 2, + STATE(6731), 2, sym_comment, sym_include, - [310236] = 5, - ACTIONS(67), 1, + [312913] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7561), 1, - sym__terminator, - STATE(6651), 2, + ACTIONS(9630), 1, + sym_identifier, + STATE(6732), 2, sym_comment, sym_include, - [310253] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312930] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6832), 1, + ACTIONS(6803), 1, aux_sym_of_token1, - STATE(6652), 2, + STATE(6733), 2, + sym_comment, + sym_include, + [312947] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9632), 1, + aux_sym_enum_definition_token1, + STATE(6734), 2, sym_comment, sym_include, - [310270] = 5, + [312964] = 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(9634), 1, sym_identifier, - STATE(6653), 2, + STATE(6735), 2, sym_comment, sym_include, - [310287] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312981] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9476), 1, - sym__terminator, - STATE(6654), 2, + ACTIONS(9636), 1, + anon_sym_RBRACE, + STATE(6736), 2, sym_comment, sym_include, - [310304] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [312998] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9478), 1, + ACTIONS(9638), 1, sym__terminator, - STATE(6655), 2, + STATE(6737), 2, sym_comment, sym_include, - [310321] = 5, + [313015] = 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(9640), 1, sym_identifier, - STATE(6656), 2, + STATE(6738), 2, sym_comment, sym_include, - [310338] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313032] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9482), 1, + ACTIONS(9642), 1, aux_sym_buffer_definition_token2, - STATE(6657), 2, + STATE(6739), 2, sym_comment, sym_include, - [310355] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313049] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9484), 1, + ACTIONS(9644), 1, aux_sym_buffer_definition_token2, - STATE(6658), 2, + STATE(6740), 2, sym_comment, sym_include, - [310372] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313066] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9486), 1, + ACTIONS(9646), 1, aux_sym_buffer_definition_token2, - STATE(6659), 2, + STATE(6741), 2, sym_comment, sym_include, - [310389] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313083] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9488), 1, + ACTIONS(9648), 1, aux_sym_of_token1, - STATE(6660), 2, + STATE(6742), 2, sym_comment, sym_include, - [310406] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313100] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, + ACTIONS(7914), 1, sym__terminator, - STATE(6661), 2, + STATE(6743), 2, sym_comment, sym_include, - [310423] = 5, + [313117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9490), 1, + ACTIONS(9650), 1, sym_identifier, - STATE(6662), 2, + STATE(6744), 2, sym_comment, sym_include, - [310440] = 5, - ACTIONS(67), 1, + [313134] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7876), 1, - sym__terminator, - STATE(6663), 2, + ACTIONS(9652), 1, + sym_identifier, + STATE(6745), 2, sym_comment, sym_include, - [310457] = 5, + [313151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9492), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(6664), 2, + STATE(6746), 2, sym_comment, sym_include, - [310474] = 5, - ACTIONS(67), 1, + [313168] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(9656), 1, + sym_identifier, + STATE(6747), 2, + sym_comment, + sym_include, + [313185] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9494), 1, + ACTIONS(9658), 1, anon_sym_LPAREN, - STATE(6665), 2, + STATE(6748), 2, sym_comment, sym_include, - [310491] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313202] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, - sym__terminator, - STATE(6666), 2, + ACTIONS(9660), 1, + aux_sym_image_phrase_token8, + STATE(6749), 2, sym_comment, sym_include, - [310508] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313219] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9496), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(6667), 2, + STATE(6750), 2, sym_comment, sym_include, - [310525] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313236] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(6518), 1, - sym__terminator, - STATE(6668), 2, + ACTIONS(9660), 1, + aux_sym_image_phrase_token10, + STATE(6751), 2, sym_comment, sym_include, - [310542] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313253] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(9664), 1, anon_sym_LPAREN, - STATE(6669), 2, + STATE(6752), 2, sym_comment, sym_include, - [310559] = 5, + [313270] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9500), 1, + ACTIONS(9666), 1, sym_identifier, - STATE(6670), 2, + STATE(6753), 2, sym_comment, sym_include, - [310576] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313287] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9502), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(6671), 2, + STATE(6754), 2, sym_comment, sym_include, - [310593] = 5, - ACTIONS(67), 1, + [313304] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9504), 1, - aux_sym_on_error_phrase_token3, - STATE(6672), 2, + ACTIONS(9670), 1, + sym_identifier, + STATE(6755), 2, sym_comment, sym_include, - [310610] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313321] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9506), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(6673), 2, + STATE(6756), 2, sym_comment, sym_include, - [310627] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313338] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7856), 1, - sym__terminator, - STATE(6674), 2, + ACTIONS(9674), 1, + aux_sym_argument_mode_token3, + STATE(6757), 2, sym_comment, sym_include, - [310644] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313355] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9508), 1, + ACTIONS(9676), 1, anon_sym_LPAREN, - STATE(6675), 2, + STATE(6758), 2, sym_comment, sym_include, - [310661] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313372] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9510), 1, - anon_sym_LPAREN, - STATE(6676), 2, + ACTIONS(9678), 1, + anon_sym_EQ, + STATE(6759), 2, sym_comment, sym_include, - [310678] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313389] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9512), 1, - anon_sym_RBRACE, - STATE(6677), 2, + ACTIONS(9680), 1, + anon_sym_LPAREN, + STATE(6760), 2, sym_comment, sym_include, - [310695] = 5, - ACTIONS(3), 1, + [313406] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9514), 1, - sym_identifier, - STATE(6678), 2, + ACTIONS(9682), 1, + anon_sym_RBRACK, + STATE(6761), 2, sym_comment, sym_include, - [310712] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313423] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9516), 1, + ACTIONS(9684), 1, anon_sym_LPAREN, - STATE(6679), 2, + STATE(6762), 2, sym_comment, sym_include, - [310729] = 5, - ACTIONS(67), 1, + [313440] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9518), 1, - aux_sym_sort_clause_token2, - STATE(6680), 2, + ACTIONS(9686), 1, + sym_identifier, + STATE(6763), 2, sym_comment, sym_include, - [310746] = 5, - ACTIONS(67), 1, + [313457] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7846), 1, - sym__terminator, - STATE(6681), 2, + ACTIONS(9688), 1, + sym_identifier, + STATE(6764), 2, sym_comment, sym_include, - [310763] = 5, - ACTIONS(67), 1, + [313474] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9520), 1, - aux_sym_on_error_phrase_token3, - STATE(6682), 2, + ACTIONS(9690), 1, + sym_identifier, + STATE(6765), 2, sym_comment, sym_include, - [310780] = 5, + [313491] = 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(9692), 1, sym_identifier, - STATE(6683), 2, + STATE(6766), 2, sym_comment, sym_include, - [310797] = 5, + [313508] = 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(9694), 1, sym_identifier, - STATE(6684), 2, + STATE(6767), 2, sym_comment, sym_include, - [310814] = 5, - ACTIONS(67), 1, + [313525] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - aux_sym_image_phrase_token8, - STATE(6685), 2, + ACTIONS(9696), 1, + sym_identifier, + STATE(6768), 2, sym_comment, sym_include, - [310831] = 5, - ACTIONS(3), 1, + [313542] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, - sym_identifier, - STATE(6686), 2, + ACTIONS(9698), 1, + sym__terminator, + STATE(6769), 2, sym_comment, sym_include, - [310848] = 5, - ACTIONS(67), 1, + [313559] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(244), 2, + sym_file_name, anon_sym_LBRACE, - ACTIONS(9530), 1, - aux_sym__block_terminator_token1, - STATE(6687), 2, + STATE(6770), 2, sym_comment, sym_include, - [310865] = 5, + [313574] = 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(9700), 1, sym_identifier, - STATE(6688), 2, + STATE(6771), 2, sym_comment, sym_include, - [310882] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313591] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7840), 1, - sym__terminator, - STATE(6689), 2, + ACTIONS(9702), 1, + anon_sym_COMMA, + STATE(6772), 2, sym_comment, sym_include, - [310899] = 5, - ACTIONS(67), 1, + [313608] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9534), 1, - sym__terminator, - STATE(6690), 2, + ACTIONS(9704), 1, + sym_identifier, + STATE(6773), 2, sym_comment, sym_include, - [310916] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313625] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9536), 1, - sym__terminator, - STATE(6691), 2, + ACTIONS(9706), 1, + aux_sym_buffer_definition_token2, + STATE(6774), 2, sym_comment, sym_include, - [310933] = 5, + [313642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9538), 1, + ACTIONS(9708), 1, sym_identifier, - STATE(6692), 2, + STATE(6775), 2, sym_comment, sym_include, - [310950] = 5, - ACTIONS(67), 1, + [313659] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, - sym__terminator, - STATE(6693), 2, + ACTIONS(9710), 1, + sym_identifier, + STATE(6776), 2, sym_comment, sym_include, - [310967] = 5, - ACTIONS(67), 1, + [313676] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9542), 1, - anon_sym_LPAREN, - STATE(6694), 2, + ACTIONS(9712), 1, + sym_identifier, + STATE(6777), 2, sym_comment, sym_include, - [310984] = 5, - ACTIONS(67), 1, + [313693] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7748), 1, - aux_sym_primitive_type_token1, - STATE(6695), 2, + ACTIONS(9714), 1, + sym_identifier, + STATE(6778), 2, sym_comment, sym_include, - [311001] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313710] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9544), 1, - aux_sym_image_phrase_token3, - STATE(6696), 2, + ACTIONS(9716), 1, + sym__terminator, + STATE(6779), 2, sym_comment, sym_include, - [311018] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313727] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9546), 1, - aux_sym_buffer_definition_token2, - STATE(6697), 2, + ACTIONS(9718), 1, + sym__terminator, + STATE(6780), 2, sym_comment, sym_include, - [311035] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313744] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9548), 1, + ACTIONS(9720), 1, sym__terminator, - STATE(6698), 2, + STATE(6781), 2, sym_comment, sym_include, - [311052] = 5, + [313761] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9550), 1, + ACTIONS(9722), 1, sym_identifier, - STATE(6699), 2, + STATE(6782), 2, sym_comment, sym_include, - [311069] = 5, + [313778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4353), 1, + ACTIONS(9724), 1, sym_identifier, - STATE(6700), 2, + STATE(6783), 2, sym_comment, sym_include, - [311086] = 5, - ACTIONS(3), 1, + [313795] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9552), 1, - sym_identifier, - STATE(6701), 2, + ACTIONS(9726), 1, + sym__terminator, + STATE(6784), 2, sym_comment, sym_include, - [311103] = 5, - ACTIONS(3), 1, + [313812] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9554), 1, - sym_identifier, - STATE(6702), 2, + ACTIONS(7876), 1, + sym__terminator, + STATE(6785), 2, sym_comment, sym_include, - [311120] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313829] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9556), 1, - sym__terminator, - STATE(6703), 2, + ACTIONS(9728), 1, + sym__integer_literal, + STATE(6786), 2, sym_comment, sym_include, - [311137] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313846] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, - anon_sym_DOT, - STATE(6704), 2, + ACTIONS(9730), 1, + sym__integer_literal, + STATE(6787), 2, sym_comment, sym_include, - [311154] = 5, + [313863] = 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(9732), 1, aux_sym_comment_token1, - STATE(6705), 2, + STATE(6788), 2, sym_comment, sym_include, - [311171] = 5, + [313880] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9560), 1, + ACTIONS(9734), 1, sym_identifier, - STATE(6706), 2, + STATE(6789), 2, + sym_comment, + sym_include, + [313897] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9736), 1, + anon_sym_RBRACE, + STATE(6790), 2, sym_comment, sym_include, - [311188] = 5, + [313914] = 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(9738), 1, sym_identifier, - STATE(6707), 2, + STATE(6791), 2, sym_comment, sym_include, - [311205] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [313931] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9564), 1, + ACTIONS(9740), 1, sym__terminator, - STATE(6708), 2, + STATE(6792), 2, sym_comment, sym_include, - [311222] = 5, + [313948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9566), 1, + ACTIONS(9742), 1, sym_identifier, - STATE(6709), 2, + STATE(6793), 2, sym_comment, sym_include, - [311239] = 5, + [313965] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9568), 1, + ACTIONS(9744), 1, sym_identifier, - STATE(6710), 2, + STATE(6794), 2, sym_comment, sym_include, - [311256] = 5, - ACTIONS(3), 1, + [313982] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4150), 1, - sym_identifier, - STATE(6711), 2, + ACTIONS(9746), 1, + anon_sym_RBRACE, + STATE(6795), 2, sym_comment, sym_include, - [311273] = 5, + [313999] = 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(9748), 1, sym_identifier, - STATE(6712), 2, + STATE(6796), 2, sym_comment, sym_include, - [311290] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314016] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9572), 1, + ACTIONS(9750), 1, sym__terminator, - STATE(6713), 2, + STATE(6797), 2, sym_comment, sym_include, - [311307] = 5, + [314033] = 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(9752), 1, sym_identifier, - STATE(6714), 2, + STATE(6798), 2, sym_comment, sym_include, - [311324] = 5, + [314050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9576), 1, + ACTIONS(9754), 1, sym_identifier, - STATE(6715), 2, + STATE(6799), 2, sym_comment, sym_include, - [311341] = 5, + [314067] = 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(9756), 1, sym_identifier, - STATE(6716), 2, + STATE(6800), 2, sym_comment, sym_include, - [311358] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314084] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9580), 1, - sym__terminator, - STATE(6717), 2, + ACTIONS(9758), 1, + anon_sym_RBRACK, + STATE(6801), 2, sym_comment, sym_include, - [311375] = 5, + [314101] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9582), 1, + ACTIONS(9760), 1, sym_identifier, - STATE(6718), 2, + STATE(6802), 2, sym_comment, sym_include, - [311392] = 5, + [314118] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9584), 1, + ACTIONS(9762), 1, sym_identifier, - STATE(6719), 2, + STATE(6803), 2, sym_comment, sym_include, - [311409] = 5, - ACTIONS(67), 1, + [314135] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7814), 1, - sym__terminator, - STATE(6720), 2, + ACTIONS(9764), 1, + sym_identifier, + STATE(6804), 2, sym_comment, sym_include, - [311426] = 5, - ACTIONS(67), 1, + [314152] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9586), 1, - sym__terminator, - STATE(6721), 2, + ACTIONS(9766), 1, + sym_identifier, + STATE(6805), 2, sym_comment, sym_include, - [311443] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314169] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9588), 1, - anon_sym_RBRACE, - STATE(6722), 2, - sym_comment, - sym_include, - [311460] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9590), 1, + ACTIONS(9768), 1, sym__terminator, - STATE(6723), 2, + STATE(6806), 2, sym_comment, sym_include, - [311477] = 5, + [314186] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(9770), 2, + sym_file_name, anon_sym_LBRACE, - ACTIONS(9592), 1, - sym_identifier, - STATE(6724), 2, + STATE(6807), 2, sym_comment, sym_include, - [311494] = 5, + [314201] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9594), 1, + ACTIONS(9772), 1, sym_identifier, - STATE(6725), 2, + STATE(6808), 2, sym_comment, sym_include, - [311511] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314218] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9596), 1, - sym__integer_literal, - STATE(6726), 2, + ACTIONS(9774), 1, + sym__terminator, + STATE(6809), 2, sym_comment, sym_include, - [311528] = 5, + [314235] = 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(9776), 1, sym_identifier, - STATE(6727), 2, + STATE(6810), 2, sym_comment, sym_include, - [311545] = 5, + [314252] = 5, + ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9778), 1, + sym__terminator, + STATE(6811), 2, + sym_comment, + sym_include, + [314269] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9600), 1, + ACTIONS(9780), 1, sym_identifier, - STATE(6728), 2, + STATE(6812), 2, sym_comment, sym_include, - [311562] = 5, + [314286] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9602), 1, + ACTIONS(9782), 1, sym_identifier, - STATE(6729), 2, + STATE(6813), 2, sym_comment, sym_include, - [311579] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314303] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9604), 1, + ACTIONS(9784), 1, sym__terminator, - STATE(6730), 2, + STATE(6814), 2, sym_comment, sym_include, - [311596] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314320] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9606), 1, - anon_sym_DOT, - STATE(6731), 2, + ACTIONS(9786), 1, + sym__terminator, + STATE(6815), 2, sym_comment, sym_include, - [311613] = 5, + [314337] = 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(9788), 1, sym_identifier, - STATE(6732), 2, + STATE(6816), 2, sym_comment, sym_include, - [311630] = 5, + [314354] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9610), 1, + ACTIONS(9790), 1, sym_identifier, - STATE(6733), 2, + STATE(6817), 2, sym_comment, sym_include, - [311647] = 5, + [314371] = 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(9792), 1, sym_identifier, - STATE(6734), 2, + STATE(6818), 2, sym_comment, sym_include, - [311664] = 5, + [314388] = 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(9794), 1, sym_identifier, - STATE(6735), 2, + STATE(6819), 2, sym_comment, sym_include, - [311681] = 5, - ACTIONS(3), 1, + [314405] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9616), 1, - sym_identifier, - STATE(6736), 2, + ACTIONS(9796), 1, + anon_sym_RBRACE, + STATE(6820), 2, sym_comment, sym_include, - [311698] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314422] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9618), 1, - anon_sym_DOT, - STATE(6737), 2, + ACTIONS(9798), 1, + sym__terminator, + STATE(6821), 2, sym_comment, sym_include, - [311715] = 5, - ACTIONS(67), 1, + [314439] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9620), 1, - aux_sym_input_expression_token2, - STATE(6738), 2, + ACTIONS(9800), 1, + sym_identifier, + STATE(6822), 2, sym_comment, sym_include, - [311732] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314456] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9622), 1, - sym__terminator, - STATE(6739), 2, + ACTIONS(9802), 1, + aux_sym_buffer_definition_token2, + STATE(6823), 2, sym_comment, sym_include, - [311749] = 5, + [314473] = 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(9804), 1, sym_identifier, - STATE(6740), 2, + STATE(6824), 2, sym_comment, sym_include, - [311766] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314490] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9626), 1, - sym__terminator, - STATE(6741), 2, + ACTIONS(9806), 1, + aux_sym_buffer_definition_token2, + STATE(6825), 2, sym_comment, sym_include, - [311783] = 5, + [314507] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9628), 1, + ACTIONS(9808), 1, sym_identifier, - STATE(6742), 2, + STATE(6826), 2, sym_comment, sym_include, - [311800] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314524] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9630), 1, - sym__terminator, - STATE(6743), 2, + ACTIONS(9810), 1, + anon_sym_SLASH, + STATE(6827), 2, sym_comment, sym_include, - [311817] = 5, + [314541] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9632), 1, + ACTIONS(9812), 1, sym_identifier, - STATE(6744), 2, + STATE(6828), 2, sym_comment, sym_include, - [311834] = 5, + [314558] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9634), 1, + ACTIONS(9814), 1, sym_identifier, - STATE(6745), 2, + STATE(6829), 2, sym_comment, sym_include, - [311851] = 4, + [314575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(9636), 2, - sym_file_name, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(6746), 2, + ACTIONS(9816), 1, + sym_identifier, + STATE(6830), 2, sym_comment, sym_include, - [311866] = 5, - ACTIONS(67), 1, + [314592] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, + sym_identifier, + STATE(6831), 2, + sym_comment, + sym_include, + [314609] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9638), 1, + ACTIONS(9820), 1, sym__terminator, - STATE(6747), 2, + STATE(6832), 2, sym_comment, sym_include, - [311883] = 5, - ACTIONS(67), 1, + [314626] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9822), 1, + aux_sym__block_terminator_token1, + STATE(6833), 2, + sym_comment, + sym_include, + [314643] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9640), 1, - sym__terminator, - STATE(6748), 2, + ACTIONS(9824), 1, + sym__integer_literal, + STATE(6834), 2, sym_comment, sym_include, - [311900] = 5, + [314660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9642), 1, + ACTIONS(9826), 1, sym_identifier, - STATE(6749), 2, + STATE(6835), 2, sym_comment, sym_include, - [311917] = 5, + [314677] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9644), 1, + ACTIONS(9828), 1, sym_identifier, - STATE(6750), 2, + STATE(6836), 2, sym_comment, sym_include, - [311934] = 5, + [314694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9830), 1, sym_identifier, - STATE(6751), 2, + STATE(6837), 2, sym_comment, sym_include, - [311951] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314711] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9648), 1, - sym__terminator, - STATE(6752), 2, - sym_comment, - sym_include, - [311968] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9650), 1, + ACTIONS(9832), 1, sym__terminator, - STATE(6753), 2, + STATE(6838), 2, sym_comment, sym_include, - [311985] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314728] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9652), 1, - sym__terminator, - STATE(6754), 2, + ACTIONS(9834), 1, + anon_sym_COMMA, + STATE(6839), 2, sym_comment, sym_include, - [312002] = 5, + [314745] = 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(9836), 1, sym_identifier, - STATE(6755), 2, + STATE(6840), 2, sym_comment, sym_include, - [312019] = 5, - ACTIONS(3), 1, + [314762] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9656), 1, - sym_identifier, - STATE(6756), 2, + ACTIONS(9838), 1, + anon_sym_RBRACE, + STATE(6841), 2, sym_comment, sym_include, - [312036] = 5, + [314779] = 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(9840), 1, sym_identifier, - STATE(6757), 2, + STATE(6842), 2, sym_comment, sym_include, - [312053] = 5, - ACTIONS(3), 1, + [314796] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9660), 1, - sym_identifier, - STATE(6758), 2, + ACTIONS(9842), 1, + aux_sym_type_tuning_token1, + STATE(6843), 2, sym_comment, sym_include, - [312070] = 5, - ACTIONS(67), 1, + [314813] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9662), 1, - anon_sym_RBRACE, - STATE(6759), 2, + ACTIONS(9844), 1, + sym_identifier, + STATE(6844), 2, sym_comment, sym_include, - [312087] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314830] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7752), 1, + ACTIONS(9846), 1, sym__terminator, - STATE(6760), 2, + STATE(6845), 2, sym_comment, sym_include, - [312104] = 5, + [314847] = 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(9848), 1, sym_identifier, - STATE(6761), 2, + STATE(6846), 2, sym_comment, sym_include, - [312121] = 5, - ACTIONS(67), 1, + [314864] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9666), 1, - aux_sym__block_terminator_token1, - STATE(6762), 2, + ACTIONS(9850), 1, + sym_identifier, + STATE(6847), 2, sym_comment, sym_include, - [312138] = 5, + [314881] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9852), 1, sym_identifier, - STATE(6763), 2, + STATE(6848), 2, sym_comment, sym_include, - [312155] = 5, + [314898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9670), 1, + ACTIONS(9854), 1, sym_identifier, - STATE(6764), 2, + STATE(6849), 2, sym_comment, sym_include, - [312172] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [314915] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9672), 1, - anon_sym_SLASH, - STATE(6765), 2, - sym_comment, - sym_include, - [312189] = 5, - ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9674), 1, + ACTIONS(9856), 1, aux_sym__block_terminator_token1, - STATE(6766), 2, + STATE(6850), 2, sym_comment, sym_include, - [312206] = 5, - ACTIONS(67), 1, + [314932] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9676), 1, - sym__terminator, - STATE(6767), 2, + ACTIONS(9858), 1, + sym_identifier, + STATE(6851), 2, sym_comment, sym_include, - [312223] = 5, + [314949] = 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(9860), 1, sym_identifier, - STATE(6768), 2, + STATE(6852), 2, sym_comment, sym_include, - [312240] = 5, + [314966] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9680), 1, + ACTIONS(9862), 1, sym_identifier, - STATE(6769), 2, + STATE(6853), 2, sym_comment, sym_include, - [312257] = 5, + [314983] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9682), 1, + ACTIONS(9864), 1, sym_identifier, - STATE(6770), 2, + STATE(6854), 2, sym_comment, sym_include, - [312274] = 5, - ACTIONS(67), 1, + [315000] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9684), 1, - sym__terminator, - STATE(6771), 2, + ACTIONS(9866), 1, + sym_identifier, + STATE(6855), 2, sym_comment, sym_include, - [312291] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315017] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9686), 1, - anon_sym_LPAREN, - STATE(6772), 2, + ACTIONS(9868), 1, + sym__terminator, + STATE(6856), 2, sym_comment, sym_include, - [312308] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315034] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9688), 1, - aux_sym_type_tuning_token1, - STATE(6773), 2, + ACTIONS(9870), 1, + aux_sym_when_expression_token1, + STATE(6857), 2, sym_comment, sym_include, - [312325] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315051] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9690), 1, + ACTIONS(9872), 1, sym__integer_literal, - STATE(6774), 2, + STATE(6858), 2, sym_comment, sym_include, - [312342] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315068] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7734), 1, + ACTIONS(9874), 1, sym__terminator, - STATE(6775), 2, + STATE(6859), 2, sym_comment, sym_include, - [312359] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315085] = 5, ACTIONS(69), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(9692), 1, - anon_sym_RBRACE, - STATE(6776), 2, - sym_comment, - sym_include, - [312376] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9694), 1, - sym_identifier, - STATE(6777), 2, + ACTIONS(9876), 1, + sym__terminator, + STATE(6860), 2, sym_comment, sym_include, - [312393] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [315102] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(242), 2, - sym_file_name, + ACTIONS(75), 1, anon_sym_LBRACE, - STATE(6778), 2, + ACTIONS(9878), 1, + sym__terminator, + STATE(6861), 2, sym_comment, sym_include, - [312408] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315119] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(7656), 1, - sym__terminator, - STATE(6779), 2, + ACTIONS(9880), 1, + anon_sym_RBRACE, + STATE(6862), 2, sym_comment, sym_include, - [312425] = 5, - ACTIONS(67), 1, + [315136] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9696), 1, - aux_sym_buffer_definition_token2, - STATE(6780), 2, + ACTIONS(9882), 1, + sym_identifier, + STATE(6863), 2, sym_comment, sym_include, - [312442] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315153] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9884), 1, sym__terminator, - STATE(6781), 2, + STATE(6864), 2, sym_comment, sym_include, - [312459] = 5, + [315170] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9700), 1, + ACTIONS(9886), 1, sym_identifier, - STATE(6782), 2, + STATE(6865), 2, sym_comment, sym_include, - [312476] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315187] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9702), 1, + ACTIONS(9888), 1, ts_builtin_sym_end, - STATE(6783), 2, + STATE(6866), 2, sym_comment, sym_include, - [312493] = 5, - ACTIONS(67), 1, + [315204] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9704), 1, - aux_sym__block_terminator_token1, - STATE(6784), 2, + ACTIONS(9890), 1, + sym_identifier, + STATE(6867), 2, sym_comment, sym_include, - [312510] = 5, - ACTIONS(67), 1, + [315221] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9706), 1, - aux_sym_buffer_definition_token2, - STATE(6785), 2, + ACTIONS(4054), 1, + sym_identifier, + STATE(6868), 2, sym_comment, sym_include, - [312527] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315238] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9708), 1, + ACTIONS(9892), 1, aux_sym_buffer_definition_token2, - STATE(6786), 2, + STATE(6869), 2, sym_comment, sym_include, - [312544] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315255] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9710), 1, - sym__terminator, - STATE(6787), 2, + ACTIONS(9894), 1, + aux_sym_do_block_token1, + STATE(6870), 2, sym_comment, sym_include, - [312561] = 5, + [315272] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9712), 1, + ACTIONS(9896), 1, sym_identifier, - STATE(6788), 2, + STATE(6871), 2, sym_comment, sym_include, - [312578] = 5, + [315289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9714), 1, + ACTIONS(9898), 1, sym_identifier, - STATE(6789), 2, + STATE(6872), 2, sym_comment, sym_include, - [312595] = 5, - ACTIONS(3), 1, + [315306] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9716), 1, - sym_identifier, - STATE(6790), 2, + ACTIONS(9900), 1, + anon_sym_COLON, + STATE(6873), 2, sym_comment, sym_include, - [312612] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315323] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9718), 1, - anon_sym_RPAREN, - STATE(6791), 2, + ACTIONS(7816), 1, + sym__terminator, + STATE(6874), 2, sym_comment, sym_include, - [312629] = 5, - ACTIONS(3), 1, + [315340] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, - sym_identifier, - STATE(6792), 2, + ACTIONS(9902), 1, + sym__terminator, + STATE(6875), 2, sym_comment, sym_include, - [312646] = 5, - ACTIONS(3), 1, + [315357] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9720), 1, - sym_identifier, - STATE(6793), 2, + ACTIONS(9904), 1, + sym__terminator, + STATE(6876), 2, sym_comment, sym_include, - [312663] = 5, + [315374] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9722), 1, + ACTIONS(9906), 1, sym_identifier, - STATE(6794), 2, + STATE(6877), 2, sym_comment, sym_include, - [312680] = 5, - ACTIONS(67), 1, + [315391] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(9908), 1, + aux_sym__block_terminator_token1, + STATE(6878), 2, + sym_comment, + sym_include, + [315408] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(5093), 1, + ACTIONS(9910), 1, sym__terminator, - STATE(6795), 2, + STATE(6879), 2, sym_comment, sym_include, - [312697] = 5, + [315425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9724), 1, + ACTIONS(9912), 1, sym_identifier, - STATE(6796), 2, + STATE(6880), 2, sym_comment, sym_include, - [312714] = 5, + [315442] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9726), 1, + ACTIONS(9914), 1, sym_identifier, - STATE(6797), 2, + STATE(6881), 2, sym_comment, sym_include, - [312731] = 5, - ACTIONS(3), 1, + [315459] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9728), 1, - sym_identifier, - STATE(6798), 2, + ACTIONS(9916), 1, + sym__terminator, + STATE(6882), 2, sym_comment, sym_include, - [312748] = 5, - ACTIONS(67), 1, + [315476] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, + ACTIONS(71), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(8468), 1, + anon_sym_DOT, + STATE(6883), 2, + sym_comment, + sym_include, + [315493] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9730), 1, - sym__terminator, - STATE(6799), 2, + ACTIONS(7890), 1, + anon_sym_DOT, + STATE(6884), 2, sym_comment, sym_include, - [312765] = 5, - ACTIONS(3), 1, + [315510] = 5, + ACTIONS(69), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9732), 1, - sym_identifier, - STATE(6800), 2, + ACTIONS(9918), 1, + sym__terminator, + STATE(6885), 2, sym_comment, sym_include, - [312782] = 5, + [315527] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9734), 1, + ACTIONS(9920), 1, sym_identifier, - STATE(6801), 2, + STATE(6886), 2, sym_comment, sym_include, - [312799] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315544] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9922), 1, sym__terminator, - STATE(6802), 2, + STATE(6887), 2, sym_comment, sym_include, - [312816] = 5, - ACTIONS(67), 1, + [315561] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9738), 1, - sym__terminator, - STATE(6803), 2, + ACTIONS(9924), 1, + sym_identifier, + STATE(6888), 2, sym_comment, sym_include, - [312833] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315578] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9740), 1, + ACTIONS(9926), 1, aux_sym_type_tuning_token1, - STATE(6804), 2, + STATE(6889), 2, sym_comment, sym_include, - [312850] = 5, + [315595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9742), 1, + ACTIONS(9928), 1, sym_identifier, - STATE(6805), 2, + STATE(6890), 2, sym_comment, sym_include, - [312867] = 5, - ACTIONS(67), 1, + [315612] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9744), 1, - aux_sym_field_option_token7, - STATE(6806), 2, + ACTIONS(9930), 1, + sym_identifier, + STATE(6891), 2, sym_comment, sym_include, - [312884] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315629] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9746), 1, + ACTIONS(9932), 1, aux_sym_type_tuning_token1, - STATE(6807), 2, + STATE(6892), 2, sym_comment, sym_include, - [312901] = 5, + [315646] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9748), 1, + ACTIONS(9934), 1, sym_identifier, - STATE(6808), 2, + STATE(6893), 2, sym_comment, sym_include, - [312918] = 5, - ACTIONS(67), 1, + [315663] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7557), 1, - sym__terminator, - STATE(6809), 2, + ACTIONS(4126), 1, + sym_identifier, + STATE(6894), 2, sym_comment, sym_include, - [312935] = 5, - ACTIONS(67), 1, - anon_sym_SLASH_SLASH, + [315680] = 5, ACTIONS(69), 1, + anon_sym_SLASH_SLASH, + ACTIONS(71), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(9750), 1, + ACTIONS(9936), 1, aux_sym_type_tuning_token1, - STATE(6810), 2, + STATE(6895), 2, sym_comment, sym_include, - [312952] = 5, + [315697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9752), 1, + ACTIONS(9938), 1, aux_sym_comment_token2, - STATE(6811), 2, + STATE(6896), 2, sym_comment, sym_include, - [312969] = 5, - ACTIONS(67), 1, + [315714] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(69), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - aux_sym_image_phrase_token10, - STATE(6812), 2, + ACTIONS(4361), 1, + sym_identifier, + STATE(6897), 2, sym_comment, sym_include, - [312986] = 1, - ACTIONS(9754), 1, + [315731] = 1, + ACTIONS(9940), 1, ts_builtin_sym_end, - [312990] = 1, - ACTIONS(9756), 1, + [315735] = 1, + ACTIONS(9942), 1, ts_builtin_sym_end, - [312994] = 1, - ACTIONS(9758), 1, + [315739] = 1, + ACTIONS(9944), 1, ts_builtin_sym_end, - [312998] = 1, - ACTIONS(9760), 1, + [315743] = 1, + ACTIONS(9946), 1, ts_builtin_sym_end, - [313002] = 1, - ACTIONS(9762), 1, + [315747] = 1, + ACTIONS(9948), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [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(209)] = 162, + [SMALL_STATE(210)] = 295, + [SMALL_STATE(211)] = 372, + [SMALL_STATE(212)] = 449, + [SMALL_STATE(213)] = 526, + [SMALL_STATE(214)] = 659, + [SMALL_STATE(215)] = 740, + [SMALL_STATE(216)] = 835, + [SMALL_STATE(217)] = 916, + [SMALL_STATE(218)] = 995, [SMALL_STATE(219)] = 1126, [SMALL_STATE(220)] = 1207, - [SMALL_STATE(221)] = 1288, - [SMALL_STATE(222)] = 1369, + [SMALL_STATE(221)] = 1286, + [SMALL_STATE(222)] = 1367, [SMALL_STATE(223)] = 1448, - [SMALL_STATE(224)] = 1526, + [SMALL_STATE(224)] = 1538, [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(226)] = 1690, + [SMALL_STATE(227)] = 1768, + [SMALL_STATE(228)] = 1842, + [SMALL_STATE(229)] = 1918, + [SMALL_STATE(230)] = 1996, + [SMALL_STATE(231)] = 2072, + [SMALL_STATE(232)] = 2150, + [SMALL_STATE(233)] = 2228, + [SMALL_STATE(234)] = 2316, + [SMALL_STATE(235)] = 2404, + [SMALL_STATE(236)] = 2482, + [SMALL_STATE(237)] = 2572, + [SMALL_STATE(238)] = 2646, + [SMALL_STATE(239)] = 2722, + [SMALL_STATE(240)] = 2812, + [SMALL_STATE(241)] = 2888, + [SMALL_STATE(242)] = 2978, + [SMALL_STATE(243)] = 3054, + [SMALL_STATE(244)] = 3144, + [SMALL_STATE(245)] = 3220, + [SMALL_STATE(246)] = 3310, + [SMALL_STATE(247)] = 3388, + [SMALL_STATE(248)] = 3466, + [SMALL_STATE(249)] = 3542, + [SMALL_STATE(250)] = 3632, + [SMALL_STATE(251)] = 3716, + [SMALL_STATE(252)] = 3798, + [SMALL_STATE(253)] = 3874, + [SMALL_STATE(254)] = 3964, + [SMALL_STATE(255)] = 4038, + [SMALL_STATE(256)] = 4112, + [SMALL_STATE(257)] = 4190, + [SMALL_STATE(258)] = 4270, + [SMALL_STATE(259)] = 4344, + [SMALL_STATE(260)] = 4422, [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(263)] = 4703, + [SMALL_STATE(264)] = 4830, + [SMALL_STATE(265)] = 4957, + [SMALL_STATE(266)] = 5032, + [SMALL_STATE(267)] = 5105, + [SMALL_STATE(268)] = 5180, + [SMALL_STATE(269)] = 5255, + [SMALL_STATE(270)] = 5330, + [SMALL_STATE(271)] = 5405, + [SMALL_STATE(272)] = 5532, + [SMALL_STATE(273)] = 5657, + [SMALL_STATE(274)] = 5784, + [SMALL_STATE(275)] = 5911, + [SMALL_STATE(276)] = 5986, + [SMALL_STATE(277)] = 6113, + [SMALL_STATE(278)] = 6240, + [SMALL_STATE(279)] = 6315, + [SMALL_STATE(280)] = 6442, + [SMALL_STATE(281)] = 6517, + [SMALL_STATE(282)] = 6644, + [SMALL_STATE(283)] = 6771, + [SMALL_STATE(284)] = 6846, + [SMALL_STATE(285)] = 6921, + [SMALL_STATE(286)] = 7048, + [SMALL_STATE(287)] = 7123, + [SMALL_STATE(288)] = 7250, + [SMALL_STATE(289)] = 7377, + [SMALL_STATE(290)] = 7504, + [SMALL_STATE(291)] = 7631, + [SMALL_STATE(292)] = 7704, + [SMALL_STATE(293)] = 7779, + [SMALL_STATE(294)] = 7852, + [SMALL_STATE(295)] = 7979, + [SMALL_STATE(296)] = 8054, + [SMALL_STATE(297)] = 8129, + [SMALL_STATE(298)] = 8256, + [SMALL_STATE(299)] = 8331, + [SMALL_STATE(300)] = 8406, + [SMALL_STATE(301)] = 8479, + [SMALL_STATE(302)] = 8552, + [SMALL_STATE(303)] = 8627, + [SMALL_STATE(304)] = 8702, + [SMALL_STATE(305)] = 8829, + [SMALL_STATE(306)] = 8904, + [SMALL_STATE(307)] = 9031, + [SMALL_STATE(308)] = 9106, + [SMALL_STATE(309)] = 9233, + [SMALL_STATE(310)] = 9308, + [SMALL_STATE(311)] = 9383, + [SMALL_STATE(312)] = 9510, + [SMALL_STATE(313)] = 9599, + [SMALL_STATE(314)] = 9726, + [SMALL_STATE(315)] = 9851, + [SMALL_STATE(316)] = 9978, + [SMALL_STATE(317)] = 10105, + [SMALL_STATE(318)] = 10232, + [SMALL_STATE(319)] = 10307, + [SMALL_STATE(320)] = 10434, + [SMALL_STATE(321)] = 10509, + [SMALL_STATE(322)] = 10584, + [SMALL_STATE(323)] = 10711, + [SMALL_STATE(324)] = 10838, + [SMALL_STATE(325)] = 10915, + [SMALL_STATE(326)] = 11042, + [SMALL_STATE(327)] = 11169, + [SMALL_STATE(328)] = 11248, + [SMALL_STATE(329)] = 11323, + [SMALL_STATE(330)] = 11450, + [SMALL_STATE(331)] = 11541, + [SMALL_STATE(332)] = 11668, [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(334)] = 11817, + [SMALL_STATE(335)] = 11941, + [SMALL_STATE(336)] = 12013, + [SMALL_STATE(337)] = 12085, + [SMALL_STATE(338)] = 12157, + [SMALL_STATE(339)] = 12229, + [SMALL_STATE(340)] = 12301, + [SMALL_STATE(341)] = 12373, + [SMALL_STATE(342)] = 12445, + [SMALL_STATE(343)] = 12517, + [SMALL_STATE(344)] = 12589, + [SMALL_STATE(345)] = 12661, + [SMALL_STATE(346)] = 12733, + [SMALL_STATE(347)] = 12805, + [SMALL_STATE(348)] = 12877, + [SMALL_STATE(349)] = 12949, + [SMALL_STATE(350)] = 13021, + [SMALL_STATE(351)] = 13093, + [SMALL_STATE(352)] = 13165, + [SMALL_STATE(353)] = 13237, + [SMALL_STATE(354)] = 13309, + [SMALL_STATE(355)] = 13399, + [SMALL_STATE(356)] = 13471, + [SMALL_STATE(357)] = 13559, + [SMALL_STATE(358)] = 13631, + [SMALL_STATE(359)] = 13703, + [SMALL_STATE(360)] = 13775, + [SMALL_STATE(361)] = 13847, + [SMALL_STATE(362)] = 13923, + [SMALL_STATE(363)] = 13999, + [SMALL_STATE(364)] = 14075, + [SMALL_STATE(365)] = 14151, + [SMALL_STATE(366)] = 14225, + [SMALL_STATE(367)] = 14301, + [SMALL_STATE(368)] = 14375, + [SMALL_STATE(369)] = 14451, + [SMALL_STATE(370)] = 14527, + [SMALL_STATE(371)] = 14603, + [SMALL_STATE(372)] = 14677, + [SMALL_STATE(373)] = 14751, + [SMALL_STATE(374)] = 14827, + [SMALL_STATE(375)] = 14901, + [SMALL_STATE(376)] = 14973, + [SMALL_STATE(377)] = 15045, + [SMALL_STATE(378)] = 15117, + [SMALL_STATE(379)] = 15189, + [SMALL_STATE(380)] = 15261, + [SMALL_STATE(381)] = 15333, + [SMALL_STATE(382)] = 15411, + [SMALL_STATE(383)] = 15535, + [SMALL_STATE(384)] = 15659, [SMALL_STATE(385)] = 15783, [SMALL_STATE(386)] = 15907, [SMALL_STATE(387)] = 16028, @@ -303751,10 +306500,10 @@ static const uint32_t ts_small_parse_table_map[] = { [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(393)] = 16754, + [SMALL_STATE(394)] = 16875, + [SMALL_STATE(395)] = 16996, + [SMALL_STATE(396)] = 17117, [SMALL_STATE(397)] = 17192, [SMALL_STATE(398)] = 17313, [SMALL_STATE(399)] = 17434, @@ -303775,464 +306524,464 @@ static const uint32_t ts_small_parse_table_map[] = { [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(417)] = 19612, + [SMALL_STATE(418)] = 19733, + [SMALL_STATE(419)] = 19854, + [SMALL_STATE(420)] = 19975, + [SMALL_STATE(421)] = 20096, + [SMALL_STATE(422)] = 20217, + [SMALL_STATE(423)] = 20338, + [SMALL_STATE(424)] = 20459, + [SMALL_STATE(425)] = 20580, + [SMALL_STATE(426)] = 20701, + [SMALL_STATE(427)] = 20822, + [SMALL_STATE(428)] = 20943, + [SMALL_STATE(429)] = 21064, + [SMALL_STATE(430)] = 21185, + [SMALL_STATE(431)] = 21306, + [SMALL_STATE(432)] = 21427, + [SMALL_STATE(433)] = 21548, + [SMALL_STATE(434)] = 21669, + [SMALL_STATE(435)] = 21790, + [SMALL_STATE(436)] = 21911, + [SMALL_STATE(437)] = 22032, + [SMALL_STATE(438)] = 22153, + [SMALL_STATE(439)] = 22274, + [SMALL_STATE(440)] = 22395, + [SMALL_STATE(441)] = 22516, + [SMALL_STATE(442)] = 22637, + [SMALL_STATE(443)] = 22758, + [SMALL_STATE(444)] = 22879, + [SMALL_STATE(445)] = 23000, + [SMALL_STATE(446)] = 23121, + [SMALL_STATE(447)] = 23242, + [SMALL_STATE(448)] = 23363, + [SMALL_STATE(449)] = 23484, + [SMALL_STATE(450)] = 23605, + [SMALL_STATE(451)] = 23726, + [SMALL_STATE(452)] = 23847, + [SMALL_STATE(453)] = 23968, + [SMALL_STATE(454)] = 24089, + [SMALL_STATE(455)] = 24210, + [SMALL_STATE(456)] = 24331, + [SMALL_STATE(457)] = 24452, + [SMALL_STATE(458)] = 24573, + [SMALL_STATE(459)] = 24694, + [SMALL_STATE(460)] = 24815, + [SMALL_STATE(461)] = 24936, + [SMALL_STATE(462)] = 25057, + [SMALL_STATE(463)] = 25178, + [SMALL_STATE(464)] = 25299, + [SMALL_STATE(465)] = 25420, + [SMALL_STATE(466)] = 25541, + [SMALL_STATE(467)] = 25662, + [SMALL_STATE(468)] = 25783, + [SMALL_STATE(469)] = 25904, + [SMALL_STATE(470)] = 26025, + [SMALL_STATE(471)] = 26146, + [SMALL_STATE(472)] = 26267, + [SMALL_STATE(473)] = 26388, + [SMALL_STATE(474)] = 26509, + [SMALL_STATE(475)] = 26630, + [SMALL_STATE(476)] = 26751, + [SMALL_STATE(477)] = 26872, + [SMALL_STATE(478)] = 26993, + [SMALL_STATE(479)] = 27114, + [SMALL_STATE(480)] = 27235, + [SMALL_STATE(481)] = 27356, + [SMALL_STATE(482)] = 27477, + [SMALL_STATE(483)] = 27598, + [SMALL_STATE(484)] = 27719, + [SMALL_STATE(485)] = 27840, + [SMALL_STATE(486)] = 27961, + [SMALL_STATE(487)] = 28082, + [SMALL_STATE(488)] = 28203, + [SMALL_STATE(489)] = 28324, + [SMALL_STATE(490)] = 28445, + [SMALL_STATE(491)] = 28566, + [SMALL_STATE(492)] = 28687, + [SMALL_STATE(493)] = 28808, + [SMALL_STATE(494)] = 28929, + [SMALL_STATE(495)] = 29050, + [SMALL_STATE(496)] = 29171, + [SMALL_STATE(497)] = 29292, + [SMALL_STATE(498)] = 29413, + [SMALL_STATE(499)] = 29534, + [SMALL_STATE(500)] = 29655, + [SMALL_STATE(501)] = 29776, + [SMALL_STATE(502)] = 29897, + [SMALL_STATE(503)] = 30018, + [SMALL_STATE(504)] = 30139, + [SMALL_STATE(505)] = 30260, + [SMALL_STATE(506)] = 30381, + [SMALL_STATE(507)] = 30502, + [SMALL_STATE(508)] = 30623, + [SMALL_STATE(509)] = 30744, + [SMALL_STATE(510)] = 30865, + [SMALL_STATE(511)] = 30986, + [SMALL_STATE(512)] = 31107, + [SMALL_STATE(513)] = 31228, + [SMALL_STATE(514)] = 31349, + [SMALL_STATE(515)] = 31470, + [SMALL_STATE(516)] = 31591, + [SMALL_STATE(517)] = 31712, + [SMALL_STATE(518)] = 31833, + [SMALL_STATE(519)] = 31954, + [SMALL_STATE(520)] = 32075, + [SMALL_STATE(521)] = 32196, + [SMALL_STATE(522)] = 32317, + [SMALL_STATE(523)] = 32438, + [SMALL_STATE(524)] = 32559, + [SMALL_STATE(525)] = 32680, + [SMALL_STATE(526)] = 32801, + [SMALL_STATE(527)] = 32922, + [SMALL_STATE(528)] = 33043, + [SMALL_STATE(529)] = 33164, + [SMALL_STATE(530)] = 33285, + [SMALL_STATE(531)] = 33406, + [SMALL_STATE(532)] = 33527, + [SMALL_STATE(533)] = 33648, + [SMALL_STATE(534)] = 33769, + [SMALL_STATE(535)] = 33890, + [SMALL_STATE(536)] = 34011, + [SMALL_STATE(537)] = 34132, + [SMALL_STATE(538)] = 34253, + [SMALL_STATE(539)] = 34374, + [SMALL_STATE(540)] = 34495, + [SMALL_STATE(541)] = 34616, + [SMALL_STATE(542)] = 34737, + [SMALL_STATE(543)] = 34858, + [SMALL_STATE(544)] = 34979, + [SMALL_STATE(545)] = 35100, + [SMALL_STATE(546)] = 35221, + [SMALL_STATE(547)] = 35342, + [SMALL_STATE(548)] = 35463, + [SMALL_STATE(549)] = 35584, + [SMALL_STATE(550)] = 35705, + [SMALL_STATE(551)] = 35826, + [SMALL_STATE(552)] = 35947, + [SMALL_STATE(553)] = 36068, + [SMALL_STATE(554)] = 36189, + [SMALL_STATE(555)] = 36310, + [SMALL_STATE(556)] = 36431, + [SMALL_STATE(557)] = 36552, + [SMALL_STATE(558)] = 36673, + [SMALL_STATE(559)] = 36794, + [SMALL_STATE(560)] = 36915, + [SMALL_STATE(561)] = 37036, + [SMALL_STATE(562)] = 37157, + [SMALL_STATE(563)] = 37278, + [SMALL_STATE(564)] = 37399, + [SMALL_STATE(565)] = 37520, + [SMALL_STATE(566)] = 37641, + [SMALL_STATE(567)] = 37762, + [SMALL_STATE(568)] = 37883, + [SMALL_STATE(569)] = 38004, + [SMALL_STATE(570)] = 38125, + [SMALL_STATE(571)] = 38246, + [SMALL_STATE(572)] = 38367, + [SMALL_STATE(573)] = 38488, + [SMALL_STATE(574)] = 38609, + [SMALL_STATE(575)] = 38730, + [SMALL_STATE(576)] = 38851, + [SMALL_STATE(577)] = 38972, + [SMALL_STATE(578)] = 39093, + [SMALL_STATE(579)] = 39214, + [SMALL_STATE(580)] = 39335, + [SMALL_STATE(581)] = 39456, + [SMALL_STATE(582)] = 39577, + [SMALL_STATE(583)] = 39698, + [SMALL_STATE(584)] = 39819, + [SMALL_STATE(585)] = 39940, + [SMALL_STATE(586)] = 40061, + [SMALL_STATE(587)] = 40182, + [SMALL_STATE(588)] = 40303, + [SMALL_STATE(589)] = 40424, + [SMALL_STATE(590)] = 40545, + [SMALL_STATE(591)] = 40666, + [SMALL_STATE(592)] = 40787, + [SMALL_STATE(593)] = 40908, + [SMALL_STATE(594)] = 41029, + [SMALL_STATE(595)] = 41150, + [SMALL_STATE(596)] = 41271, + [SMALL_STATE(597)] = 41392, + [SMALL_STATE(598)] = 41513, + [SMALL_STATE(599)] = 41634, + [SMALL_STATE(600)] = 41755, + [SMALL_STATE(601)] = 41876, + [SMALL_STATE(602)] = 41997, + [SMALL_STATE(603)] = 42118, + [SMALL_STATE(604)] = 42239, + [SMALL_STATE(605)] = 42360, + [SMALL_STATE(606)] = 42481, + [SMALL_STATE(607)] = 42602, + [SMALL_STATE(608)] = 42723, + [SMALL_STATE(609)] = 42844, + [SMALL_STATE(610)] = 42965, + [SMALL_STATE(611)] = 43086, + [SMALL_STATE(612)] = 43207, + [SMALL_STATE(613)] = 43328, + [SMALL_STATE(614)] = 43449, + [SMALL_STATE(615)] = 43570, + [SMALL_STATE(616)] = 43691, + [SMALL_STATE(617)] = 43812, + [SMALL_STATE(618)] = 43933, + [SMALL_STATE(619)] = 44054, + [SMALL_STATE(620)] = 44175, + [SMALL_STATE(621)] = 44296, + [SMALL_STATE(622)] = 44417, + [SMALL_STATE(623)] = 44538, + [SMALL_STATE(624)] = 44659, + [SMALL_STATE(625)] = 44780, + [SMALL_STATE(626)] = 44901, + [SMALL_STATE(627)] = 45022, + [SMALL_STATE(628)] = 45143, + [SMALL_STATE(629)] = 45264, + [SMALL_STATE(630)] = 45385, + [SMALL_STATE(631)] = 45506, + [SMALL_STATE(632)] = 45627, + [SMALL_STATE(633)] = 45748, + [SMALL_STATE(634)] = 45869, + [SMALL_STATE(635)] = 45990, + [SMALL_STATE(636)] = 46111, + [SMALL_STATE(637)] = 46232, + [SMALL_STATE(638)] = 46353, + [SMALL_STATE(639)] = 46474, + [SMALL_STATE(640)] = 46595, + [SMALL_STATE(641)] = 46716, + [SMALL_STATE(642)] = 46837, + [SMALL_STATE(643)] = 46958, + [SMALL_STATE(644)] = 47079, [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(649)] = 47594, + [SMALL_STATE(650)] = 47715, + [SMALL_STATE(651)] = 47836, + [SMALL_STATE(652)] = 47957, + [SMALL_STATE(653)] = 48078, + [SMALL_STATE(654)] = 48199, + [SMALL_STATE(655)] = 48320, + [SMALL_STATE(656)] = 48441, + [SMALL_STATE(657)] = 48562, + [SMALL_STATE(658)] = 48683, + [SMALL_STATE(659)] = 48804, + [SMALL_STATE(660)] = 48925, + [SMALL_STATE(661)] = 49046, + [SMALL_STATE(662)] = 49167, + [SMALL_STATE(663)] = 49288, + [SMALL_STATE(664)] = 49409, + [SMALL_STATE(665)] = 49530, + [SMALL_STATE(666)] = 49651, + [SMALL_STATE(667)] = 49772, + [SMALL_STATE(668)] = 49893, + [SMALL_STATE(669)] = 50014, + [SMALL_STATE(670)] = 50135, + [SMALL_STATE(671)] = 50256, + [SMALL_STATE(672)] = 50377, + [SMALL_STATE(673)] = 50498, + [SMALL_STATE(674)] = 50619, + [SMALL_STATE(675)] = 50740, + [SMALL_STATE(676)] = 50861, + [SMALL_STATE(677)] = 50982, + [SMALL_STATE(678)] = 51103, + [SMALL_STATE(679)] = 51224, + [SMALL_STATE(680)] = 51345, + [SMALL_STATE(681)] = 51466, + [SMALL_STATE(682)] = 51587, + [SMALL_STATE(683)] = 51708, + [SMALL_STATE(684)] = 51829, + [SMALL_STATE(685)] = 51950, + [SMALL_STATE(686)] = 52071, + [SMALL_STATE(687)] = 52192, + [SMALL_STATE(688)] = 52313, + [SMALL_STATE(689)] = 52434, + [SMALL_STATE(690)] = 52555, + [SMALL_STATE(691)] = 52676, + [SMALL_STATE(692)] = 52797, + [SMALL_STATE(693)] = 52918, + [SMALL_STATE(694)] = 53039, + [SMALL_STATE(695)] = 53160, + [SMALL_STATE(696)] = 53281, + [SMALL_STATE(697)] = 53354, + [SMALL_STATE(698)] = 53431, + [SMALL_STATE(699)] = 53552, + [SMALL_STATE(700)] = 53623, + [SMALL_STATE(701)] = 53744, + [SMALL_STATE(702)] = 53865, + [SMALL_STATE(703)] = 53986, + [SMALL_STATE(704)] = 54107, + [SMALL_STATE(705)] = 54228, + [SMALL_STATE(706)] = 54299, + [SMALL_STATE(707)] = 54420, + [SMALL_STATE(708)] = 54541, + [SMALL_STATE(709)] = 54662, + [SMALL_STATE(710)] = 54783, + [SMALL_STATE(711)] = 54904, + [SMALL_STATE(712)] = 55025, + [SMALL_STATE(713)] = 55146, + [SMALL_STATE(714)] = 55267, + [SMALL_STATE(715)] = 55388, + [SMALL_STATE(716)] = 55509, + [SMALL_STATE(717)] = 55630, + [SMALL_STATE(718)] = 55751, + [SMALL_STATE(719)] = 55872, + [SMALL_STATE(720)] = 55993, + [SMALL_STATE(721)] = 56114, + [SMALL_STATE(722)] = 56235, + [SMALL_STATE(723)] = 56356, + [SMALL_STATE(724)] = 56477, + [SMALL_STATE(725)] = 56598, + [SMALL_STATE(726)] = 56719, + [SMALL_STATE(727)] = 56840, + [SMALL_STATE(728)] = 56961, + [SMALL_STATE(729)] = 57082, + [SMALL_STATE(730)] = 57203, + [SMALL_STATE(731)] = 57324, + [SMALL_STATE(732)] = 57445, + [SMALL_STATE(733)] = 57516, + [SMALL_STATE(734)] = 57637, + [SMALL_STATE(735)] = 57758, + [SMALL_STATE(736)] = 57879, + [SMALL_STATE(737)] = 58000, + [SMALL_STATE(738)] = 58121, + [SMALL_STATE(739)] = 58242, + [SMALL_STATE(740)] = 58363, + [SMALL_STATE(741)] = 58484, + [SMALL_STATE(742)] = 58605, + [SMALL_STATE(743)] = 58676, + [SMALL_STATE(744)] = 58797, + [SMALL_STATE(745)] = 58918, + [SMALL_STATE(746)] = 59039, + [SMALL_STATE(747)] = 59160, + [SMALL_STATE(748)] = 59281, + [SMALL_STATE(749)] = 59402, + [SMALL_STATE(750)] = 59523, + [SMALL_STATE(751)] = 59644, + [SMALL_STATE(752)] = 59765, + [SMALL_STATE(753)] = 59886, + [SMALL_STATE(754)] = 60007, + [SMALL_STATE(755)] = 60128, + [SMALL_STATE(756)] = 60249, + [SMALL_STATE(757)] = 60370, + [SMALL_STATE(758)] = 60491, + [SMALL_STATE(759)] = 60612, + [SMALL_STATE(760)] = 60733, + [SMALL_STATE(761)] = 60854, + [SMALL_STATE(762)] = 60975, + [SMALL_STATE(763)] = 61096, + [SMALL_STATE(764)] = 61217, + [SMALL_STATE(765)] = 61338, + [SMALL_STATE(766)] = 61459, + [SMALL_STATE(767)] = 61580, + [SMALL_STATE(768)] = 61701, + [SMALL_STATE(769)] = 61822, + [SMALL_STATE(770)] = 61943, + [SMALL_STATE(771)] = 62064, + [SMALL_STATE(772)] = 62185, + [SMALL_STATE(773)] = 62306, + [SMALL_STATE(774)] = 62427, + [SMALL_STATE(775)] = 62548, + [SMALL_STATE(776)] = 62669, + [SMALL_STATE(777)] = 62790, + [SMALL_STATE(778)] = 62911, + [SMALL_STATE(779)] = 63032, + [SMALL_STATE(780)] = 63153, + [SMALL_STATE(781)] = 63274, + [SMALL_STATE(782)] = 63395, + [SMALL_STATE(783)] = 63516, + [SMALL_STATE(784)] = 63637, + [SMALL_STATE(785)] = 63758, + [SMALL_STATE(786)] = 63879, + [SMALL_STATE(787)] = 64000, + [SMALL_STATE(788)] = 64121, + [SMALL_STATE(789)] = 64242, + [SMALL_STATE(790)] = 64363, + [SMALL_STATE(791)] = 64484, + [SMALL_STATE(792)] = 64605, + [SMALL_STATE(793)] = 64726, + [SMALL_STATE(794)] = 64847, + [SMALL_STATE(795)] = 64968, + [SMALL_STATE(796)] = 65089, + [SMALL_STATE(797)] = 65210, + [SMALL_STATE(798)] = 65331, + [SMALL_STATE(799)] = 65452, + [SMALL_STATE(800)] = 65573, + [SMALL_STATE(801)] = 65694, + [SMALL_STATE(802)] = 65815, + [SMALL_STATE(803)] = 65936, + [SMALL_STATE(804)] = 66057, + [SMALL_STATE(805)] = 66178, + [SMALL_STATE(806)] = 66299, + [SMALL_STATE(807)] = 66420, + [SMALL_STATE(808)] = 66541, + [SMALL_STATE(809)] = 66662, + [SMALL_STATE(810)] = 66783, + [SMALL_STATE(811)] = 66904, + [SMALL_STATE(812)] = 67025, + [SMALL_STATE(813)] = 67146, + [SMALL_STATE(814)] = 67267, + [SMALL_STATE(815)] = 67388, + [SMALL_STATE(816)] = 67509, + [SMALL_STATE(817)] = 67630, + [SMALL_STATE(818)] = 67751, + [SMALL_STATE(819)] = 67872, + [SMALL_STATE(820)] = 67993, + [SMALL_STATE(821)] = 68114, + [SMALL_STATE(822)] = 68235, + [SMALL_STATE(823)] = 68356, + [SMALL_STATE(824)] = 68477, + [SMALL_STATE(825)] = 68598, + [SMALL_STATE(826)] = 68719, + [SMALL_STATE(827)] = 68840, + [SMALL_STATE(828)] = 68961, + [SMALL_STATE(829)] = 69082, + [SMALL_STATE(830)] = 69203, + [SMALL_STATE(831)] = 69324, + [SMALL_STATE(832)] = 69445, + [SMALL_STATE(833)] = 69566, + [SMALL_STATE(834)] = 69687, + [SMALL_STATE(835)] = 69808, + [SMALL_STATE(836)] = 69929, + [SMALL_STATE(837)] = 70050, + [SMALL_STATE(838)] = 70171, + [SMALL_STATE(839)] = 70292, + [SMALL_STATE(840)] = 70413, + [SMALL_STATE(841)] = 70534, + [SMALL_STATE(842)] = 70655, + [SMALL_STATE(843)] = 70776, + [SMALL_STATE(844)] = 70897, + [SMALL_STATE(845)] = 71018, + [SMALL_STATE(846)] = 71093, + [SMALL_STATE(847)] = 71214, + [SMALL_STATE(848)] = 71335, + [SMALL_STATE(849)] = 71456, + [SMALL_STATE(850)] = 71577, + [SMALL_STATE(851)] = 71698, + [SMALL_STATE(852)] = 71819, + [SMALL_STATE(853)] = 71940, + [SMALL_STATE(854)] = 72061, + [SMALL_STATE(855)] = 72182, + [SMALL_STATE(856)] = 72303, + [SMALL_STATE(857)] = 72424, + [SMALL_STATE(858)] = 72545, + [SMALL_STATE(859)] = 72666, + [SMALL_STATE(860)] = 72787, + [SMALL_STATE(861)] = 72908, + [SMALL_STATE(862)] = 73029, + [SMALL_STATE(863)] = 73150, + [SMALL_STATE(864)] = 73271, + [SMALL_STATE(865)] = 73392, + [SMALL_STATE(866)] = 73513, + [SMALL_STATE(867)] = 73634, + [SMALL_STATE(868)] = 73755, + [SMALL_STATE(869)] = 73876, + [SMALL_STATE(870)] = 73997, + [SMALL_STATE(871)] = 74118, + [SMALL_STATE(872)] = 74239, + [SMALL_STATE(873)] = 74360, + [SMALL_STATE(874)] = 74481, [SMALL_STATE(875)] = 74602, [SMALL_STATE(876)] = 74723, [SMALL_STATE(877)] = 74844, @@ -304328,15 +307077,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(970)] = 86097, + [SMALL_STATE(971)] = 86218, + [SMALL_STATE(972)] = 86339, + [SMALL_STATE(973)] = 86460, + [SMALL_STATE(974)] = 86581, + [SMALL_STATE(975)] = 86702, + [SMALL_STATE(976)] = 86823, + [SMALL_STATE(977)] = 86944, + [SMALL_STATE(978)] = 87065, [SMALL_STATE(979)] = 87136, [SMALL_STATE(980)] = 87257, [SMALL_STATE(981)] = 87378, @@ -304346,114 +307095,114 @@ static const uint32_t ts_small_parse_table_map[] = { [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(988)] = 88139, + [SMALL_STATE(989)] = 88223, + [SMALL_STATE(990)] = 88295, + [SMALL_STATE(991)] = 88365, + [SMALL_STATE(992)] = 88451, + [SMALL_STATE(993)] = 88521, + [SMALL_STATE(994)] = 88607, + [SMALL_STATE(995)] = 88677, + [SMALL_STATE(996)] = 88747, + [SMALL_STATE(997)] = 88833, + [SMALL_STATE(998)] = 88903, + [SMALL_STATE(999)] = 88989, + [SMALL_STATE(1000)] = 89059, + [SMALL_STATE(1001)] = 89139, + [SMALL_STATE(1002)] = 89217, + [SMALL_STATE(1003)] = 89287, + [SMALL_STATE(1004)] = 89373, + [SMALL_STATE(1005)] = 89459, + [SMALL_STATE(1006)] = 89529, + [SMALL_STATE(1007)] = 89599, + [SMALL_STATE(1008)] = 89669, + [SMALL_STATE(1009)] = 89739, + [SMALL_STATE(1010)] = 89809, + [SMALL_STATE(1011)] = 89879, + [SMALL_STATE(1012)] = 89949, + [SMALL_STATE(1013)] = 90019, + [SMALL_STATE(1014)] = 90089, [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(1018)] = 90399, + [SMALL_STATE(1019)] = 90469, + [SMALL_STATE(1020)] = 90539, + [SMALL_STATE(1021)] = 90609, [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(1026)] = 90975, + [SMALL_STATE(1027)] = 91060, + [SMALL_STATE(1028)] = 91145, + [SMALL_STATE(1029)] = 91224, + [SMALL_STATE(1030)] = 91301, + [SMALL_STATE(1031)] = 91386, + [SMALL_STATE(1032)] = 91471, + [SMALL_STATE(1033)] = 91556, + [SMALL_STATE(1034)] = 91641, + [SMALL_STATE(1035)] = 91724, + [SMALL_STATE(1036)] = 91809, + [SMALL_STATE(1037)] = 91894, + [SMALL_STATE(1038)] = 91981, + [SMALL_STATE(1039)] = 92066, [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(1041)] = 92219, + [SMALL_STATE(1042)] = 92291, + [SMALL_STATE(1043)] = 92363, + [SMALL_STATE(1044)] = 92433, + [SMALL_STATE(1045)] = 92505, + [SMALL_STATE(1046)] = 92577, + [SMALL_STATE(1047)] = 92661, + [SMALL_STATE(1048)] = 92733, + [SMALL_STATE(1049)] = 92805, + [SMALL_STATE(1050)] = 92873, + [SMALL_STATE(1051)] = 92945, + [SMALL_STATE(1052)] = 93013, + [SMALL_STATE(1053)] = 93081, + [SMALL_STATE(1054)] = 93153, + [SMALL_STATE(1055)] = 93227, + [SMALL_STATE(1056)] = 93295, + [SMALL_STATE(1057)] = 93365, + [SMALL_STATE(1058)] = 93435, + [SMALL_STATE(1059)] = 93507, + [SMALL_STATE(1060)] = 93575, + [SMALL_STATE(1061)] = 93645, [SMALL_STATE(1062)] = 93713, - [SMALL_STATE(1063)] = 93784, + [SMALL_STATE(1063)] = 93780, [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(1065)] = 93920, + [SMALL_STATE(1066)] = 93987, + [SMALL_STATE(1067)] = 94054, + [SMALL_STATE(1068)] = 94125, + [SMALL_STATE(1069)] = 94194, + [SMALL_STATE(1070)] = 94261, + [SMALL_STATE(1071)] = 94328, + [SMALL_STATE(1072)] = 94399, + [SMALL_STATE(1073)] = 94466, + [SMALL_STATE(1074)] = 94533, + [SMALL_STATE(1075)] = 94604, + [SMALL_STATE(1076)] = 94675, + [SMALL_STATE(1077)] = 94742, + [SMALL_STATE(1078)] = 94813, + [SMALL_STATE(1079)] = 94884, + [SMALL_STATE(1080)] = 94953, + [SMALL_STATE(1081)] = 95024, + [SMALL_STATE(1082)] = 95095, + [SMALL_STATE(1083)] = 95164, + [SMALL_STATE(1084)] = 95237, + [SMALL_STATE(1085)] = 95304, + [SMALL_STATE(1086)] = 95375, + [SMALL_STATE(1087)] = 95442, + [SMALL_STATE(1088)] = 95509, + [SMALL_STATE(1089)] = 95578, + [SMALL_STATE(1090)] = 95647, + [SMALL_STATE(1091)] = 95718, [SMALL_STATE(1092)] = 95791, [SMALL_STATE(1093)] = 95857, [SMALL_STATE(1094)] = 95923, - [SMALL_STATE(1095)] = 95991, + [SMALL_STATE(1095)] = 95989, [SMALL_STATE(1096)] = 96057, [SMALL_STATE(1097)] = 96123, [SMALL_STATE(1098)] = 96189, @@ -304465,15 +307214,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(1107)] = 96789, + [SMALL_STATE(1108)] = 96855, + [SMALL_STATE(1109)] = 96921, + [SMALL_STATE(1110)] = 96991, + [SMALL_STATE(1111)] = 97057, + [SMALL_STATE(1112)] = 97123, + [SMALL_STATE(1113)] = 97193, + [SMALL_STATE(1114)] = 97259, + [SMALL_STATE(1115)] = 97325, [SMALL_STATE(1116)] = 97391, [SMALL_STATE(1117)] = 97457, [SMALL_STATE(1118)] = 97523, @@ -304485,49 +307234,49 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1124)] = 97919, [SMALL_STATE(1125)] = 97985, [SMALL_STATE(1126)] = 98051, - [SMALL_STATE(1127)] = 98116, - [SMALL_STATE(1128)] = 98181, + [SMALL_STATE(1127)] = 98138, + [SMALL_STATE(1128)] = 98203, [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(1133)] = 98570, + [SMALL_STATE(1134)] = 98635, + [SMALL_STATE(1135)] = 98722, + [SMALL_STATE(1136)] = 98787, + [SMALL_STATE(1137)] = 98852, + [SMALL_STATE(1138)] = 98939, + [SMALL_STATE(1139)] = 99026, + [SMALL_STATE(1140)] = 99091, + [SMALL_STATE(1141)] = 99156, + [SMALL_STATE(1142)] = 99221, + [SMALL_STATE(1143)] = 99286, + [SMALL_STATE(1144)] = 99351, + [SMALL_STATE(1145)] = 99416, + [SMALL_STATE(1146)] = 99503, + [SMALL_STATE(1147)] = 99568, + [SMALL_STATE(1148)] = 99655, + [SMALL_STATE(1149)] = 99720, + [SMALL_STATE(1150)] = 99785, + [SMALL_STATE(1151)] = 99850, + [SMALL_STATE(1152)] = 99915, + [SMALL_STATE(1153)] = 99980, + [SMALL_STATE(1154)] = 100045, + [SMALL_STATE(1155)] = 100110, + [SMALL_STATE(1156)] = 100175, + [SMALL_STATE(1157)] = 100262, + [SMALL_STATE(1158)] = 100349, + [SMALL_STATE(1159)] = 100428, + [SMALL_STATE(1160)] = 100503, [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(1166)] = 100920, [SMALL_STATE(1167)] = 100989, [SMALL_STATE(1168)] = 101054, - [SMALL_STATE(1169)] = 101119, + [SMALL_STATE(1169)] = 101121, [SMALL_STATE(1170)] = 101186, [SMALL_STATE(1171)] = 101278, [SMALL_STATE(1172)] = 101370, @@ -304540,64 +307289,64 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1179)] = 102014, [SMALL_STATE(1180)] = 102106, [SMALL_STATE(1181)] = 102187, - [SMALL_STATE(1182)] = 102268, - [SMALL_STATE(1183)] = 102347, + [SMALL_STATE(1182)] = 102262, + [SMALL_STATE(1183)] = 102343, [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(1186)] = 102588, + [SMALL_STATE(1187)] = 102667, + [SMALL_STATE(1188)] = 102748, + [SMALL_STATE(1189)] = 102829, + [SMALL_STATE(1190)] = 102910, + [SMALL_STATE(1191)] = 102991, + [SMALL_STATE(1192)] = 103070, [SMALL_STATE(1193)] = 103141, - [SMALL_STATE(1194)] = 103209, - [SMALL_STATE(1195)] = 103289, + [SMALL_STATE(1194)] = 103221, + [SMALL_STATE(1195)] = 103301, [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(1201)] = 103767, + [SMALL_STATE(1202)] = 103847, + [SMALL_STATE(1203)] = 103927, + [SMALL_STATE(1204)] = 104007, + [SMALL_STATE(1205)] = 104087, + [SMALL_STATE(1206)] = 104157, [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(1213)] = 104696, + [SMALL_STATE(1214)] = 104775, + [SMALL_STATE(1215)] = 104854, + [SMALL_STATE(1216)] = 104923, + [SMALL_STATE(1217)] = 105004, + [SMALL_STATE(1218)] = 105071, + [SMALL_STATE(1219)] = 105152, + [SMALL_STATE(1220)] = 105233, + [SMALL_STATE(1221)] = 105306, + [SMALL_STATE(1222)] = 105387, + [SMALL_STATE(1223)] = 105468, + [SMALL_STATE(1224)] = 105549, [SMALL_STATE(1225)] = 105626, [SMALL_STATE(1226)] = 105707, [SMALL_STATE(1227)] = 105787, - [SMALL_STATE(1228)] = 105867, - [SMALL_STATE(1229)] = 105935, + [SMALL_STATE(1228)] = 105855, + [SMALL_STATE(1229)] = 105921, [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(1232)] = 106161, + [SMALL_STATE(1233)] = 106241, + [SMALL_STATE(1234)] = 106321, + [SMALL_STATE(1235)] = 106401, + [SMALL_STATE(1236)] = 106479, + [SMALL_STATE(1237)] = 106559, + [SMALL_STATE(1238)] = 106637, + [SMALL_STATE(1239)] = 106701, [SMALL_STATE(1240)] = 106773, [SMALL_STATE(1241)] = 106853, [SMALL_STATE(1242)] = 106946, @@ -304608,25 +307357,25 @@ static const uint32_t ts_small_parse_table_map[] = { [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(1250)] = 107660, + [SMALL_STATE(1251)] = 107753, + [SMALL_STATE(1252)] = 107818, + [SMALL_STATE(1253)] = 107911, + [SMALL_STATE(1254)] = 108004, + [SMALL_STATE(1255)] = 108097, + [SMALL_STATE(1256)] = 108190, + [SMALL_STATE(1257)] = 108283, + [SMALL_STATE(1258)] = 108376, + [SMALL_STATE(1259)] = 108469, + [SMALL_STATE(1260)] = 108562, + [SMALL_STATE(1261)] = 108655, + [SMALL_STATE(1262)] = 108748, + [SMALL_STATE(1263)] = 108841, + [SMALL_STATE(1264)] = 108934, + [SMALL_STATE(1265)] = 109027, + [SMALL_STATE(1266)] = 109120, + [SMALL_STATE(1267)] = 109213, + [SMALL_STATE(1268)] = 109306, [SMALL_STATE(1269)] = 109399, [SMALL_STATE(1270)] = 109473, [SMALL_STATE(1271)] = 109547, @@ -304637,15 +307386,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(1279)] = 110121, + [SMALL_STATE(1280)] = 110196, + [SMALL_STATE(1281)] = 110271, + [SMALL_STATE(1282)] = 110330, + [SMALL_STATE(1283)] = 110407, + [SMALL_STATE(1284)] = 110476, + [SMALL_STATE(1285)] = 110537, + [SMALL_STATE(1286)] = 110614, + [SMALL_STATE(1287)] = 110691, [SMALL_STATE(1288)] = 110752, [SMALL_STATE(1289)] = 110829, [SMALL_STATE(1290)] = 110906, @@ -304653,10223 +307402,10398 @@ static const uint32_t ts_small_parse_table_map[] = { [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(1295)] = 111281, + [SMALL_STATE(1296)] = 111355, + [SMALL_STATE(1297)] = 111429, + [SMALL_STATE(1298)] = 111513, + [SMALL_STATE(1299)] = 111575, + [SMALL_STATE(1300)] = 111643, + [SMALL_STATE(1301)] = 111707, + [SMALL_STATE(1302)] = 111791, + [SMALL_STATE(1303)] = 111875, + [SMALL_STATE(1304)] = 111949, + [SMALL_STATE(1305)] = 112005, + [SMALL_STATE(1306)] = 112089, + [SMALL_STATE(1307)] = 112163, + [SMALL_STATE(1308)] = 112247, + [SMALL_STATE(1309)] = 112309, + [SMALL_STATE(1310)] = 112381, + [SMALL_STATE(1311)] = 112455, + [SMALL_STATE(1312)] = 112539, + [SMALL_STATE(1313)] = 112623, + [SMALL_STATE(1314)] = 112697, + [SMALL_STATE(1315)] = 112769, + [SMALL_STATE(1316)] = 112853, + [SMALL_STATE(1317)] = 112927, + [SMALL_STATE(1318)] = 113011, + [SMALL_STATE(1319)] = 113085, [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(1322)] = 113289, + [SMALL_STATE(1323)] = 113360, + [SMALL_STATE(1324)] = 113419, + [SMALL_STATE(1325)] = 113492, + [SMALL_STATE(1326)] = 113565, + [SMALL_STATE(1327)] = 113622, + [SMALL_STATE(1328)] = 113695, + [SMALL_STATE(1329)] = 113768, + [SMALL_STATE(1330)] = 113841, + [SMALL_STATE(1331)] = 113896, + [SMALL_STATE(1332)] = 113953, + [SMALL_STATE(1333)] = 114026, + [SMALL_STATE(1334)] = 114099, + [SMALL_STATE(1335)] = 114156, + [SMALL_STATE(1336)] = 114223, + [SMALL_STATE(1337)] = 114286, + [SMALL_STATE(1338)] = 114361, + [SMALL_STATE(1339)] = 114420, + [SMALL_STATE(1340)] = 114475, + [SMALL_STATE(1341)] = 114534, + [SMALL_STATE(1342)] = 114607, + [SMALL_STATE(1343)] = 114662, + [SMALL_STATE(1344)] = 114717, + [SMALL_STATE(1345)] = 114776, + [SMALL_STATE(1346)] = 114831, + [SMALL_STATE(1347)] = 114890, + [SMALL_STATE(1348)] = 114949, + [SMALL_STATE(1349)] = 115004, + [SMALL_STATE(1350)] = 115061, + [SMALL_STATE(1351)] = 115122, + [SMALL_STATE(1352)] = 115181, + [SMALL_STATE(1353)] = 115236, [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(1355)] = 115379, + [SMALL_STATE(1356)] = 115465, + [SMALL_STATE(1357)] = 115521, + [SMALL_STATE(1358)] = 115575, + [SMALL_STATE(1359)] = 115631, + [SMALL_STATE(1360)] = 115703, + [SMALL_STATE(1361)] = 115775, + [SMALL_STATE(1362)] = 115861, + [SMALL_STATE(1363)] = 115947, + [SMALL_STATE(1364)] = 116033, + [SMALL_STATE(1365)] = 116119, + [SMALL_STATE(1366)] = 116191, + [SMALL_STATE(1367)] = 116277, + [SMALL_STATE(1368)] = 116363, + [SMALL_STATE(1369)] = 116449, + [SMALL_STATE(1370)] = 116535, + [SMALL_STATE(1371)] = 116605, + [SMALL_STATE(1372)] = 116677, + [SMALL_STATE(1373)] = 116763, + [SMALL_STATE(1374)] = 116835, + [SMALL_STATE(1375)] = 116907, + [SMALL_STATE(1376)] = 116979, + [SMALL_STATE(1377)] = 117031, + [SMALL_STATE(1378)] = 117103, + [SMALL_STATE(1379)] = 117175, + [SMALL_STATE(1380)] = 117247, + [SMALL_STATE(1381)] = 117319, + [SMALL_STATE(1382)] = 117377, + [SMALL_STATE(1383)] = 117449, + [SMALL_STATE(1384)] = 117509, + [SMALL_STATE(1385)] = 117581, + [SMALL_STATE(1386)] = 117651, + [SMALL_STATE(1387)] = 117723, + [SMALL_STATE(1388)] = 117777, + [SMALL_STATE(1389)] = 117863, + [SMALL_STATE(1390)] = 117917, + [SMALL_STATE(1391)] = 117977, + [SMALL_STATE(1392)] = 118063, + [SMALL_STATE(1393)] = 118135, + [SMALL_STATE(1394)] = 118207, + [SMALL_STATE(1395)] = 118279, + [SMALL_STATE(1396)] = 118333, + [SMALL_STATE(1397)] = 118419, + [SMALL_STATE(1398)] = 118491, + [SMALL_STATE(1399)] = 118561, + [SMALL_STATE(1400)] = 118633, + [SMALL_STATE(1401)] = 118695, + [SMALL_STATE(1402)] = 118767, + [SMALL_STATE(1403)] = 118839, + [SMALL_STATE(1404)] = 118905, + [SMALL_STATE(1405)] = 118975, + [SMALL_STATE(1406)] = 119037, + [SMALL_STATE(1407)] = 119103, + [SMALL_STATE(1408)] = 119175, [SMALL_STATE(1409)] = 119261, [SMALL_STATE(1410)] = 119333, - [SMALL_STATE(1411)] = 119406, + [SMALL_STATE(1411)] = 119386, [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(1413)] = 119518, + [SMALL_STATE(1414)] = 119571, + [SMALL_STATE(1415)] = 119640, + [SMALL_STATE(1416)] = 119711, + [SMALL_STATE(1417)] = 119782, + [SMALL_STATE(1418)] = 119835, + [SMALL_STATE(1419)] = 119888, + [SMALL_STATE(1420)] = 119941, + [SMALL_STATE(1421)] = 120010, + [SMALL_STATE(1422)] = 120063, + [SMALL_STATE(1423)] = 120116, + [SMALL_STATE(1424)] = 120169, + [SMALL_STATE(1425)] = 120222, + [SMALL_STATE(1426)] = 120275, + [SMALL_STATE(1427)] = 120328, + [SMALL_STATE(1428)] = 120381, + [SMALL_STATE(1429)] = 120434, + [SMALL_STATE(1430)] = 120487, + [SMALL_STATE(1431)] = 120540, + [SMALL_STATE(1432)] = 120609, + [SMALL_STATE(1433)] = 120682, + [SMALL_STATE(1434)] = 120735, + [SMALL_STATE(1435)] = 120788, + [SMALL_STATE(1436)] = 120841, + [SMALL_STATE(1437)] = 120894, + [SMALL_STATE(1438)] = 120963, + [SMALL_STATE(1439)] = 121036, + [SMALL_STATE(1440)] = 121109, + [SMALL_STATE(1441)] = 121180, + [SMALL_STATE(1442)] = 121233, + [SMALL_STATE(1443)] = 121306, + [SMALL_STATE(1444)] = 121379, + [SMALL_STATE(1445)] = 121452, + [SMALL_STATE(1446)] = 121517, + [SMALL_STATE(1447)] = 121578, + [SMALL_STATE(1448)] = 121649, + [SMALL_STATE(1449)] = 121702, + [SMALL_STATE(1450)] = 121755, + [SMALL_STATE(1451)] = 121828, + [SMALL_STATE(1452)] = 121881, + [SMALL_STATE(1453)] = 121954, + [SMALL_STATE(1454)] = 122007, + [SMALL_STATE(1455)] = 122062, + [SMALL_STATE(1456)] = 122115, + [SMALL_STATE(1457)] = 122174, [SMALL_STATE(1458)] = 122231, - [SMALL_STATE(1459)] = 122299, + [SMALL_STATE(1459)] = 122301, [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(1461)] = 122425, + [SMALL_STATE(1462)] = 122483, + [SMALL_STATE(1463)] = 122539, + [SMALL_STATE(1464)] = 122595, + [SMALL_STATE(1465)] = 122665, + [SMALL_STATE(1466)] = 122721, + [SMALL_STATE(1467)] = 122777, + [SMALL_STATE(1468)] = 122835, + [SMALL_STATE(1469)] = 122893, + [SMALL_STATE(1470)] = 122949, + [SMALL_STATE(1471)] = 123019, + [SMALL_STATE(1472)] = 123077, + [SMALL_STATE(1473)] = 123131, + [SMALL_STATE(1474)] = 123189, + [SMALL_STATE(1475)] = 123247, + [SMALL_STATE(1476)] = 123317, + [SMALL_STATE(1477)] = 123385, + [SMALL_STATE(1478)] = 123441, + [SMALL_STATE(1479)] = 123497, + [SMALL_STATE(1480)] = 123551, + [SMALL_STATE(1481)] = 123621, + [SMALL_STATE(1482)] = 123691, + [SMALL_STATE(1483)] = 123761, + [SMALL_STATE(1484)] = 123831, + [SMALL_STATE(1485)] = 123901, + [SMALL_STATE(1486)] = 123965, + [SMALL_STATE(1487)] = 124025, + [SMALL_STATE(1488)] = 124093, + [SMALL_STATE(1489)] = 124147, + [SMALL_STATE(1490)] = 124215, + [SMALL_STATE(1491)] = 124271, + [SMALL_STATE(1492)] = 124329, + [SMALL_STATE(1493)] = 124385, + [SMALL_STATE(1494)] = 124451, + [SMALL_STATE(1495)] = 124507, + [SMALL_STATE(1496)] = 124564, + [SMALL_STATE(1497)] = 124619, + [SMALL_STATE(1498)] = 124667, [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, + [SMALL_STATE(1500)] = 124787, + [SMALL_STATE(1501)] = 124837, + [SMALL_STATE(1502)] = 124885, + [SMALL_STATE(1503)] = 124935, + [SMALL_STATE(1504)] = 124985, + [SMALL_STATE(1505)] = 125033, + [SMALL_STATE(1506)] = 125083, + [SMALL_STATE(1507)] = 125133, + [SMALL_STATE(1508)] = 125181, + [SMALL_STATE(1509)] = 125229, + [SMALL_STATE(1510)] = 125277, + [SMALL_STATE(1511)] = 125325, + [SMALL_STATE(1512)] = 125373, + [SMALL_STATE(1513)] = 125421, + [SMALL_STATE(1514)] = 125469, + [SMALL_STATE(1515)] = 125517, + [SMALL_STATE(1516)] = 125565, + [SMALL_STATE(1517)] = 125613, + [SMALL_STATE(1518)] = 125661, + [SMALL_STATE(1519)] = 125709, + [SMALL_STATE(1520)] = 125757, + [SMALL_STATE(1521)] = 125805, + [SMALL_STATE(1522)] = 125853, + [SMALL_STATE(1523)] = 125901, + [SMALL_STATE(1524)] = 125949, + [SMALL_STATE(1525)] = 125997, + [SMALL_STATE(1526)] = 126045, + [SMALL_STATE(1527)] = 126093, + [SMALL_STATE(1528)] = 126141, + [SMALL_STATE(1529)] = 126189, + [SMALL_STATE(1530)] = 126237, + [SMALL_STATE(1531)] = 126287, + [SMALL_STATE(1532)] = 126335, + [SMALL_STATE(1533)] = 126383, + [SMALL_STATE(1534)] = 126433, + [SMALL_STATE(1535)] = 126483, + [SMALL_STATE(1536)] = 126533, + [SMALL_STATE(1537)] = 126581, + [SMALL_STATE(1538)] = 126631, + [SMALL_STATE(1539)] = 126681, + [SMALL_STATE(1540)] = 126729, + [SMALL_STATE(1541)] = 126777, + [SMALL_STATE(1542)] = 126825, + [SMALL_STATE(1543)] = 126873, + [SMALL_STATE(1544)] = 126921, + [SMALL_STATE(1545)] = 126969, + [SMALL_STATE(1546)] = 127017, + [SMALL_STATE(1547)] = 127065, + [SMALL_STATE(1548)] = 127113, + [SMALL_STATE(1549)] = 127161, + [SMALL_STATE(1550)] = 127209, + [SMALL_STATE(1551)] = 127257, + [SMALL_STATE(1552)] = 127305, + [SMALL_STATE(1553)] = 127353, + [SMALL_STATE(1554)] = 127401, + [SMALL_STATE(1555)] = 127449, + [SMALL_STATE(1556)] = 127497, + [SMALL_STATE(1557)] = 127545, + [SMALL_STATE(1558)] = 127593, + [SMALL_STATE(1559)] = 127641, + [SMALL_STATE(1560)] = 127689, + [SMALL_STATE(1561)] = 127737, + [SMALL_STATE(1562)] = 127785, + [SMALL_STATE(1563)] = 127833, + [SMALL_STATE(1564)] = 127881, + [SMALL_STATE(1565)] = 127929, + [SMALL_STATE(1566)] = 127977, + [SMALL_STATE(1567)] = 128025, + [SMALL_STATE(1568)] = 128073, + [SMALL_STATE(1569)] = 128121, + [SMALL_STATE(1570)] = 128171, + [SMALL_STATE(1571)] = 128221, + [SMALL_STATE(1572)] = 128269, + [SMALL_STATE(1573)] = 128317, + [SMALL_STATE(1574)] = 128365, + [SMALL_STATE(1575)] = 128413, + [SMALL_STATE(1576)] = 128461, + [SMALL_STATE(1577)] = 128509, + [SMALL_STATE(1578)] = 128557, + [SMALL_STATE(1579)] = 128605, + [SMALL_STATE(1580)] = 128653, + [SMALL_STATE(1581)] = 128701, + [SMALL_STATE(1582)] = 128749, + [SMALL_STATE(1583)] = 128797, + [SMALL_STATE(1584)] = 128845, + [SMALL_STATE(1585)] = 128893, + [SMALL_STATE(1586)] = 128941, + [SMALL_STATE(1587)] = 128989, + [SMALL_STATE(1588)] = 129037, + [SMALL_STATE(1589)] = 129085, + [SMALL_STATE(1590)] = 129133, + [SMALL_STATE(1591)] = 129181, + [SMALL_STATE(1592)] = 129229, + [SMALL_STATE(1593)] = 129277, + [SMALL_STATE(1594)] = 129325, + [SMALL_STATE(1595)] = 129373, + [SMALL_STATE(1596)] = 129423, + [SMALL_STATE(1597)] = 129471, + [SMALL_STATE(1598)] = 129519, + [SMALL_STATE(1599)] = 129567, + [SMALL_STATE(1600)] = 129615, + [SMALL_STATE(1601)] = 129663, + [SMALL_STATE(1602)] = 129711, + [SMALL_STATE(1603)] = 129759, + [SMALL_STATE(1604)] = 129807, + [SMALL_STATE(1605)] = 129855, + [SMALL_STATE(1606)] = 129903, + [SMALL_STATE(1607)] = 129951, + [SMALL_STATE(1608)] = 129999, + [SMALL_STATE(1609)] = 130047, + [SMALL_STATE(1610)] = 130095, + [SMALL_STATE(1611)] = 130143, + [SMALL_STATE(1612)] = 130191, + [SMALL_STATE(1613)] = 130239, + [SMALL_STATE(1614)] = 130287, + [SMALL_STATE(1615)] = 130335, + [SMALL_STATE(1616)] = 130383, + [SMALL_STATE(1617)] = 130431, + [SMALL_STATE(1618)] = 130479, + [SMALL_STATE(1619)] = 130527, + [SMALL_STATE(1620)] = 130575, + [SMALL_STATE(1621)] = 130623, + [SMALL_STATE(1622)] = 130671, + [SMALL_STATE(1623)] = 130719, + [SMALL_STATE(1624)] = 130769, + [SMALL_STATE(1625)] = 130819, + [SMALL_STATE(1626)] = 130867, + [SMALL_STATE(1627)] = 130915, + [SMALL_STATE(1628)] = 130963, + [SMALL_STATE(1629)] = 131011, + [SMALL_STATE(1630)] = 131059, + [SMALL_STATE(1631)] = 131107, + [SMALL_STATE(1632)] = 131155, + [SMALL_STATE(1633)] = 131203, + [SMALL_STATE(1634)] = 131251, + [SMALL_STATE(1635)] = 131299, + [SMALL_STATE(1636)] = 131347, + [SMALL_STATE(1637)] = 131395, + [SMALL_STATE(1638)] = 131443, + [SMALL_STATE(1639)] = 131491, + [SMALL_STATE(1640)] = 131539, + [SMALL_STATE(1641)] = 131591, + [SMALL_STATE(1642)] = 131639, + [SMALL_STATE(1643)] = 131687, + [SMALL_STATE(1644)] = 131735, + [SMALL_STATE(1645)] = 131783, + [SMALL_STATE(1646)] = 131831, + [SMALL_STATE(1647)] = 131881, + [SMALL_STATE(1648)] = 131949, + [SMALL_STATE(1649)] = 131999, + [SMALL_STATE(1650)] = 132049, + [SMALL_STATE(1651)] = 132097, + [SMALL_STATE(1652)] = 132147, + [SMALL_STATE(1653)] = 132197, + [SMALL_STATE(1654)] = 132245, + [SMALL_STATE(1655)] = 132293, + [SMALL_STATE(1656)] = 132341, + [SMALL_STATE(1657)] = 132389, + [SMALL_STATE(1658)] = 132437, + [SMALL_STATE(1659)] = 132485, + [SMALL_STATE(1660)] = 132533, + [SMALL_STATE(1661)] = 132581, + [SMALL_STATE(1662)] = 132629, + [SMALL_STATE(1663)] = 132677, + [SMALL_STATE(1664)] = 132725, + [SMALL_STATE(1665)] = 132773, + [SMALL_STATE(1666)] = 132821, + [SMALL_STATE(1667)] = 132871, + [SMALL_STATE(1668)] = 132921, + [SMALL_STATE(1669)] = 132971, + [SMALL_STATE(1670)] = 133025, + [SMALL_STATE(1671)] = 133075, + [SMALL_STATE(1672)] = 133125, + [SMALL_STATE(1673)] = 133173, + [SMALL_STATE(1674)] = 133231, + [SMALL_STATE(1675)] = 133279, + [SMALL_STATE(1676)] = 133327, + [SMALL_STATE(1677)] = 133375, + [SMALL_STATE(1678)] = 133423, + [SMALL_STATE(1679)] = 133473, + [SMALL_STATE(1680)] = 133521, + [SMALL_STATE(1681)] = 133591, + [SMALL_STATE(1682)] = 133639, + [SMALL_STATE(1683)] = 133693, + [SMALL_STATE(1684)] = 133741, + [SMALL_STATE(1685)] = 133791, + [SMALL_STATE(1686)] = 133841, + [SMALL_STATE(1687)] = 133891, + [SMALL_STATE(1688)] = 133941, + [SMALL_STATE(1689)] = 133991, + [SMALL_STATE(1690)] = 134041, + [SMALL_STATE(1691)] = 134091, + [SMALL_STATE(1692)] = 134141, + [SMALL_STATE(1693)] = 134191, + [SMALL_STATE(1694)] = 134241, + [SMALL_STATE(1695)] = 134291, + [SMALL_STATE(1696)] = 134341, + [SMALL_STATE(1697)] = 134391, + [SMALL_STATE(1698)] = 134439, + [SMALL_STATE(1699)] = 134489, + [SMALL_STATE(1700)] = 134537, + [SMALL_STATE(1701)] = 134585, + [SMALL_STATE(1702)] = 134635, + [SMALL_STATE(1703)] = 134685, + [SMALL_STATE(1704)] = 134735, + [SMALL_STATE(1705)] = 134785, + [SMALL_STATE(1706)] = 134835, + [SMALL_STATE(1707)] = 134885, + [SMALL_STATE(1708)] = 134935, + [SMALL_STATE(1709)] = 134985, + [SMALL_STATE(1710)] = 135035, + [SMALL_STATE(1711)] = 135085, + [SMALL_STATE(1712)] = 135135, + [SMALL_STATE(1713)] = 135185, + [SMALL_STATE(1714)] = 135235, + [SMALL_STATE(1715)] = 135285, + [SMALL_STATE(1716)] = 135335, + [SMALL_STATE(1717)] = 135383, + [SMALL_STATE(1718)] = 135431, + [SMALL_STATE(1719)] = 135481, + [SMALL_STATE(1720)] = 135531, + [SMALL_STATE(1721)] = 135581, + [SMALL_STATE(1722)] = 135631, + [SMALL_STATE(1723)] = 135681, + [SMALL_STATE(1724)] = 135731, + [SMALL_STATE(1725)] = 135781, + [SMALL_STATE(1726)] = 135831, + [SMALL_STATE(1727)] = 135879, + [SMALL_STATE(1728)] = 135929, + [SMALL_STATE(1729)] = 135979, + [SMALL_STATE(1730)] = 136029, + [SMALL_STATE(1731)] = 136079, + [SMALL_STATE(1732)] = 136129, + [SMALL_STATE(1733)] = 136179, + [SMALL_STATE(1734)] = 136229, + [SMALL_STATE(1735)] = 136279, + [SMALL_STATE(1736)] = 136329, + [SMALL_STATE(1737)] = 136379, + [SMALL_STATE(1738)] = 136429, + [SMALL_STATE(1739)] = 136479, + [SMALL_STATE(1740)] = 136529, + [SMALL_STATE(1741)] = 136577, + [SMALL_STATE(1742)] = 136627, + [SMALL_STATE(1743)] = 136677, + [SMALL_STATE(1744)] = 136727, + [SMALL_STATE(1745)] = 136775, + [SMALL_STATE(1746)] = 136823, + [SMALL_STATE(1747)] = 136873, + [SMALL_STATE(1748)] = 136923, + [SMALL_STATE(1749)] = 136973, + [SMALL_STATE(1750)] = 137023, + [SMALL_STATE(1751)] = 137073, + [SMALL_STATE(1752)] = 137123, + [SMALL_STATE(1753)] = 137173, + [SMALL_STATE(1754)] = 137223, + [SMALL_STATE(1755)] = 137273, + [SMALL_STATE(1756)] = 137323, + [SMALL_STATE(1757)] = 137373, + [SMALL_STATE(1758)] = 137423, + [SMALL_STATE(1759)] = 137471, + [SMALL_STATE(1760)] = 137521, + [SMALL_STATE(1761)] = 137571, + [SMALL_STATE(1762)] = 137621, + [SMALL_STATE(1763)] = 137671, + [SMALL_STATE(1764)] = 137719, + [SMALL_STATE(1765)] = 137767, + [SMALL_STATE(1766)] = 137817, + [SMALL_STATE(1767)] = 137867, + [SMALL_STATE(1768)] = 137917, + [SMALL_STATE(1769)] = 137967, + [SMALL_STATE(1770)] = 138017, + [SMALL_STATE(1771)] = 138067, + [SMALL_STATE(1772)] = 138117, + [SMALL_STATE(1773)] = 138167, + [SMALL_STATE(1774)] = 138217, + [SMALL_STATE(1775)] = 138267, + [SMALL_STATE(1776)] = 138317, + [SMALL_STATE(1777)] = 138367, + [SMALL_STATE(1778)] = 138417, + [SMALL_STATE(1779)] = 138465, + [SMALL_STATE(1780)] = 138515, + [SMALL_STATE(1781)] = 138565, + [SMALL_STATE(1782)] = 138615, + [SMALL_STATE(1783)] = 138665, + [SMALL_STATE(1784)] = 138715, + [SMALL_STATE(1785)] = 138765, + [SMALL_STATE(1786)] = 138815, + [SMALL_STATE(1787)] = 138865, + [SMALL_STATE(1788)] = 138915, + [SMALL_STATE(1789)] = 138963, + [SMALL_STATE(1790)] = 139011, + [SMALL_STATE(1791)] = 139059, + [SMALL_STATE(1792)] = 139125, + [SMALL_STATE(1793)] = 139175, + [SMALL_STATE(1794)] = 139225, + [SMALL_STATE(1795)] = 139275, + [SMALL_STATE(1796)] = 139325, + [SMALL_STATE(1797)] = 139375, + [SMALL_STATE(1798)] = 139425, + [SMALL_STATE(1799)] = 139475, + [SMALL_STATE(1800)] = 139525, + [SMALL_STATE(1801)] = 139575, + [SMALL_STATE(1802)] = 139625, + [SMALL_STATE(1803)] = 139675, + [SMALL_STATE(1804)] = 139723, + [SMALL_STATE(1805)] = 139773, + [SMALL_STATE(1806)] = 139823, + [SMALL_STATE(1807)] = 139891, + [SMALL_STATE(1808)] = 139941, + [SMALL_STATE(1809)] = 139991, + [SMALL_STATE(1810)] = 140039, + [SMALL_STATE(1811)] = 140087, + [SMALL_STATE(1812)] = 140135, + [SMALL_STATE(1813)] = 140185, + [SMALL_STATE(1814)] = 140235, + [SMALL_STATE(1815)] = 140285, + [SMALL_STATE(1816)] = 140335, + [SMALL_STATE(1817)] = 140385, + [SMALL_STATE(1818)] = 140435, + [SMALL_STATE(1819)] = 140485, + [SMALL_STATE(1820)] = 140535, + [SMALL_STATE(1821)] = 140603, + [SMALL_STATE(1822)] = 140653, + [SMALL_STATE(1823)] = 140703, + [SMALL_STATE(1824)] = 140753, + [SMALL_STATE(1825)] = 140803, + [SMALL_STATE(1826)] = 140853, + [SMALL_STATE(1827)] = 140903, + [SMALL_STATE(1828)] = 140953, + [SMALL_STATE(1829)] = 141003, + [SMALL_STATE(1830)] = 141053, + [SMALL_STATE(1831)] = 141103, + [SMALL_STATE(1832)] = 141153, + [SMALL_STATE(1833)] = 141203, + [SMALL_STATE(1834)] = 141253, + [SMALL_STATE(1835)] = 141303, + [SMALL_STATE(1836)] = 141371, + [SMALL_STATE(1837)] = 141439, + [SMALL_STATE(1838)] = 141507, + [SMALL_STATE(1839)] = 141557, + [SMALL_STATE(1840)] = 141605, + [SMALL_STATE(1841)] = 141653, + [SMALL_STATE(1842)] = 141703, + [SMALL_STATE(1843)] = 141753, + [SMALL_STATE(1844)] = 141803, + [SMALL_STATE(1845)] = 141853, + [SMALL_STATE(1846)] = 141921, + [SMALL_STATE(1847)] = 141971, + [SMALL_STATE(1848)] = 142039, + [SMALL_STATE(1849)] = 142089, + [SMALL_STATE(1850)] = 142139, + [SMALL_STATE(1851)] = 142189, + [SMALL_STATE(1852)] = 142239, + [SMALL_STATE(1853)] = 142289, + [SMALL_STATE(1854)] = 142339, + [SMALL_STATE(1855)] = 142389, + [SMALL_STATE(1856)] = 142439, + [SMALL_STATE(1857)] = 142489, + [SMALL_STATE(1858)] = 142539, + [SMALL_STATE(1859)] = 142589, + [SMALL_STATE(1860)] = 142639, + [SMALL_STATE(1861)] = 142689, + [SMALL_STATE(1862)] = 142751, + [SMALL_STATE(1863)] = 142801, + [SMALL_STATE(1864)] = 142851, + [SMALL_STATE(1865)] = 142909, + [SMALL_STATE(1866)] = 142975, + [SMALL_STATE(1867)] = 143043, + [SMALL_STATE(1868)] = 143093, + [SMALL_STATE(1869)] = 143159, + [SMALL_STATE(1870)] = 143227, + [SMALL_STATE(1871)] = 143295, + [SMALL_STATE(1872)] = 143363, + [SMALL_STATE(1873)] = 143431, + [SMALL_STATE(1874)] = 143499, + [SMALL_STATE(1875)] = 143547, + [SMALL_STATE(1876)] = 143615, + [SMALL_STATE(1877)] = 143683, + [SMALL_STATE(1878)] = 143751, + [SMALL_STATE(1879)] = 143813, + [SMALL_STATE(1880)] = 143871, + [SMALL_STATE(1881)] = 143937, + [SMALL_STATE(1882)] = 143987, + [SMALL_STATE(1883)] = 144037, + [SMALL_STATE(1884)] = 144087, + [SMALL_STATE(1885)] = 144137, + [SMALL_STATE(1886)] = 144187, + [SMALL_STATE(1887)] = 144235, + [SMALL_STATE(1888)] = 144283, + [SMALL_STATE(1889)] = 144351, + [SMALL_STATE(1890)] = 144399, + [SMALL_STATE(1891)] = 144447, + [SMALL_STATE(1892)] = 144495, + [SMALL_STATE(1893)] = 144543, + [SMALL_STATE(1894)] = 144591, + [SMALL_STATE(1895)] = 144639, + [SMALL_STATE(1896)] = 144687, + [SMALL_STATE(1897)] = 144735, + [SMALL_STATE(1898)] = 144783, + [SMALL_STATE(1899)] = 144831, + [SMALL_STATE(1900)] = 144879, + [SMALL_STATE(1901)] = 144929, + [SMALL_STATE(1902)] = 144977, + [SMALL_STATE(1903)] = 145027, + [SMALL_STATE(1904)] = 145083, + [SMALL_STATE(1905)] = 145133, + [SMALL_STATE(1906)] = 145181, + [SMALL_STATE(1907)] = 145244, + [SMALL_STATE(1908)] = 145293, + [SMALL_STATE(1909)] = 145340, + [SMALL_STATE(1910)] = 145387, + [SMALL_STATE(1911)] = 145434, + [SMALL_STATE(1912)] = 145481, + [SMALL_STATE(1913)] = 145528, + [SMALL_STATE(1914)] = 145575, + [SMALL_STATE(1915)] = 145622, + [SMALL_STATE(1916)] = 145669, + [SMALL_STATE(1917)] = 145716, + [SMALL_STATE(1918)] = 145763, + [SMALL_STATE(1919)] = 145810, + [SMALL_STATE(1920)] = 145857, + [SMALL_STATE(1921)] = 145904, + [SMALL_STATE(1922)] = 145951, + [SMALL_STATE(1923)] = 145998, + [SMALL_STATE(1924)] = 146045, + [SMALL_STATE(1925)] = 146094, + [SMALL_STATE(1926)] = 146143, + [SMALL_STATE(1927)] = 146192, + [SMALL_STATE(1928)] = 146241, + [SMALL_STATE(1929)] = 146288, + [SMALL_STATE(1930)] = 146335, + [SMALL_STATE(1931)] = 146382, + [SMALL_STATE(1932)] = 146429, + [SMALL_STATE(1933)] = 146476, + [SMALL_STATE(1934)] = 146523, + [SMALL_STATE(1935)] = 146572, + [SMALL_STATE(1936)] = 146621, + [SMALL_STATE(1937)] = 146706, + [SMALL_STATE(1938)] = 146753, + [SMALL_STATE(1939)] = 146802, + [SMALL_STATE(1940)] = 146851, + [SMALL_STATE(1941)] = 146898, + [SMALL_STATE(1942)] = 146945, + [SMALL_STATE(1943)] = 146992, + [SMALL_STATE(1944)] = 147039, + [SMALL_STATE(1945)] = 147086, + [SMALL_STATE(1946)] = 147133, + [SMALL_STATE(1947)] = 147180, + [SMALL_STATE(1948)] = 147227, + [SMALL_STATE(1949)] = 147276, + [SMALL_STATE(1950)] = 147325, + [SMALL_STATE(1951)] = 147374, + [SMALL_STATE(1952)] = 147421, + [SMALL_STATE(1953)] = 147468, + [SMALL_STATE(1954)] = 147515, + [SMALL_STATE(1955)] = 147562, + [SMALL_STATE(1956)] = 147609, + [SMALL_STATE(1957)] = 147656, + [SMALL_STATE(1958)] = 147703, + [SMALL_STATE(1959)] = 147750, + [SMALL_STATE(1960)] = 147799, + [SMALL_STATE(1961)] = 147848, + [SMALL_STATE(1962)] = 147895, + [SMALL_STATE(1963)] = 147944, + [SMALL_STATE(1964)] = 147995, + [SMALL_STATE(1965)] = 148062, + [SMALL_STATE(1966)] = 148111, + [SMALL_STATE(1967)] = 148174, + [SMALL_STATE(1968)] = 148237, + [SMALL_STATE(1969)] = 148300, + [SMALL_STATE(1970)] = 148363, + [SMALL_STATE(1971)] = 148426, + [SMALL_STATE(1972)] = 148489, + [SMALL_STATE(1973)] = 148538, + [SMALL_STATE(1974)] = 148587, + [SMALL_STATE(1975)] = 148634, + [SMALL_STATE(1976)] = 148683, + [SMALL_STATE(1977)] = 148730, + [SMALL_STATE(1978)] = 148777, + [SMALL_STATE(1979)] = 148824, + [SMALL_STATE(1980)] = 148871, + [SMALL_STATE(1981)] = 148918, + [SMALL_STATE(1982)] = 148965, + [SMALL_STATE(1983)] = 149012, + [SMALL_STATE(1984)] = 149059, + [SMALL_STATE(1985)] = 149106, + [SMALL_STATE(1986)] = 149153, + [SMALL_STATE(1987)] = 149200, + [SMALL_STATE(1988)] = 149247, + [SMALL_STATE(1989)] = 149294, + [SMALL_STATE(1990)] = 149341, + [SMALL_STATE(1991)] = 149388, + [SMALL_STATE(1992)] = 149473, + [SMALL_STATE(1993)] = 149522, + [SMALL_STATE(1994)] = 149571, + [SMALL_STATE(1995)] = 149620, + [SMALL_STATE(1996)] = 149667, + [SMALL_STATE(1997)] = 149716, + [SMALL_STATE(1998)] = 149765, + [SMALL_STATE(1999)] = 149814, + [SMALL_STATE(2000)] = 149861, + [SMALL_STATE(2001)] = 149908, + [SMALL_STATE(2002)] = 149957, + [SMALL_STATE(2003)] = 150006, + [SMALL_STATE(2004)] = 150053, + [SMALL_STATE(2005)] = 150100, + [SMALL_STATE(2006)] = 150147, + [SMALL_STATE(2007)] = 150202, + [SMALL_STATE(2008)] = 150251, + [SMALL_STATE(2009)] = 150300, + [SMALL_STATE(2010)] = 150349, + [SMALL_STATE(2011)] = 150402, + [SMALL_STATE(2012)] = 150455, + [SMALL_STATE(2013)] = 150518, + [SMALL_STATE(2014)] = 150581, + [SMALL_STATE(2015)] = 150640, + [SMALL_STATE(2016)] = 150697, + [SMALL_STATE(2017)] = 150760, + [SMALL_STATE(2018)] = 150807, + [SMALL_STATE(2019)] = 150854, + [SMALL_STATE(2020)] = 150903, + [SMALL_STATE(2021)] = 150950, + [SMALL_STATE(2022)] = 150997, + [SMALL_STATE(2023)] = 151044, + [SMALL_STATE(2024)] = 151091, + [SMALL_STATE(2025)] = 151138, + [SMALL_STATE(2026)] = 151185, + [SMALL_STATE(2027)] = 151232, + [SMALL_STATE(2028)] = 151281, + [SMALL_STATE(2029)] = 151328, + [SMALL_STATE(2030)] = 151395, + [SMALL_STATE(2031)] = 151444, + [SMALL_STATE(2032)] = 151511, + [SMALL_STATE(2033)] = 151558, + [SMALL_STATE(2034)] = 151607, + [SMALL_STATE(2035)] = 151654, + [SMALL_STATE(2036)] = 151701, + [SMALL_STATE(2037)] = 151750, + [SMALL_STATE(2038)] = 151797, + [SMALL_STATE(2039)] = 151844, + [SMALL_STATE(2040)] = 151891, + [SMALL_STATE(2041)] = 151938, + [SMALL_STATE(2042)] = 151985, + [SMALL_STATE(2043)] = 152032, + [SMALL_STATE(2044)] = 152079, + [SMALL_STATE(2045)] = 152126, + [SMALL_STATE(2046)] = 152173, + [SMALL_STATE(2047)] = 152220, + [SMALL_STATE(2048)] = 152269, + [SMALL_STATE(2049)] = 152318, + [SMALL_STATE(2050)] = 152385, + [SMALL_STATE(2051)] = 152434, + [SMALL_STATE(2052)] = 152483, + [SMALL_STATE(2053)] = 152532, + [SMALL_STATE(2054)] = 152579, + [SMALL_STATE(2055)] = 152626, + [SMALL_STATE(2056)] = 152673, + [SMALL_STATE(2057)] = 152722, + [SMALL_STATE(2058)] = 152771, + [SMALL_STATE(2059)] = 152834, + [SMALL_STATE(2060)] = 152881, + [SMALL_STATE(2061)] = 152928, + [SMALL_STATE(2062)] = 152977, + [SMALL_STATE(2063)] = 153044, + [SMALL_STATE(2064)] = 153093, + [SMALL_STATE(2065)] = 153140, + [SMALL_STATE(2066)] = 153187, + [SMALL_STATE(2067)] = 153236, + [SMALL_STATE(2068)] = 153303, + [SMALL_STATE(2069)] = 153352, + [SMALL_STATE(2070)] = 153401, + [SMALL_STATE(2071)] = 153448, + [SMALL_STATE(2072)] = 153495, + [SMALL_STATE(2073)] = 153542, + [SMALL_STATE(2074)] = 153589, + [SMALL_STATE(2075)] = 153638, + [SMALL_STATE(2076)] = 153685, + [SMALL_STATE(2077)] = 153732, + [SMALL_STATE(2078)] = 153779, + [SMALL_STATE(2079)] = 153826, + [SMALL_STATE(2080)] = 153873, + [SMALL_STATE(2081)] = 153920, + [SMALL_STATE(2082)] = 153967, + [SMALL_STATE(2083)] = 154014, + [SMALL_STATE(2084)] = 154061, + [SMALL_STATE(2085)] = 154108, + [SMALL_STATE(2086)] = 154155, + [SMALL_STATE(2087)] = 154202, + [SMALL_STATE(2088)] = 154249, + [SMALL_STATE(2089)] = 154296, + [SMALL_STATE(2090)] = 154343, + [SMALL_STATE(2091)] = 154390, + [SMALL_STATE(2092)] = 154437, + [SMALL_STATE(2093)] = 154486, + [SMALL_STATE(2094)] = 154539, + [SMALL_STATE(2095)] = 154588, + [SMALL_STATE(2096)] = 154635, + [SMALL_STATE(2097)] = 154682, + [SMALL_STATE(2098)] = 154745, + [SMALL_STATE(2099)] = 154808, + [SMALL_STATE(2100)] = 154855, + [SMALL_STATE(2101)] = 154912, + [SMALL_STATE(2102)] = 154971, + [SMALL_STATE(2103)] = 155034, + [SMALL_STATE(2104)] = 155081, + [SMALL_STATE(2105)] = 155128, + [SMALL_STATE(2106)] = 155191, + [SMALL_STATE(2107)] = 155238, + [SMALL_STATE(2108)] = 155285, + [SMALL_STATE(2109)] = 155332, + [SMALL_STATE(2110)] = 155381, + [SMALL_STATE(2111)] = 155430, + [SMALL_STATE(2112)] = 155479, + [SMALL_STATE(2113)] = 155528, + [SMALL_STATE(2114)] = 155577, + [SMALL_STATE(2115)] = 155624, + [SMALL_STATE(2116)] = 155687, + [SMALL_STATE(2117)] = 155734, + [SMALL_STATE(2118)] = 155781, + [SMALL_STATE(2119)] = 155828, + [SMALL_STATE(2120)] = 155891, + [SMALL_STATE(2121)] = 155938, + [SMALL_STATE(2122)] = 155985, + [SMALL_STATE(2123)] = 156032, + [SMALL_STATE(2124)] = 156079, + [SMALL_STATE(2125)] = 156142, + [SMALL_STATE(2126)] = 156189, + [SMALL_STATE(2127)] = 156236, + [SMALL_STATE(2128)] = 156283, + [SMALL_STATE(2129)] = 156330, + [SMALL_STATE(2130)] = 156377, + [SMALL_STATE(2131)] = 156424, + [SMALL_STATE(2132)] = 156471, + [SMALL_STATE(2133)] = 156534, + [SMALL_STATE(2134)] = 156597, + [SMALL_STATE(2135)] = 156660, + [SMALL_STATE(2136)] = 156723, + [SMALL_STATE(2137)] = 156770, + [SMALL_STATE(2138)] = 156817, + [SMALL_STATE(2139)] = 156870, + [SMALL_STATE(2140)] = 156919, + [SMALL_STATE(2141)] = 156966, + [SMALL_STATE(2142)] = 157015, + [SMALL_STATE(2143)] = 157064, + [SMALL_STATE(2144)] = 157113, + [SMALL_STATE(2145)] = 157198, + [SMALL_STATE(2146)] = 157247, + [SMALL_STATE(2147)] = 157296, + [SMALL_STATE(2148)] = 157345, + [SMALL_STATE(2149)] = 157392, + [SMALL_STATE(2150)] = 157439, + [SMALL_STATE(2151)] = 157486, + [SMALL_STATE(2152)] = 157535, + [SMALL_STATE(2153)] = 157584, + [SMALL_STATE(2154)] = 157631, + [SMALL_STATE(2155)] = 157678, + [SMALL_STATE(2156)] = 157725, + [SMALL_STATE(2157)] = 157772, + [SMALL_STATE(2158)] = 157819, + [SMALL_STATE(2159)] = 157866, + [SMALL_STATE(2160)] = 157915, + [SMALL_STATE(2161)] = 157962, + [SMALL_STATE(2162)] = 158009, + [SMALL_STATE(2163)] = 158058, + [SMALL_STATE(2164)] = 158107, + [SMALL_STATE(2165)] = 158154, + [SMALL_STATE(2166)] = 158201, + [SMALL_STATE(2167)] = 158250, + [SMALL_STATE(2168)] = 158299, + [SMALL_STATE(2169)] = 158348, + [SMALL_STATE(2170)] = 158397, + [SMALL_STATE(2171)] = 158446, + [SMALL_STATE(2172)] = 158495, + [SMALL_STATE(2173)] = 158544, + [SMALL_STATE(2174)] = 158593, + [SMALL_STATE(2175)] = 158642, + [SMALL_STATE(2176)] = 158689, + [SMALL_STATE(2177)] = 158738, + [SMALL_STATE(2178)] = 158785, + [SMALL_STATE(2179)] = 158832, + [SMALL_STATE(2180)] = 158879, + [SMALL_STATE(2181)] = 158926, + [SMALL_STATE(2182)] = 158973, + [SMALL_STATE(2183)] = 159020, + [SMALL_STATE(2184)] = 159067, + [SMALL_STATE(2185)] = 159116, + [SMALL_STATE(2186)] = 159165, + [SMALL_STATE(2187)] = 159214, + [SMALL_STATE(2188)] = 159279, + [SMALL_STATE(2189)] = 159328, + [SMALL_STATE(2190)] = 159377, + [SMALL_STATE(2191)] = 159434, + [SMALL_STATE(2192)] = 159495, + [SMALL_STATE(2193)] = 159562, + [SMALL_STATE(2194)] = 159629, + [SMALL_STATE(2195)] = 159678, + [SMALL_STATE(2196)] = 159729, + [SMALL_STATE(2197)] = 159778, + [SMALL_STATE(2198)] = 159827, + [SMALL_STATE(2199)] = 159874, + [SMALL_STATE(2200)] = 159921, + [SMALL_STATE(2201)] = 159970, + [SMALL_STATE(2202)] = 160025, + [SMALL_STATE(2203)] = 160074, + [SMALL_STATE(2204)] = 160123, + [SMALL_STATE(2205)] = 160170, + [SMALL_STATE(2206)] = 160219, + [SMALL_STATE(2207)] = 160266, + [SMALL_STATE(2208)] = 160313, + [SMALL_STATE(2209)] = 160360, + [SMALL_STATE(2210)] = 160407, + [SMALL_STATE(2211)] = 160454, + [SMALL_STATE(2212)] = 160501, + [SMALL_STATE(2213)] = 160550, + [SMALL_STATE(2214)] = 160599, + [SMALL_STATE(2215)] = 160648, + [SMALL_STATE(2216)] = 160695, + [SMALL_STATE(2217)] = 160746, + [SMALL_STATE(2218)] = 160795, + [SMALL_STATE(2219)] = 160842, + [SMALL_STATE(2220)] = 160889, + [SMALL_STATE(2221)] = 160938, + [SMALL_STATE(2222)] = 160991, + [SMALL_STATE(2223)] = 161040, + [SMALL_STATE(2224)] = 161093, + [SMALL_STATE(2225)] = 161140, + [SMALL_STATE(2226)] = 161189, + [SMALL_STATE(2227)] = 161238, + [SMALL_STATE(2228)] = 161285, + [SMALL_STATE(2229)] = 161332, + [SMALL_STATE(2230)] = 161381, + [SMALL_STATE(2231)] = 161430, + [SMALL_STATE(2232)] = 161479, + [SMALL_STATE(2233)] = 161528, + [SMALL_STATE(2234)] = 161577, + [SMALL_STATE(2235)] = 161626, + [SMALL_STATE(2236)] = 161675, + [SMALL_STATE(2237)] = 161742, + [SMALL_STATE(2238)] = 161791, + [SMALL_STATE(2239)] = 161840, + [SMALL_STATE(2240)] = 161889, + [SMALL_STATE(2241)] = 161938, + [SMALL_STATE(2242)] = 162005, + [SMALL_STATE(2243)] = 162072, + [SMALL_STATE(2244)] = 162139, + [SMALL_STATE(2245)] = 162188, + [SMALL_STATE(2246)] = 162237, + [SMALL_STATE(2247)] = 162286, + [SMALL_STATE(2248)] = 162353, + [SMALL_STATE(2249)] = 162418, + [SMALL_STATE(2250)] = 162467, + [SMALL_STATE(2251)] = 162516, + [SMALL_STATE(2252)] = 162563, + [SMALL_STATE(2253)] = 162612, + [SMALL_STATE(2254)] = 162661, + [SMALL_STATE(2255)] = 162710, + [SMALL_STATE(2256)] = 162757, + [SMALL_STATE(2257)] = 162806, + [SMALL_STATE(2258)] = 162855, + [SMALL_STATE(2259)] = 162904, + [SMALL_STATE(2260)] = 162953, + [SMALL_STATE(2261)] = 163002, + [SMALL_STATE(2262)] = 163065, + [SMALL_STATE(2263)] = 163128, + [SMALL_STATE(2264)] = 163191, + [SMALL_STATE(2265)] = 163254, + [SMALL_STATE(2266)] = 163317, + [SMALL_STATE(2267)] = 163380, + [SMALL_STATE(2268)] = 163429, + [SMALL_STATE(2269)] = 163478, + [SMALL_STATE(2270)] = 163527, + [SMALL_STATE(2271)] = 163576, + [SMALL_STATE(2272)] = 163625, + [SMALL_STATE(2273)] = 163674, + [SMALL_STATE(2274)] = 163721, + [SMALL_STATE(2275)] = 163768, + [SMALL_STATE(2276)] = 163815, + [SMALL_STATE(2277)] = 163864, + [SMALL_STATE(2278)] = 163913, + [SMALL_STATE(2279)] = 163962, + [SMALL_STATE(2280)] = 164011, + [SMALL_STATE(2281)] = 164060, + [SMALL_STATE(2282)] = 164109, + [SMALL_STATE(2283)] = 164158, + [SMALL_STATE(2284)] = 164207, + [SMALL_STATE(2285)] = 164254, + [SMALL_STATE(2286)] = 164301, + [SMALL_STATE(2287)] = 164356, + [SMALL_STATE(2288)] = 164405, + [SMALL_STATE(2289)] = 164454, + [SMALL_STATE(2290)] = 164503, + [SMALL_STATE(2291)] = 164550, + [SMALL_STATE(2292)] = 164603, + [SMALL_STATE(2293)] = 164650, + [SMALL_STATE(2294)] = 164699, + [SMALL_STATE(2295)] = 164748, + [SMALL_STATE(2296)] = 164797, + [SMALL_STATE(2297)] = 164846, + [SMALL_STATE(2298)] = 164895, + [SMALL_STATE(2299)] = 164944, + [SMALL_STATE(2300)] = 164993, + [SMALL_STATE(2301)] = 165042, + [SMALL_STATE(2302)] = 165091, + [SMALL_STATE(2303)] = 165140, + [SMALL_STATE(2304)] = 165189, + [SMALL_STATE(2305)] = 165238, + [SMALL_STATE(2306)] = 165287, + [SMALL_STATE(2307)] = 165350, + [SMALL_STATE(2308)] = 165413, + [SMALL_STATE(2309)] = 165472, + [SMALL_STATE(2310)] = 165529, + [SMALL_STATE(2311)] = 165592, + [SMALL_STATE(2312)] = 165641, + [SMALL_STATE(2313)] = 165690, + [SMALL_STATE(2314)] = 165739, + [SMALL_STATE(2315)] = 165788, + [SMALL_STATE(2316)] = 165837, + [SMALL_STATE(2317)] = 165886, + [SMALL_STATE(2318)] = 165935, + [SMALL_STATE(2319)] = 165984, + [SMALL_STATE(2320)] = 166033, + [SMALL_STATE(2321)] = 166082, + [SMALL_STATE(2322)] = 166131, + [SMALL_STATE(2323)] = 166180, + [SMALL_STATE(2324)] = 166265, + [SMALL_STATE(2325)] = 166314, + [SMALL_STATE(2326)] = 166363, + [SMALL_STATE(2327)] = 166412, + [SMALL_STATE(2328)] = 166461, + [SMALL_STATE(2329)] = 166510, + [SMALL_STATE(2330)] = 166559, + [SMALL_STATE(2331)] = 166608, + [SMALL_STATE(2332)] = 166657, + [SMALL_STATE(2333)] = 166706, + [SMALL_STATE(2334)] = 166755, + [SMALL_STATE(2335)] = 166804, + [SMALL_STATE(2336)] = 166853, + [SMALL_STATE(2337)] = 166938, + [SMALL_STATE(2338)] = 166987, + [SMALL_STATE(2339)] = 167036, + [SMALL_STATE(2340)] = 167085, + [SMALL_STATE(2341)] = 167134, + [SMALL_STATE(2342)] = 167183, + [SMALL_STATE(2343)] = 167232, + [SMALL_STATE(2344)] = 167281, + [SMALL_STATE(2345)] = 167330, + [SMALL_STATE(2346)] = 167379, + [SMALL_STATE(2347)] = 167428, + [SMALL_STATE(2348)] = 167500, + [SMALL_STATE(2349)] = 167560, + [SMALL_STATE(2350)] = 167606, + [SMALL_STATE(2351)] = 167672, + [SMALL_STATE(2352)] = 167736, + [SMALL_STATE(2353)] = 167808, + [SMALL_STATE(2354)] = 167864, + [SMALL_STATE(2355)] = 167924, + [SMALL_STATE(2356)] = 167988, + [SMALL_STATE(2357)] = 168054, + [SMALL_STATE(2358)] = 168120, + [SMALL_STATE(2359)] = 168186, + [SMALL_STATE(2360)] = 168252, + [SMALL_STATE(2361)] = 168318, + [SMALL_STATE(2362)] = 168390, + [SMALL_STATE(2363)] = 168456, + [SMALL_STATE(2364)] = 168522, + [SMALL_STATE(2365)] = 168588, + [SMALL_STATE(2366)] = 168648, + [SMALL_STATE(2367)] = 168704, + [SMALL_STATE(2368)] = 168768, + [SMALL_STATE(2369)] = 168834, + [SMALL_STATE(2370)] = 168900, + [SMALL_STATE(2371)] = 168966, + [SMALL_STATE(2372)] = 169032, + [SMALL_STATE(2373)] = 169098, + [SMALL_STATE(2374)] = 169164, + [SMALL_STATE(2375)] = 169230, + [SMALL_STATE(2376)] = 169294, + [SMALL_STATE(2377)] = 169340, + [SMALL_STATE(2378)] = 169386, + [SMALL_STATE(2379)] = 169438, + [SMALL_STATE(2380)] = 169492, + [SMALL_STATE(2381)] = 169542, + [SMALL_STATE(2382)] = 169594, + [SMALL_STATE(2383)] = 169666, + [SMALL_STATE(2384)] = 169718, + [SMALL_STATE(2385)] = 169770, + [SMALL_STATE(2386)] = 169820, + [SMALL_STATE(2387)] = 169874, + [SMALL_STATE(2388)] = 169920, + [SMALL_STATE(2389)] = 169972, + [SMALL_STATE(2390)] = 170020, + [SMALL_STATE(2391)] = 170072, + [SMALL_STATE(2392)] = 170124, + [SMALL_STATE(2393)] = 170174, + [SMALL_STATE(2394)] = 170236, + [SMALL_STATE(2395)] = 170298, + [SMALL_STATE(2396)] = 170364, + [SMALL_STATE(2397)] = 170420, + [SMALL_STATE(2398)] = 170478, + [SMALL_STATE(2399)] = 170540, + [SMALL_STATE(2400)] = 170602, + [SMALL_STATE(2401)] = 170656, + [SMALL_STATE(2402)] = 170722, + [SMALL_STATE(2403)] = 170784, + [SMALL_STATE(2404)] = 170846, + [SMALL_STATE(2405)] = 170908, + [SMALL_STATE(2406)] = 170956, + [SMALL_STATE(2407)] = 171018, + [SMALL_STATE(2408)] = 171070, + [SMALL_STATE(2409)] = 171132, + [SMALL_STATE(2410)] = 171194, + [SMALL_STATE(2411)] = 171256, + [SMALL_STATE(2412)] = 171316, + [SMALL_STATE(2413)] = 171376, + [SMALL_STATE(2414)] = 171436, + [SMALL_STATE(2415)] = 171496, + [SMALL_STATE(2416)] = 171556, + [SMALL_STATE(2417)] = 171616, + [SMALL_STATE(2418)] = 171678, + [SMALL_STATE(2419)] = 171738, + [SMALL_STATE(2420)] = 171798, + [SMALL_STATE(2421)] = 171854, + [SMALL_STATE(2422)] = 171908, + [SMALL_STATE(2423)] = 171980, + [SMALL_STATE(2424)] = 172040, + [SMALL_STATE(2425)] = 172100, + [SMALL_STATE(2426)] = 172162, + [SMALL_STATE(2427)] = 172214, + [SMALL_STATE(2428)] = 172260, + [SMALL_STATE(2429)] = 172308, + [SMALL_STATE(2430)] = 172370, + [SMALL_STATE(2431)] = 172426, + [SMALL_STATE(2432)] = 172484, + [SMALL_STATE(2433)] = 172546, + [SMALL_STATE(2434)] = 172608, + [SMALL_STATE(2435)] = 172656, + [SMALL_STATE(2436)] = 172718, + [SMALL_STATE(2437)] = 172772, + [SMALL_STATE(2438)] = 172834, + [SMALL_STATE(2439)] = 172896, + [SMALL_STATE(2440)] = 172958, + [SMALL_STATE(2441)] = 173020, + [SMALL_STATE(2442)] = 173082, + [SMALL_STATE(2443)] = 173168, + [SMALL_STATE(2444)] = 173218, + [SMALL_STATE(2445)] = 173273, + [SMALL_STATE(2446)] = 173324, + [SMALL_STATE(2447)] = 173373, + [SMALL_STATE(2448)] = 173426, + [SMALL_STATE(2449)] = 173473, + [SMALL_STATE(2450)] = 173526, + [SMALL_STATE(2451)] = 173577, + [SMALL_STATE(2452)] = 173628, + [SMALL_STATE(2453)] = 173721, + [SMALL_STATE(2454)] = 173790, + [SMALL_STATE(2455)] = 173883, + [SMALL_STATE(2456)] = 173976, + [SMALL_STATE(2457)] = 174029, + [SMALL_STATE(2458)] = 174080, + [SMALL_STATE(2459)] = 174133, + [SMALL_STATE(2460)] = 174184, + [SMALL_STATE(2461)] = 174237, + [SMALL_STATE(2462)] = 174284, + [SMALL_STATE(2463)] = 174335, + [SMALL_STATE(2464)] = 174388, + [SMALL_STATE(2465)] = 174437, + [SMALL_STATE(2466)] = 174502, + [SMALL_STATE(2467)] = 174549, + [SMALL_STATE(2468)] = 174600, + [SMALL_STATE(2469)] = 174647, + [SMALL_STATE(2470)] = 174698, + [SMALL_STATE(2471)] = 174745, + [SMALL_STATE(2472)] = 174792, + [SMALL_STATE(2473)] = 174843, + [SMALL_STATE(2474)] = 174936, + [SMALL_STATE(2475)] = 174987, + [SMALL_STATE(2476)] = 175034, + [SMALL_STATE(2477)] = 175085, + [SMALL_STATE(2478)] = 175178, + [SMALL_STATE(2479)] = 175229, + [SMALL_STATE(2480)] = 175278, + [SMALL_STATE(2481)] = 175325, + [SMALL_STATE(2482)] = 175376, + [SMALL_STATE(2483)] = 175423, + [SMALL_STATE(2484)] = 175516, + [SMALL_STATE(2485)] = 175567, + [SMALL_STATE(2486)] = 175614, + [SMALL_STATE(2487)] = 175707, + [SMALL_STATE(2488)] = 175754, + [SMALL_STATE(2489)] = 175805, + [SMALL_STATE(2490)] = 175854, + [SMALL_STATE(2491)] = 175903, + [SMALL_STATE(2492)] = 175954, + [SMALL_STATE(2493)] = 176001, + [SMALL_STATE(2494)] = 176048, + [SMALL_STATE(2495)] = 176097, + [SMALL_STATE(2496)] = 176148, + [SMALL_STATE(2497)] = 176211, + [SMALL_STATE(2498)] = 176270, + [SMALL_STATE(2499)] = 176335, + [SMALL_STATE(2500)] = 176428, + [SMALL_STATE(2501)] = 176479, + [SMALL_STATE(2502)] = 176530, + [SMALL_STATE(2503)] = 176595, + [SMALL_STATE(2504)] = 176660, + [SMALL_STATE(2505)] = 176725, + [SMALL_STATE(2506)] = 176790, + [SMALL_STATE(2507)] = 176841, + [SMALL_STATE(2508)] = 176888, + [SMALL_STATE(2509)] = 176953, + [SMALL_STATE(2510)] = 177002, + [SMALL_STATE(2511)] = 177049, + [SMALL_STATE(2512)] = 177114, + [SMALL_STATE(2513)] = 177179, + [SMALL_STATE(2514)] = 177230, + [SMALL_STATE(2515)] = 177279, + [SMALL_STATE(2516)] = 177328, + [SMALL_STATE(2517)] = 177391, + [SMALL_STATE(2518)] = 177460, + [SMALL_STATE(2519)] = 177505, + [SMALL_STATE(2520)] = 177598, + [SMALL_STATE(2521)] = 177649, + [SMALL_STATE(2522)] = 177700, + [SMALL_STATE(2523)] = 177747, + [SMALL_STATE(2524)] = 177796, + [SMALL_STATE(2525)] = 177847, + [SMALL_STATE(2526)] = 177898, + [SMALL_STATE(2527)] = 177991, + [SMALL_STATE(2528)] = 178040, + [SMALL_STATE(2529)] = 178087, + [SMALL_STATE(2530)] = 178136, + [SMALL_STATE(2531)] = 178184, + [SMALL_STATE(2532)] = 178234, + [SMALL_STATE(2533)] = 178282, + [SMALL_STATE(2534)] = 178328, + [SMALL_STATE(2535)] = 178372, + [SMALL_STATE(2536)] = 178418, + [SMALL_STATE(2537)] = 178482, + [SMALL_STATE(2538)] = 178544, + [SMALL_STATE(2539)] = 178598, + [SMALL_STATE(2540)] = 178656, + [SMALL_STATE(2541)] = 178720, + [SMALL_STATE(2542)] = 178784, + [SMALL_STATE(2543)] = 178828, + [SMALL_STATE(2544)] = 178892, + [SMALL_STATE(2545)] = 178942, + [SMALL_STATE(2546)] = 178994, + [SMALL_STATE(2547)] = 179058, + [SMALL_STATE(2548)] = 179108, + [SMALL_STATE(2549)] = 179170, + [SMALL_STATE(2550)] = 179216, + [SMALL_STATE(2551)] = 179262, + [SMALL_STATE(2552)] = 179314, + [SMALL_STATE(2553)] = 179360, + [SMALL_STATE(2554)] = 179424, + [SMALL_STATE(2555)] = 179488, + [SMALL_STATE(2556)] = 179552, + [SMALL_STATE(2557)] = 179616, + [SMALL_STATE(2558)] = 179662, + [SMALL_STATE(2559)] = 179710, + [SMALL_STATE(2560)] = 179774, + [SMALL_STATE(2561)] = 179822, + [SMALL_STATE(2562)] = 179872, + [SMALL_STATE(2563)] = 179936, + [SMALL_STATE(2564)] = 179984, + [SMALL_STATE(2565)] = 180046, + [SMALL_STATE(2566)] = 180092, + [SMALL_STATE(2567)] = 180140, + [SMALL_STATE(2568)] = 180190, + [SMALL_STATE(2569)] = 180254, + [SMALL_STATE(2570)] = 180302, + [SMALL_STATE(2571)] = 180366, + [SMALL_STATE(2572)] = 180412, + [SMALL_STATE(2573)] = 180462, + [SMALL_STATE(2574)] = 180526, + [SMALL_STATE(2575)] = 180576, + [SMALL_STATE(2576)] = 180620, + [SMALL_STATE(2577)] = 180666, + [SMALL_STATE(2578)] = 180730, + [SMALL_STATE(2579)] = 180778, + [SMALL_STATE(2580)] = 180826, + [SMALL_STATE(2581)] = 180872, + [SMALL_STATE(2582)] = 180918, + [SMALL_STATE(2583)] = 180966, + [SMALL_STATE(2584)] = 181016, + [SMALL_STATE(2585)] = 181062, + [SMALL_STATE(2586)] = 181124, + [SMALL_STATE(2587)] = 181172, + [SMALL_STATE(2588)] = 181222, + [SMALL_STATE(2589)] = 181286, + [SMALL_STATE(2590)] = 181336, + [SMALL_STATE(2591)] = 181388, + [SMALL_STATE(2592)] = 181436, + [SMALL_STATE(2593)] = 181480, + [SMALL_STATE(2594)] = 181526, + [SMALL_STATE(2595)] = 181576, + [SMALL_STATE(2596)] = 181626, + [SMALL_STATE(2597)] = 181674, + [SMALL_STATE(2598)] = 181724, + [SMALL_STATE(2599)] = 181776, + [SMALL_STATE(2600)] = 181840, + [SMALL_STATE(2601)] = 181890, + [SMALL_STATE(2602)] = 181938, + [SMALL_STATE(2603)] = 182002, + [SMALL_STATE(2604)] = 182052, + [SMALL_STATE(2605)] = 182114, + [SMALL_STATE(2606)] = 182158, + [SMALL_STATE(2607)] = 182206, + [SMALL_STATE(2608)] = 182250, + [SMALL_STATE(2609)] = 182314, + [SMALL_STATE(2610)] = 182368, + [SMALL_STATE(2611)] = 182426, + [SMALL_STATE(2612)] = 182490, + [SMALL_STATE(2613)] = 182552, + [SMALL_STATE(2614)] = 182616, + [SMALL_STATE(2615)] = 182670, + [SMALL_STATE(2616)] = 182720, + [SMALL_STATE(2617)] = 182764, + [SMALL_STATE(2618)] = 182810, + [SMALL_STATE(2619)] = 182860, + [SMALL_STATE(2620)] = 182924, + [SMALL_STATE(2621)] = 182982, + [SMALL_STATE(2622)] = 183030, + [SMALL_STATE(2623)] = 183094, + [SMALL_STATE(2624)] = 183142, + [SMALL_STATE(2625)] = 183190, + [SMALL_STATE(2626)] = 183240, + [SMALL_STATE(2627)] = 183286, + [SMALL_STATE(2628)] = 183332, + [SMALL_STATE(2629)] = 183396, + [SMALL_STATE(2630)] = 183460, + [SMALL_STATE(2631)] = 183506, + [SMALL_STATE(2632)] = 183552, + [SMALL_STATE(2633)] = 183598, + [SMALL_STATE(2634)] = 183644, + [SMALL_STATE(2635)] = 183694, + [SMALL_STATE(2636)] = 183758, + [SMALL_STATE(2637)] = 183804, + [SMALL_STATE(2638)] = 183854, + [SMALL_STATE(2639)] = 183900, + [SMALL_STATE(2640)] = 183944, + [SMALL_STATE(2641)] = 183990, + [SMALL_STATE(2642)] = 184054, + [SMALL_STATE(2643)] = 184098, + [SMALL_STATE(2644)] = 184144, + [SMALL_STATE(2645)] = 184190, + [SMALL_STATE(2646)] = 184251, + [SMALL_STATE(2647)] = 184314, + [SMALL_STATE(2648)] = 184377, + [SMALL_STATE(2649)] = 184440, + [SMALL_STATE(2650)] = 184503, + [SMALL_STATE(2651)] = 184566, + [SMALL_STATE(2652)] = 184629, + [SMALL_STATE(2653)] = 184692, + [SMALL_STATE(2654)] = 184755, + [SMALL_STATE(2655)] = 184800, + [SMALL_STATE(2656)] = 184845, + [SMALL_STATE(2657)] = 184888, + [SMALL_STATE(2658)] = 184933, + [SMALL_STATE(2659)] = 184980, + [SMALL_STATE(2660)] = 185043, + [SMALL_STATE(2661)] = 185106, + [SMALL_STATE(2662)] = 185169, + [SMALL_STATE(2663)] = 185232, + [SMALL_STATE(2664)] = 185295, + [SMALL_STATE(2665)] = 185358, + [SMALL_STATE(2666)] = 185421, + [SMALL_STATE(2667)] = 185470, + [SMALL_STATE(2668)] = 185533, + [SMALL_STATE(2669)] = 185596, + [SMALL_STATE(2670)] = 185641, + [SMALL_STATE(2671)] = 185704, + [SMALL_STATE(2672)] = 185767, + [SMALL_STATE(2673)] = 185812, + [SMALL_STATE(2674)] = 185857, + [SMALL_STATE(2675)] = 185902, + [SMALL_STATE(2676)] = 185947, + [SMALL_STATE(2677)] = 186010, + [SMALL_STATE(2678)] = 186055, + [SMALL_STATE(2679)] = 186118, + [SMALL_STATE(2680)] = 186163, + [SMALL_STATE(2681)] = 186226, + [SMALL_STATE(2682)] = 186271, + [SMALL_STATE(2683)] = 186314, + [SMALL_STATE(2684)] = 186377, + [SMALL_STATE(2685)] = 186440, + [SMALL_STATE(2686)] = 186485, + [SMALL_STATE(2687)] = 186572, + [SMALL_STATE(2688)] = 186635, + [SMALL_STATE(2689)] = 186722, + [SMALL_STATE(2690)] = 186785, + [SMALL_STATE(2691)] = 186848, + [SMALL_STATE(2692)] = 186911, + [SMALL_STATE(2693)] = 186974, + [SMALL_STATE(2694)] = 187017, + [SMALL_STATE(2695)] = 187062, + [SMALL_STATE(2696)] = 187107, + [SMALL_STATE(2697)] = 187152, + [SMALL_STATE(2698)] = 187197, + [SMALL_STATE(2699)] = 187240, + [SMALL_STATE(2700)] = 187325, + [SMALL_STATE(2701)] = 187388, + [SMALL_STATE(2702)] = 187451, + [SMALL_STATE(2703)] = 187514, + [SMALL_STATE(2704)] = 187577, + [SMALL_STATE(2705)] = 187626, + [SMALL_STATE(2706)] = 187689, + [SMALL_STATE(2707)] = 187738, + [SMALL_STATE(2708)] = 187801, + [SMALL_STATE(2709)] = 187846, + [SMALL_STATE(2710)] = 187891, + [SMALL_STATE(2711)] = 187978, + [SMALL_STATE(2712)] = 188041, + [SMALL_STATE(2713)] = 188128, + [SMALL_STATE(2714)] = 188191, + [SMALL_STATE(2715)] = 188254, + [SMALL_STATE(2716)] = 188341, + [SMALL_STATE(2717)] = 188386, + [SMALL_STATE(2718)] = 188433, + [SMALL_STATE(2719)] = 188482, + [SMALL_STATE(2720)] = 188545, + [SMALL_STATE(2721)] = 188608, + [SMALL_STATE(2722)] = 188653, + [SMALL_STATE(2723)] = 188696, + [SMALL_STATE(2724)] = 188759, + [SMALL_STATE(2725)] = 188820, + [SMALL_STATE(2726)] = 188883, + [SMALL_STATE(2727)] = 188946, + [SMALL_STATE(2728)] = 189009, + [SMALL_STATE(2729)] = 189072, + [SMALL_STATE(2730)] = 189125, + [SMALL_STATE(2731)] = 189188, + [SMALL_STATE(2732)] = 189245, + [SMALL_STATE(2733)] = 189290, + [SMALL_STATE(2734)] = 189335, + [SMALL_STATE(2735)] = 189380, + [SMALL_STATE(2736)] = 189425, + [SMALL_STATE(2737)] = 189488, + [SMALL_STATE(2738)] = 189533, + [SMALL_STATE(2739)] = 189596, + [SMALL_STATE(2740)] = 189641, + [SMALL_STATE(2741)] = 189704, + [SMALL_STATE(2742)] = 189767, + [SMALL_STATE(2743)] = 189812, + [SMALL_STATE(2744)] = 189857, + [SMALL_STATE(2745)] = 189920, + [SMALL_STATE(2746)] = 190007, + [SMALL_STATE(2747)] = 190070, + [SMALL_STATE(2748)] = 190133, + [SMALL_STATE(2749)] = 190178, + [SMALL_STATE(2750)] = 190223, + [SMALL_STATE(2751)] = 190286, + [SMALL_STATE(2752)] = 190349, + [SMALL_STATE(2753)] = 190412, + [SMALL_STATE(2754)] = 190475, + [SMALL_STATE(2755)] = 190520, + [SMALL_STATE(2756)] = 190583, + [SMALL_STATE(2757)] = 190646, + [SMALL_STATE(2758)] = 190709, + [SMALL_STATE(2759)] = 190754, + [SMALL_STATE(2760)] = 190817, + [SMALL_STATE(2761)] = 190880, + [SMALL_STATE(2762)] = 190967, + [SMALL_STATE(2763)] = 191028, + [SMALL_STATE(2764)] = 191091, + [SMALL_STATE(2765)] = 191154, + [SMALL_STATE(2766)] = 191199, + [SMALL_STATE(2767)] = 191244, + [SMALL_STATE(2768)] = 191307, + [SMALL_STATE(2769)] = 191370, + [SMALL_STATE(2770)] = 191415, + [SMALL_STATE(2771)] = 191478, + [SMALL_STATE(2772)] = 191523, + [SMALL_STATE(2773)] = 191586, + [SMALL_STATE(2774)] = 191631, + [SMALL_STATE(2775)] = 191694, + [SMALL_STATE(2776)] = 191757, + [SMALL_STATE(2777)] = 191820, + [SMALL_STATE(2778)] = 191869, + [SMALL_STATE(2779)] = 191932, + [SMALL_STATE(2780)] = 191977, + [SMALL_STATE(2781)] = 192040, + [SMALL_STATE(2782)] = 192127, + [SMALL_STATE(2783)] = 192190, + [SMALL_STATE(2784)] = 192235, + [SMALL_STATE(2785)] = 192280, + [SMALL_STATE(2786)] = 192325, + [SMALL_STATE(2787)] = 192388, + [SMALL_STATE(2788)] = 192451, + [SMALL_STATE(2789)] = 192496, + [SMALL_STATE(2790)] = 192559, + [SMALL_STATE(2791)] = 192610, + [SMALL_STATE(2792)] = 192673, + [SMALL_STATE(2793)] = 192718, + [SMALL_STATE(2794)] = 192763, + [SMALL_STATE(2795)] = 192808, + [SMALL_STATE(2796)] = 192871, + [SMALL_STATE(2797)] = 192916, + [SMALL_STATE(2798)] = 192979, + [SMALL_STATE(2799)] = 193042, + [SMALL_STATE(2800)] = 193103, + [SMALL_STATE(2801)] = 193166, + [SMALL_STATE(2802)] = 193219, + [SMALL_STATE(2803)] = 193276, + [SMALL_STATE(2804)] = 193339, + [SMALL_STATE(2805)] = 193402, + [SMALL_STATE(2806)] = 193465, + [SMALL_STATE(2807)] = 193528, + [SMALL_STATE(2808)] = 193591, + [SMALL_STATE(2809)] = 193654, + [SMALL_STATE(2810)] = 193699, + [SMALL_STATE(2811)] = 193746, + [SMALL_STATE(2812)] = 193791, + [SMALL_STATE(2813)] = 193842, + [SMALL_STATE(2814)] = 193905, + [SMALL_STATE(2815)] = 193968, + [SMALL_STATE(2816)] = 194013, + [SMALL_STATE(2817)] = 194076, + [SMALL_STATE(2818)] = 194121, + [SMALL_STATE(2819)] = 194166, + [SMALL_STATE(2820)] = 194229, + [SMALL_STATE(2821)] = 194274, + [SMALL_STATE(2822)] = 194337, + [SMALL_STATE(2823)] = 194382, + [SMALL_STATE(2824)] = 194443, + [SMALL_STATE(2825)] = 194506, + [SMALL_STATE(2826)] = 194569, + [SMALL_STATE(2827)] = 194614, + [SMALL_STATE(2828)] = 194677, + [SMALL_STATE(2829)] = 194740, + [SMALL_STATE(2830)] = 194791, + [SMALL_STATE(2831)] = 194854, + [SMALL_STATE(2832)] = 194901, + [SMALL_STATE(2833)] = 194962, + [SMALL_STATE(2834)] = 195015, + [SMALL_STATE(2835)] = 195078, + [SMALL_STATE(2836)] = 195141, + [SMALL_STATE(2837)] = 195186, + [SMALL_STATE(2838)] = 195249, + [SMALL_STATE(2839)] = 195312, + [SMALL_STATE(2840)] = 195375, + [SMALL_STATE(2841)] = 195438, + [SMALL_STATE(2842)] = 195483, + [SMALL_STATE(2843)] = 195546, + [SMALL_STATE(2844)] = 195609, + [SMALL_STATE(2845)] = 195672, + [SMALL_STATE(2846)] = 195735, + [SMALL_STATE(2847)] = 195798, + [SMALL_STATE(2848)] = 195855, + [SMALL_STATE(2849)] = 195918, + [SMALL_STATE(2850)] = 195981, + [SMALL_STATE(2851)] = 196026, + [SMALL_STATE(2852)] = 196071, + [SMALL_STATE(2853)] = 196158, + [SMALL_STATE(2854)] = 196221, + [SMALL_STATE(2855)] = 196266, + [SMALL_STATE(2856)] = 196311, + [SMALL_STATE(2857)] = 196374, + [SMALL_STATE(2858)] = 196419, + [SMALL_STATE(2859)] = 196482, + [SMALL_STATE(2860)] = 196545, + [SMALL_STATE(2861)] = 196608, + [SMALL_STATE(2862)] = 196653, + [SMALL_STATE(2863)] = 196740, + [SMALL_STATE(2864)] = 196785, + [SMALL_STATE(2865)] = 196830, + [SMALL_STATE(2866)] = 196893, + [SMALL_STATE(2867)] = 196956, + [SMALL_STATE(2868)] = 197001, + [SMALL_STATE(2869)] = 197046, + [SMALL_STATE(2870)] = 197091, + [SMALL_STATE(2871)] = 197154, + [SMALL_STATE(2872)] = 197217, + [SMALL_STATE(2873)] = 197280, + [SMALL_STATE(2874)] = 197325, + [SMALL_STATE(2875)] = 197388, + [SMALL_STATE(2876)] = 197433, + [SMALL_STATE(2877)] = 197496, + [SMALL_STATE(2878)] = 197581, + [SMALL_STATE(2879)] = 197644, + [SMALL_STATE(2880)] = 197707, + [SMALL_STATE(2881)] = 197770, + [SMALL_STATE(2882)] = 197833, + [SMALL_STATE(2883)] = 197878, + [SMALL_STATE(2884)] = 197923, + [SMALL_STATE(2885)] = 197968, + [SMALL_STATE(2886)] = 198031, + [SMALL_STATE(2887)] = 198076, + [SMALL_STATE(2888)] = 198139, + [SMALL_STATE(2889)] = 198202, + [SMALL_STATE(2890)] = 198265, + [SMALL_STATE(2891)] = 198328, + [SMALL_STATE(2892)] = 198391, + [SMALL_STATE(2893)] = 198454, + [SMALL_STATE(2894)] = 198499, + [SMALL_STATE(2895)] = 198562, + [SMALL_STATE(2896)] = 198625, + [SMALL_STATE(2897)] = 198670, + [SMALL_STATE(2898)] = 198715, + [SMALL_STATE(2899)] = 198760, + [SMALL_STATE(2900)] = 198805, + [SMALL_STATE(2901)] = 198850, + [SMALL_STATE(2902)] = 198913, + [SMALL_STATE(2903)] = 198958, + [SMALL_STATE(2904)] = 199003, + [SMALL_STATE(2905)] = 199048, + [SMALL_STATE(2906)] = 199093, + [SMALL_STATE(2907)] = 199144, + [SMALL_STATE(2908)] = 199207, + [SMALL_STATE(2909)] = 199252, + [SMALL_STATE(2910)] = 199297, + [SMALL_STATE(2911)] = 199360, + [SMALL_STATE(2912)] = 199404, + [SMALL_STATE(2913)] = 199446, + [SMALL_STATE(2914)] = 199490, + [SMALL_STATE(2915)] = 199534, + [SMALL_STATE(2916)] = 199578, + [SMALL_STATE(2917)] = 199648, + [SMALL_STATE(2918)] = 199692, + [SMALL_STATE(2919)] = 199736, + [SMALL_STATE(2920)] = 199780, + [SMALL_STATE(2921)] = 199824, + [SMALL_STATE(2922)] = 199894, + [SMALL_STATE(2923)] = 199938, + [SMALL_STATE(2924)] = 200008, + [SMALL_STATE(2925)] = 200050, + [SMALL_STATE(2926)] = 200092, + [SMALL_STATE(2927)] = 200162, + [SMALL_STATE(2928)] = 200210, + [SMALL_STATE(2929)] = 200254, + [SMALL_STATE(2930)] = 200296, + [SMALL_STATE(2931)] = 200340, + [SMALL_STATE(2932)] = 200410, + [SMALL_STATE(2933)] = 200454, + [SMALL_STATE(2934)] = 200524, + [SMALL_STATE(2935)] = 200568, + [SMALL_STATE(2936)] = 200612, + [SMALL_STATE(2937)] = 200654, + [SMALL_STATE(2938)] = 200698, + [SMALL_STATE(2939)] = 200742, + [SMALL_STATE(2940)] = 200784, + [SMALL_STATE(2941)] = 200828, + [SMALL_STATE(2942)] = 200870, + [SMALL_STATE(2943)] = 200914, + [SMALL_STATE(2944)] = 200958, + [SMALL_STATE(2945)] = 201000, + [SMALL_STATE(2946)] = 201042, + [SMALL_STATE(2947)] = 201086, + [SMALL_STATE(2948)] = 201130, + [SMALL_STATE(2949)] = 201200, + [SMALL_STATE(2950)] = 201244, + [SMALL_STATE(2951)] = 201312, + [SMALL_STATE(2952)] = 201364, + [SMALL_STATE(2953)] = 201408, + [SMALL_STATE(2954)] = 201452, + [SMALL_STATE(2955)] = 201496, + [SMALL_STATE(2956)] = 201566, + [SMALL_STATE(2957)] = 201610, + [SMALL_STATE(2958)] = 201652, + [SMALL_STATE(2959)] = 201696, + [SMALL_STATE(2960)] = 201738, + [SMALL_STATE(2961)] = 201782, + [SMALL_STATE(2962)] = 201826, + [SMALL_STATE(2963)] = 201870, + [SMALL_STATE(2964)] = 201914, + [SMALL_STATE(2965)] = 201984, + [SMALL_STATE(2966)] = 202054, + [SMALL_STATE(2967)] = 202098, + [SMALL_STATE(2968)] = 202142, + [SMALL_STATE(2969)] = 202186, + [SMALL_STATE(2970)] = 202230, + [SMALL_STATE(2971)] = 202274, + [SMALL_STATE(2972)] = 202316, + [SMALL_STATE(2973)] = 202360, + [SMALL_STATE(2974)] = 202402, + [SMALL_STATE(2975)] = 202452, + [SMALL_STATE(2976)] = 202522, + [SMALL_STATE(2977)] = 202592, + [SMALL_STATE(2978)] = 202662, + [SMALL_STATE(2979)] = 202706, + [SMALL_STATE(2980)] = 202776, + [SMALL_STATE(2981)] = 202828, + [SMALL_STATE(2982)] = 202872, + [SMALL_STATE(2983)] = 202914, + [SMALL_STATE(2984)] = 202966, + [SMALL_STATE(2985)] = 203010, + [SMALL_STATE(2986)] = 203052, + [SMALL_STATE(2987)] = 203094, + [SMALL_STATE(2988)] = 203138, + [SMALL_STATE(2989)] = 203180, + [SMALL_STATE(2990)] = 203222, + [SMALL_STATE(2991)] = 203264, + [SMALL_STATE(2992)] = 203308, + [SMALL_STATE(2993)] = 203350, + [SMALL_STATE(2994)] = 203392, + [SMALL_STATE(2995)] = 203462, + [SMALL_STATE(2996)] = 203504, + [SMALL_STATE(2997)] = 203574, + [SMALL_STATE(2998)] = 203618, + [SMALL_STATE(2999)] = 203670, + [SMALL_STATE(3000)] = 203714, + [SMALL_STATE(3001)] = 203762, + [SMALL_STATE(3002)] = 203804, + [SMALL_STATE(3003)] = 203846, + [SMALL_STATE(3004)] = 203888, + [SMALL_STATE(3005)] = 203932, + [SMALL_STATE(3006)] = 203976, + [SMALL_STATE(3007)] = 204020, + [SMALL_STATE(3008)] = 204070, + [SMALL_STATE(3009)] = 204140, + [SMALL_STATE(3010)] = 204184, + [SMALL_STATE(3011)] = 204232, + [SMALL_STATE(3012)] = 204282, + [SMALL_STATE(3013)] = 204334, + [SMALL_STATE(3014)] = 204404, + [SMALL_STATE(3015)] = 204446, + [SMALL_STATE(3016)] = 204516, + [SMALL_STATE(3017)] = 204560, + [SMALL_STATE(3018)] = 204604, + [SMALL_STATE(3019)] = 204674, + [SMALL_STATE(3020)] = 204753, + [SMALL_STATE(3021)] = 204834, + [SMALL_STATE(3022)] = 204913, + [SMALL_STATE(3023)] = 204994, + [SMALL_STATE(3024)] = 205075, + [SMALL_STATE(3025)] = 205118, + [SMALL_STATE(3026)] = 205161, + [SMALL_STATE(3027)] = 205242, + [SMALL_STATE(3028)] = 205323, + [SMALL_STATE(3029)] = 205392, + [SMALL_STATE(3030)] = 205433, + [SMALL_STATE(3031)] = 205514, + [SMALL_STATE(3032)] = 205555, + [SMALL_STATE(3033)] = 205596, + [SMALL_STATE(3034)] = 205677, + [SMALL_STATE(3035)] = 205724, + [SMALL_STATE(3036)] = 205771, + [SMALL_STATE(3037)] = 205818, + [SMALL_STATE(3038)] = 205861, + [SMALL_STATE(3039)] = 205942, + [SMALL_STATE(3040)] = 205983, + [SMALL_STATE(3041)] = 206064, + [SMALL_STATE(3042)] = 206105, + [SMALL_STATE(3043)] = 206186, + [SMALL_STATE(3044)] = 206264, + [SMALL_STATE(3045)] = 206312, + [SMALL_STATE(3046)] = 206390, + [SMALL_STATE(3047)] = 206468, + [SMALL_STATE(3048)] = 206510, + [SMALL_STATE(3049)] = 206588, + [SMALL_STATE(3050)] = 206666, + [SMALL_STATE(3051)] = 206744, + [SMALL_STATE(3052)] = 206822, + [SMALL_STATE(3053)] = 206900, + [SMALL_STATE(3054)] = 206978, + [SMALL_STATE(3055)] = 207056, + [SMALL_STATE(3056)] = 207134, + [SMALL_STATE(3057)] = 207212, + [SMALL_STATE(3058)] = 207290, + [SMALL_STATE(3059)] = 207368, + [SMALL_STATE(3060)] = 207412, + [SMALL_STATE(3061)] = 207490, + [SMALL_STATE(3062)] = 207568, + [SMALL_STATE(3063)] = 207646, + [SMALL_STATE(3064)] = 207694, + [SMALL_STATE(3065)] = 207772, + [SMALL_STATE(3066)] = 207850, + [SMALL_STATE(3067)] = 207894, + [SMALL_STATE(3068)] = 207942, + [SMALL_STATE(3069)] = 207986, + [SMALL_STATE(3070)] = 208064, + [SMALL_STATE(3071)] = 208105, + [SMALL_STATE(3072)] = 208146, + [SMALL_STATE(3073)] = 208187, + [SMALL_STATE(3074)] = 208228, + [SMALL_STATE(3075)] = 208287, + [SMALL_STATE(3076)] = 208328, + [SMALL_STATE(3077)] = 208369, + [SMALL_STATE(3078)] = 208442, + [SMALL_STATE(3079)] = 208515, + [SMALL_STATE(3080)] = 208587, + [SMALL_STATE(3081)] = 208663, + [SMALL_STATE(3082)] = 208735, + [SMALL_STATE(3083)] = 208811, + [SMALL_STATE(3084)] = 208883, + [SMALL_STATE(3085)] = 208955, + [SMALL_STATE(3086)] = 209027, + [SMALL_STATE(3087)] = 209099, + [SMALL_STATE(3088)] = 209171, + [SMALL_STATE(3089)] = 209243, + [SMALL_STATE(3090)] = 209315, + [SMALL_STATE(3091)] = 209387, + [SMALL_STATE(3092)] = 209463, + [SMALL_STATE(3093)] = 209539, + [SMALL_STATE(3094)] = 209611, + [SMALL_STATE(3095)] = 209683, + [SMALL_STATE(3096)] = 209755, + [SMALL_STATE(3097)] = 209825, + [SMALL_STATE(3098)] = 209897, + [SMALL_STATE(3099)] = 209969, + [SMALL_STATE(3100)] = 210041, + [SMALL_STATE(3101)] = 210113, + [SMALL_STATE(3102)] = 210185, + [SMALL_STATE(3103)] = 210257, + [SMALL_STATE(3104)] = 210329, + [SMALL_STATE(3105)] = 210401, + [SMALL_STATE(3106)] = 210473, + [SMALL_STATE(3107)] = 210545, + [SMALL_STATE(3108)] = 210617, + [SMALL_STATE(3109)] = 210689, + [SMALL_STATE(3110)] = 210761, + [SMALL_STATE(3111)] = 210833, + [SMALL_STATE(3112)] = 210903, + [SMALL_STATE(3113)] = 210975, + [SMALL_STATE(3114)] = 211047, + [SMALL_STATE(3115)] = 211119, + [SMALL_STATE(3116)] = 211195, + [SMALL_STATE(3117)] = 211271, + [SMALL_STATE(3118)] = 211343, + [SMALL_STATE(3119)] = 211415, + [SMALL_STATE(3120)] = 211487, + [SMALL_STATE(3121)] = 211559, + [SMALL_STATE(3122)] = 211631, + [SMALL_STATE(3123)] = 211703, + [SMALL_STATE(3124)] = 211775, + [SMALL_STATE(3125)] = 211847, + [SMALL_STATE(3126)] = 211923, + [SMALL_STATE(3127)] = 211995, + [SMALL_STATE(3128)] = 212067, + [SMALL_STATE(3129)] = 212143, + [SMALL_STATE(3130)] = 212215, + [SMALL_STATE(3131)] = 212269, + [SMALL_STATE(3132)] = 212339, + [SMALL_STATE(3133)] = 212411, + [SMALL_STATE(3134)] = 212483, + [SMALL_STATE(3135)] = 212559, + [SMALL_STATE(3136)] = 212631, + [SMALL_STATE(3137)] = 212703, + [SMALL_STATE(3138)] = 212775, + [SMALL_STATE(3139)] = 212847, + [SMALL_STATE(3140)] = 212919, + [SMALL_STATE(3141)] = 212991, + [SMALL_STATE(3142)] = 213063, + [SMALL_STATE(3143)] = 213135, + [SMALL_STATE(3144)] = 213207, + [SMALL_STATE(3145)] = 213279, + [SMALL_STATE(3146)] = 213351, + [SMALL_STATE(3147)] = 213423, + [SMALL_STATE(3148)] = 213495, + [SMALL_STATE(3149)] = 213567, + [SMALL_STATE(3150)] = 213639, + [SMALL_STATE(3151)] = 213711, + [SMALL_STATE(3152)] = 213783, + [SMALL_STATE(3153)] = 213855, + [SMALL_STATE(3154)] = 213927, + [SMALL_STATE(3155)] = 213999, + [SMALL_STATE(3156)] = 214071, + [SMALL_STATE(3157)] = 214143, + [SMALL_STATE(3158)] = 214215, + [SMALL_STATE(3159)] = 214287, + [SMALL_STATE(3160)] = 214359, + [SMALL_STATE(3161)] = 214431, + [SMALL_STATE(3162)] = 214503, + [SMALL_STATE(3163)] = 214575, + [SMALL_STATE(3164)] = 214651, + [SMALL_STATE(3165)] = 214723, + [SMALL_STATE(3166)] = 214795, + [SMALL_STATE(3167)] = 214867, + [SMALL_STATE(3168)] = 214939, + [SMALL_STATE(3169)] = 215009, + [SMALL_STATE(3170)] = 215081, + [SMALL_STATE(3171)] = 215153, + [SMALL_STATE(3172)] = 215225, + [SMALL_STATE(3173)] = 215297, + [SMALL_STATE(3174)] = 215369, + [SMALL_STATE(3175)] = 215408, + [SMALL_STATE(3176)] = 215447, + [SMALL_STATE(3177)] = 215486, + [SMALL_STATE(3178)] = 215550, + [SMALL_STATE(3179)] = 215594, + [SMALL_STATE(3180)] = 215658, + [SMALL_STATE(3181)] = 215704, + [SMALL_STATE(3182)] = 215750, + [SMALL_STATE(3183)] = 215814, + [SMALL_STATE(3184)] = 215878, + [SMALL_STATE(3185)] = 215924, + [SMALL_STATE(3186)] = 215970, + [SMALL_STATE(3187)] = 216034, + [SMALL_STATE(3188)] = 216074, + [SMALL_STATE(3189)] = 216120, + [SMALL_STATE(3190)] = 216166, + [SMALL_STATE(3191)] = 216212, + [SMALL_STATE(3192)] = 216276, + [SMALL_STATE(3193)] = 216322, + [SMALL_STATE(3194)] = 216368, + [SMALL_STATE(3195)] = 216414, + [SMALL_STATE(3196)] = 216478, + [SMALL_STATE(3197)] = 216524, + [SMALL_STATE(3198)] = 216562, + [SMALL_STATE(3199)] = 216626, + [SMALL_STATE(3200)] = 216690, + [SMALL_STATE(3201)] = 216736, + [SMALL_STATE(3202)] = 216800, + [SMALL_STATE(3203)] = 216846, + [SMALL_STATE(3204)] = 216910, + [SMALL_STATE(3205)] = 216974, + [SMALL_STATE(3206)] = 217038, + [SMALL_STATE(3207)] = 217084, + [SMALL_STATE(3208)] = 217130, + [SMALL_STATE(3209)] = 217170, + [SMALL_STATE(3210)] = 217234, + [SMALL_STATE(3211)] = 217293, + [SMALL_STATE(3212)] = 217352, + [SMALL_STATE(3213)] = 217399, + [SMALL_STATE(3214)] = 217450, + [SMALL_STATE(3215)] = 217489, + [SMALL_STATE(3216)] = 217528, + [SMALL_STATE(3217)] = 217573, + [SMALL_STATE(3218)] = 217608, + [SMALL_STATE(3219)] = 217667, + [SMALL_STATE(3220)] = 217710, + [SMALL_STATE(3221)] = 217761, + [SMALL_STATE(3222)] = 217810, + [SMALL_STATE(3223)] = 217869, + [SMALL_STATE(3224)] = 217929, + [SMALL_STATE(3225)] = 217989, + [SMALL_STATE(3226)] = 218047, + [SMALL_STATE(3227)] = 218095, + [SMALL_STATE(3228)] = 218155, + [SMALL_STATE(3229)] = 218217, + [SMALL_STATE(3230)] = 218261, + [SMALL_STATE(3231)] = 218323, + [SMALL_STATE(3232)] = 218383, + [SMALL_STATE(3233)] = 218443, + [SMALL_STATE(3234)] = 218491, + [SMALL_STATE(3235)] = 218539, + [SMALL_STATE(3236)] = 218587, + [SMALL_STATE(3237)] = 218645, + [SMALL_STATE(3238)] = 218705, + [SMALL_STATE(3239)] = 218763, + [SMALL_STATE(3240)] = 218811, + [SMALL_STATE(3241)] = 218871, + [SMALL_STATE(3242)] = 218931, + [SMALL_STATE(3243)] = 218969, + [SMALL_STATE(3244)] = 219031, + [SMALL_STATE(3245)] = 219069, + [SMALL_STATE(3246)] = 219117, + [SMALL_STATE(3247)] = 219151, + [SMALL_STATE(3248)] = 219189, + [SMALL_STATE(3249)] = 219237, + [SMALL_STATE(3250)] = 219295, + [SMALL_STATE(3251)] = 219345, + [SMALL_STATE(3252)] = 219407, + [SMALL_STATE(3253)] = 219469, + [SMALL_STATE(3254)] = 219503, + [SMALL_STATE(3255)] = 219549, + [SMALL_STATE(3256)] = 219609, + [SMALL_STATE(3257)] = 219645, + [SMALL_STATE(3258)] = 219693, + [SMALL_STATE(3259)] = 219743, + [SMALL_STATE(3260)] = 219803, + [SMALL_STATE(3261)] = 219861, + [SMALL_STATE(3262)] = 219896, + [SMALL_STATE(3263)] = 219931, + [SMALL_STATE(3264)] = 219964, + [SMALL_STATE(3265)] = 219997, + [SMALL_STATE(3266)] = 220042, + [SMALL_STATE(3267)] = 220081, + [SMALL_STATE(3268)] = 220114, + [SMALL_STATE(3269)] = 220161, + [SMALL_STATE(3270)] = 220206, + [SMALL_STATE(3271)] = 220241, + [SMALL_STATE(3272)] = 220288, + [SMALL_STATE(3273)] = 220335, + [SMALL_STATE(3274)] = 220382, + [SMALL_STATE(3275)] = 220417, + [SMALL_STATE(3276)] = 220449, + [SMALL_STATE(3277)] = 220491, + [SMALL_STATE(3278)] = 220523, + [SMALL_STATE(3279)] = 220579, + [SMALL_STATE(3280)] = 220633, + [SMALL_STATE(3281)] = 220685, + [SMALL_STATE(3282)] = 220739, + [SMALL_STATE(3283)] = 220793, + [SMALL_STATE(3284)] = 220835, + [SMALL_STATE(3285)] = 220887, + [SMALL_STATE(3286)] = 220939, + [SMALL_STATE(3287)] = 220995, + [SMALL_STATE(3288)] = 221049, + [SMALL_STATE(3289)] = 221103, + [SMALL_STATE(3290)] = 221159, + [SMALL_STATE(3291)] = 221211, + [SMALL_STATE(3292)] = 221263, + [SMALL_STATE(3293)] = 221317, + [SMALL_STATE(3294)] = 221369, + [SMALL_STATE(3295)] = 221421, + [SMALL_STATE(3296)] = 221475, + [SMALL_STATE(3297)] = 221515, + [SMALL_STATE(3298)] = 221547, + [SMALL_STATE(3299)] = 221589, + [SMALL_STATE(3300)] = 221645, + [SMALL_STATE(3301)] = 221699, + [SMALL_STATE(3302)] = 221753, + [SMALL_STATE(3303)] = 221805, + [SMALL_STATE(3304)] = 221859, + [SMALL_STATE(3305)] = 221911, + [SMALL_STATE(3306)] = 221963, + [SMALL_STATE(3307)] = 222019, + [SMALL_STATE(3308)] = 222073, + [SMALL_STATE(3309)] = 222120, + [SMALL_STATE(3310)] = 222167, + [SMALL_STATE(3311)] = 222202, + [SMALL_STATE(3312)] = 222233, + [SMALL_STATE(3313)] = 222280, + [SMALL_STATE(3314)] = 222317, + [SMALL_STATE(3315)] = 222364, + [SMALL_STATE(3316)] = 222411, + [SMALL_STATE(3317)] = 222458, + [SMALL_STATE(3318)] = 222505, + [SMALL_STATE(3319)] = 222552, + [SMALL_STATE(3320)] = 222599, + [SMALL_STATE(3321)] = 222646, + [SMALL_STATE(3322)] = 222693, + [SMALL_STATE(3323)] = 222740, + [SMALL_STATE(3324)] = 222787, + [SMALL_STATE(3325)] = 222834, + [SMALL_STATE(3326)] = 222881, + [SMALL_STATE(3327)] = 222928, + [SMALL_STATE(3328)] = 222975, + [SMALL_STATE(3329)] = 223022, + [SMALL_STATE(3330)] = 223069, + [SMALL_STATE(3331)] = 223116, + [SMALL_STATE(3332)] = 223163, + [SMALL_STATE(3333)] = 223210, + [SMALL_STATE(3334)] = 223257, + [SMALL_STATE(3335)] = 223304, + [SMALL_STATE(3336)] = 223351, + [SMALL_STATE(3337)] = 223396, + [SMALL_STATE(3338)] = 223443, + [SMALL_STATE(3339)] = 223490, + [SMALL_STATE(3340)] = 223537, + [SMALL_STATE(3341)] = 223584, + [SMALL_STATE(3342)] = 223631, + [SMALL_STATE(3343)] = 223678, + [SMALL_STATE(3344)] = 223725, + [SMALL_STATE(3345)] = 223772, + [SMALL_STATE(3346)] = 223819, + [SMALL_STATE(3347)] = 223866, + [SMALL_STATE(3348)] = 223913, + [SMALL_STATE(3349)] = 223960, + [SMALL_STATE(3350)] = 224007, + [SMALL_STATE(3351)] = 224054, + [SMALL_STATE(3352)] = 224101, + [SMALL_STATE(3353)] = 224148, + [SMALL_STATE(3354)] = 224195, + [SMALL_STATE(3355)] = 224242, + [SMALL_STATE(3356)] = 224289, + [SMALL_STATE(3357)] = 224330, + [SMALL_STATE(3358)] = 224373, + [SMALL_STATE(3359)] = 224420, + [SMALL_STATE(3360)] = 224467, + [SMALL_STATE(3361)] = 224514, + [SMALL_STATE(3362)] = 224557, + [SMALL_STATE(3363)] = 224600, + [SMALL_STATE(3364)] = 224647, + [SMALL_STATE(3365)] = 224690, + [SMALL_STATE(3366)] = 224737, + [SMALL_STATE(3367)] = 224780, + [SMALL_STATE(3368)] = 224827, + [SMALL_STATE(3369)] = 224874, + [SMALL_STATE(3370)] = 224921, + [SMALL_STATE(3371)] = 224968, + [SMALL_STATE(3372)] = 225000, + [SMALL_STATE(3373)] = 225038, + [SMALL_STATE(3374)] = 225068, + [SMALL_STATE(3375)] = 225118, + [SMALL_STATE(3376)] = 225168, + [SMALL_STATE(3377)] = 225206, + [SMALL_STATE(3378)] = 225244, + [SMALL_STATE(3379)] = 225292, + [SMALL_STATE(3380)] = 225340, + [SMALL_STATE(3381)] = 225388, + [SMALL_STATE(3382)] = 225426, + [SMALL_STATE(3383)] = 225460, + [SMALL_STATE(3384)] = 225492, + [SMALL_STATE(3385)] = 225540, + [SMALL_STATE(3386)] = 225590, + [SMALL_STATE(3387)] = 225620, + [SMALL_STATE(3388)] = 225668, + [SMALL_STATE(3389)] = 225704, + [SMALL_STATE(3390)] = 225752, + [SMALL_STATE(3391)] = 225802, + [SMALL_STATE(3392)] = 225852, + [SMALL_STATE(3393)] = 225900, + [SMALL_STATE(3394)] = 225950, + [SMALL_STATE(3395)] = 225988, + [SMALL_STATE(3396)] = 226038, + [SMALL_STATE(3397)] = 226088, + [SMALL_STATE(3398)] = 226138, + [SMALL_STATE(3399)] = 226186, + [SMALL_STATE(3400)] = 226234, + [SMALL_STATE(3401)] = 226282, + [SMALL_STATE(3402)] = 226332, + [SMALL_STATE(3403)] = 226382, + [SMALL_STATE(3404)] = 226427, + [SMALL_STATE(3405)] = 226474, + [SMALL_STATE(3406)] = 226521, + [SMALL_STATE(3407)] = 226574, + [SMALL_STATE(3408)] = 226621, + [SMALL_STATE(3409)] = 226666, + [SMALL_STATE(3410)] = 226713, + [SMALL_STATE(3411)] = 226762, + [SMALL_STATE(3412)] = 226811, + [SMALL_STATE(3413)] = 226842, + [SMALL_STATE(3414)] = 226879, + [SMALL_STATE(3415)] = 226932, + [SMALL_STATE(3416)] = 226981, + [SMALL_STATE(3417)] = 227012, + [SMALL_STATE(3418)] = 227057, + [SMALL_STATE(3419)] = 227104, + [SMALL_STATE(3420)] = 227153, + [SMALL_STATE(3421)] = 227202, + [SMALL_STATE(3422)] = 227249, + [SMALL_STATE(3423)] = 227302, + [SMALL_STATE(3424)] = 227355, + [SMALL_STATE(3425)] = 227402, + [SMALL_STATE(3426)] = 227449, + [SMALL_STATE(3427)] = 227498, + [SMALL_STATE(3428)] = 227543, + [SMALL_STATE(3429)] = 227588, + [SMALL_STATE(3430)] = 227637, + [SMALL_STATE(3431)] = 227686, + [SMALL_STATE(3432)] = 227731, + [SMALL_STATE(3433)] = 227784, + [SMALL_STATE(3434)] = 227831, + [SMALL_STATE(3435)] = 227884, + [SMALL_STATE(3436)] = 227931, + [SMALL_STATE(3437)] = 227972, + [SMALL_STATE(3438)] = 228019, + [SMALL_STATE(3439)] = 228066, + [SMALL_STATE(3440)] = 228113, + [SMALL_STATE(3441)] = 228148, + [SMALL_STATE(3442)] = 228179, + [SMALL_STATE(3443)] = 228210, + [SMALL_STATE(3444)] = 228263, + [SMALL_STATE(3445)] = 228310, + [SMALL_STATE(3446)] = 228347, + [SMALL_STATE(3447)] = 228392, + [SMALL_STATE(3448)] = 228423, + [SMALL_STATE(3449)] = 228468, + [SMALL_STATE(3450)] = 228499, + [SMALL_STATE(3451)] = 228546, + [SMALL_STATE(3452)] = 228593, + [SMALL_STATE(3453)] = 228638, + [SMALL_STATE(3454)] = 228685, + [SMALL_STATE(3455)] = 228722, + [SMALL_STATE(3456)] = 228767, + [SMALL_STATE(3457)] = 228814, + [SMALL_STATE(3458)] = 228859, + [SMALL_STATE(3459)] = 228890, + [SMALL_STATE(3460)] = 228935, + [SMALL_STATE(3461)] = 228982, + [SMALL_STATE(3462)] = 229027, + [SMALL_STATE(3463)] = 229058, + [SMALL_STATE(3464)] = 229105, + [SMALL_STATE(3465)] = 229152, + [SMALL_STATE(3466)] = 229199, + [SMALL_STATE(3467)] = 229228, + [SMALL_STATE(3468)] = 229275, + [SMALL_STATE(3469)] = 229322, + [SMALL_STATE(3470)] = 229369, + [SMALL_STATE(3471)] = 229400, + [SMALL_STATE(3472)] = 229447, + [SMALL_STATE(3473)] = 229494, + [SMALL_STATE(3474)] = 229539, + [SMALL_STATE(3475)] = 229568, + [SMALL_STATE(3476)] = 229615, + [SMALL_STATE(3477)] = 229646, + [SMALL_STATE(3478)] = 229693, + [SMALL_STATE(3479)] = 229724, + [SMALL_STATE(3480)] = 229769, + [SMALL_STATE(3481)] = 229814, + [SMALL_STATE(3482)] = 229859, + [SMALL_STATE(3483)] = 229906, + [SMALL_STATE(3484)] = 229951, + [SMALL_STATE(3485)] = 229998, + [SMALL_STATE(3486)] = 230045, + [SMALL_STATE(3487)] = 230098, + [SMALL_STATE(3488)] = 230145, + [SMALL_STATE(3489)] = 230190, + [SMALL_STATE(3490)] = 230221, + [SMALL_STATE(3491)] = 230270, + [SMALL_STATE(3492)] = 230301, + [SMALL_STATE(3493)] = 230332, + [SMALL_STATE(3494)] = 230377, + [SMALL_STATE(3495)] = 230430, + [SMALL_STATE(3496)] = 230461, + [SMALL_STATE(3497)] = 230492, + [SMALL_STATE(3498)] = 230541, + [SMALL_STATE(3499)] = 230594, + [SMALL_STATE(3500)] = 230644, + [SMALL_STATE(3501)] = 230694, + [SMALL_STATE(3502)] = 230744, + [SMALL_STATE(3503)] = 230772, + [SMALL_STATE(3504)] = 230810, + [SMALL_STATE(3505)] = 230860, + [SMALL_STATE(3506)] = 230910, + [SMALL_STATE(3507)] = 230960, + [SMALL_STATE(3508)] = 230998, + [SMALL_STATE(3509)] = 231048, + [SMALL_STATE(3510)] = 231098, + [SMALL_STATE(3511)] = 231148, + [SMALL_STATE(3512)] = 231198, + [SMALL_STATE(3513)] = 231236, + [SMALL_STATE(3514)] = 231286, + [SMALL_STATE(3515)] = 231332, + [SMALL_STATE(3516)] = 231370, + [SMALL_STATE(3517)] = 231420, + [SMALL_STATE(3518)] = 231458, + [SMALL_STATE(3519)] = 231508, + [SMALL_STATE(3520)] = 231558, + [SMALL_STATE(3521)] = 231608, + [SMALL_STATE(3522)] = 231658, + [SMALL_STATE(3523)] = 231708, + [SMALL_STATE(3524)] = 231758, + [SMALL_STATE(3525)] = 231808, + [SMALL_STATE(3526)] = 231858, + [SMALL_STATE(3527)] = 231908, + [SMALL_STATE(3528)] = 231946, + [SMALL_STATE(3529)] = 231996, + [SMALL_STATE(3530)] = 232046, + [SMALL_STATE(3531)] = 232096, + [SMALL_STATE(3532)] = 232146, + [SMALL_STATE(3533)] = 232196, + [SMALL_STATE(3534)] = 232246, + [SMALL_STATE(3535)] = 232296, + [SMALL_STATE(3536)] = 232346, + [SMALL_STATE(3537)] = 232396, + [SMALL_STATE(3538)] = 232426, + [SMALL_STATE(3539)] = 232472, + [SMALL_STATE(3540)] = 232522, + [SMALL_STATE(3541)] = 232550, + [SMALL_STATE(3542)] = 232600, + [SMALL_STATE(3543)] = 232650, + [SMALL_STATE(3544)] = 232682, + [SMALL_STATE(3545)] = 232714, + [SMALL_STATE(3546)] = 232764, + [SMALL_STATE(3547)] = 232814, + [SMALL_STATE(3548)] = 232860, + [SMALL_STATE(3549)] = 232910, + [SMALL_STATE(3550)] = 232960, + [SMALL_STATE(3551)] = 232998, + [SMALL_STATE(3552)] = 233036, + [SMALL_STATE(3553)] = 233086, + [SMALL_STATE(3554)] = 233132, + [SMALL_STATE(3555)] = 233178, + [SMALL_STATE(3556)] = 233228, + [SMALL_STATE(3557)] = 233256, + [SMALL_STATE(3558)] = 233292, + [SMALL_STATE(3559)] = 233330, + [SMALL_STATE(3560)] = 233380, + [SMALL_STATE(3561)] = 233430, + [SMALL_STATE(3562)] = 233460, + [SMALL_STATE(3563)] = 233510, + [SMALL_STATE(3564)] = 233560, + [SMALL_STATE(3565)] = 233588, + [SMALL_STATE(3566)] = 233616, + [SMALL_STATE(3567)] = 233662, + [SMALL_STATE(3568)] = 233700, + [SMALL_STATE(3569)] = 233750, + [SMALL_STATE(3570)] = 233796, + [SMALL_STATE(3571)] = 233842, + [SMALL_STATE(3572)] = 233892, + [SMALL_STATE(3573)] = 233942, + [SMALL_STATE(3574)] = 233992, + [SMALL_STATE(3575)] = 234034, + [SMALL_STATE(3576)] = 234084, + [SMALL_STATE(3577)] = 234130, + [SMALL_STATE(3578)] = 234158, + [SMALL_STATE(3579)] = 234208, + [SMALL_STATE(3580)] = 234258, + [SMALL_STATE(3581)] = 234304, + [SMALL_STATE(3582)] = 234332, + [SMALL_STATE(3583)] = 234364, + [SMALL_STATE(3584)] = 234407, + [SMALL_STATE(3585)] = 234448, + [SMALL_STATE(3586)] = 234491, + [SMALL_STATE(3587)] = 234530, + [SMALL_STATE(3588)] = 234573, + [SMALL_STATE(3589)] = 234602, + [SMALL_STATE(3590)] = 234631, + [SMALL_STATE(3591)] = 234674, + [SMALL_STATE(3592)] = 234713, + [SMALL_STATE(3593)] = 234752, + [SMALL_STATE(3594)] = 234791, + [SMALL_STATE(3595)] = 234830, + [SMALL_STATE(3596)] = 234873, + [SMALL_STATE(3597)] = 234912, + [SMALL_STATE(3598)] = 234955, + [SMALL_STATE(3599)] = 234994, + [SMALL_STATE(3600)] = 235033, + [SMALL_STATE(3601)] = 235076, + [SMALL_STATE(3602)] = 235115, + [SMALL_STATE(3603)] = 235158, + [SMALL_STATE(3604)] = 235197, + [SMALL_STATE(3605)] = 235240, + [SMALL_STATE(3606)] = 235287, + [SMALL_STATE(3607)] = 235334, + [SMALL_STATE(3608)] = 235373, + [SMALL_STATE(3609)] = 235402, + [SMALL_STATE(3610)] = 235441, + [SMALL_STATE(3611)] = 235480, + [SMALL_STATE(3612)] = 235519, + [SMALL_STATE(3613)] = 235548, + [SMALL_STATE(3614)] = 235591, + [SMALL_STATE(3615)] = 235634, + [SMALL_STATE(3616)] = 235677, + [SMALL_STATE(3617)] = 235720, + [SMALL_STATE(3618)] = 235755, + [SMALL_STATE(3619)] = 235794, + [SMALL_STATE(3620)] = 235837, + [SMALL_STATE(3621)] = 235880, + [SMALL_STATE(3622)] = 235923, + [SMALL_STATE(3623)] = 235970, + [SMALL_STATE(3624)] = 236009, + [SMALL_STATE(3625)] = 236048, + [SMALL_STATE(3626)] = 236087, + [SMALL_STATE(3627)] = 236130, + [SMALL_STATE(3628)] = 236159, + [SMALL_STATE(3629)] = 236202, + [SMALL_STATE(3630)] = 236245, + [SMALL_STATE(3631)] = 236288, + [SMALL_STATE(3632)] = 236331, + [SMALL_STATE(3633)] = 236378, + [SMALL_STATE(3634)] = 236421, + [SMALL_STATE(3635)] = 236450, + [SMALL_STATE(3636)] = 236489, + [SMALL_STATE(3637)] = 236516, + [SMALL_STATE(3638)] = 236545, + [SMALL_STATE(3639)] = 236588, + [SMALL_STATE(3640)] = 236617, + [SMALL_STATE(3641)] = 236646, + [SMALL_STATE(3642)] = 236673, + [SMALL_STATE(3643)] = 236716, + [SMALL_STATE(3644)] = 236759, + [SMALL_STATE(3645)] = 236802, + [SMALL_STATE(3646)] = 236845, + [SMALL_STATE(3647)] = 236888, + [SMALL_STATE(3648)] = 236931, + [SMALL_STATE(3649)] = 236960, + [SMALL_STATE(3650)] = 237003, + [SMALL_STATE(3651)] = 237042, + [SMALL_STATE(3652)] = 237089, + [SMALL_STATE(3653)] = 237132, + [SMALL_STATE(3654)] = 237175, + [SMALL_STATE(3655)] = 237214, + [SMALL_STATE(3656)] = 237257, + [SMALL_STATE(3657)] = 237284, + [SMALL_STATE(3658)] = 237311, + [SMALL_STATE(3659)] = 237350, + [SMALL_STATE(3660)] = 237379, + [SMALL_STATE(3661)] = 237406, + [SMALL_STATE(3662)] = 237435, + [SMALL_STATE(3663)] = 237478, + [SMALL_STATE(3664)] = 237521, + [SMALL_STATE(3665)] = 237564, + [SMALL_STATE(3666)] = 237607, + [SMALL_STATE(3667)] = 237636, + [SMALL_STATE(3668)] = 237675, + [SMALL_STATE(3669)] = 237714, + [SMALL_STATE(3670)] = 237757, + [SMALL_STATE(3671)] = 237796, + [SMALL_STATE(3672)] = 237835, + [SMALL_STATE(3673)] = 237874, + [SMALL_STATE(3674)] = 237921, + [SMALL_STATE(3675)] = 237948, + [SMALL_STATE(3676)] = 237977, + [SMALL_STATE(3677)] = 238020, + [SMALL_STATE(3678)] = 238049, + [SMALL_STATE(3679)] = 238078, + [SMALL_STATE(3680)] = 238121, + [SMALL_STATE(3681)] = 238160, + [SMALL_STATE(3682)] = 238195, + [SMALL_STATE(3683)] = 238238, + [SMALL_STATE(3684)] = 238277, + [SMALL_STATE(3685)] = 238324, + [SMALL_STATE(3686)] = 238367, + [SMALL_STATE(3687)] = 238410, + [SMALL_STATE(3688)] = 238439, + [SMALL_STATE(3689)] = 238482, + [SMALL_STATE(3690)] = 238511, + [SMALL_STATE(3691)] = 238550, + [SMALL_STATE(3692)] = 238577, + [SMALL_STATE(3693)] = 238620, + [SMALL_STATE(3694)] = 238659, + [SMALL_STATE(3695)] = 238702, + [SMALL_STATE(3696)] = 238745, + [SMALL_STATE(3697)] = 238792, + [SMALL_STATE(3698)] = 238835, + [SMALL_STATE(3699)] = 238878, + [SMALL_STATE(3700)] = 238925, + [SMALL_STATE(3701)] = 238964, + [SMALL_STATE(3702)] = 238993, + [SMALL_STATE(3703)] = 239032, + [SMALL_STATE(3704)] = 239071, + [SMALL_STATE(3705)] = 239110, + [SMALL_STATE(3706)] = 239149, + [SMALL_STATE(3707)] = 239188, + [SMALL_STATE(3708)] = 239227, + [SMALL_STATE(3709)] = 239266, + [SMALL_STATE(3710)] = 239309, + [SMALL_STATE(3711)] = 239352, + [SMALL_STATE(3712)] = 239395, + [SMALL_STATE(3713)] = 239434, + [SMALL_STATE(3714)] = 239463, + [SMALL_STATE(3715)] = 239502, + [SMALL_STATE(3716)] = 239549, + [SMALL_STATE(3717)] = 239592, + [SMALL_STATE(3718)] = 239621, + [SMALL_STATE(3719)] = 239664, + [SMALL_STATE(3720)] = 239707, + [SMALL_STATE(3721)] = 239736, + [SMALL_STATE(3722)] = 239765, + [SMALL_STATE(3723)] = 239808, + [SMALL_STATE(3724)] = 239851, + [SMALL_STATE(3725)] = 239890, + [SMALL_STATE(3726)] = 239933, + [SMALL_STATE(3727)] = 239972, + [SMALL_STATE(3728)] = 240011, + [SMALL_STATE(3729)] = 240050, + [SMALL_STATE(3730)] = 240079, + [SMALL_STATE(3731)] = 240122, + [SMALL_STATE(3732)] = 240161, + [SMALL_STATE(3733)] = 240200, + [SMALL_STATE(3734)] = 240243, + [SMALL_STATE(3735)] = 240286, + [SMALL_STATE(3736)] = 240329, + [SMALL_STATE(3737)] = 240372, + [SMALL_STATE(3738)] = 240411, + [SMALL_STATE(3739)] = 240454, + [SMALL_STATE(3740)] = 240497, + [SMALL_STATE(3741)] = 240536, + [SMALL_STATE(3742)] = 240579, + [SMALL_STATE(3743)] = 240618, + [SMALL_STATE(3744)] = 240661, + [SMALL_STATE(3745)] = 240700, + [SMALL_STATE(3746)] = 240739, + [SMALL_STATE(3747)] = 240778, + [SMALL_STATE(3748)] = 240817, + [SMALL_STATE(3749)] = 240856, + [SMALL_STATE(3750)] = 240895, + [SMALL_STATE(3751)] = 240924, + [SMALL_STATE(3752)] = 240963, + [SMALL_STATE(3753)] = 240992, + [SMALL_STATE(3754)] = 241031, + [SMALL_STATE(3755)] = 241070, + [SMALL_STATE(3756)] = 241113, + [SMALL_STATE(3757)] = 241142, + [SMALL_STATE(3758)] = 241171, + [SMALL_STATE(3759)] = 241214, + [SMALL_STATE(3760)] = 241257, + [SMALL_STATE(3761)] = 241296, + [SMALL_STATE(3762)] = 241335, + [SMALL_STATE(3763)] = 241374, + [SMALL_STATE(3764)] = 241413, + [SMALL_STATE(3765)] = 241452, + [SMALL_STATE(3766)] = 241495, + [SMALL_STATE(3767)] = 241534, + [SMALL_STATE(3768)] = 241573, + [SMALL_STATE(3769)] = 241616, + [SMALL_STATE(3770)] = 241659, + [SMALL_STATE(3771)] = 241702, + [SMALL_STATE(3772)] = 241745, + [SMALL_STATE(3773)] = 241792, + [SMALL_STATE(3774)] = 241831, + [SMALL_STATE(3775)] = 241874, + [SMALL_STATE(3776)] = 241921, + [SMALL_STATE(3777)] = 241950, + [SMALL_STATE(3778)] = 241989, + [SMALL_STATE(3779)] = 242028, + [SMALL_STATE(3780)] = 242067, + [SMALL_STATE(3781)] = 242106, + [SMALL_STATE(3782)] = 242149, + [SMALL_STATE(3783)] = 242176, + [SMALL_STATE(3784)] = 242219, + [SMALL_STATE(3785)] = 242262, + [SMALL_STATE(3786)] = 242309, + [SMALL_STATE(3787)] = 242348, + [SMALL_STATE(3788)] = 242391, + [SMALL_STATE(3789)] = 242434, + [SMALL_STATE(3790)] = 242473, + [SMALL_STATE(3791)] = 242512, + [SMALL_STATE(3792)] = 242541, + [SMALL_STATE(3793)] = 242578, + [SMALL_STATE(3794)] = 242617, + [SMALL_STATE(3795)] = 242646, + [SMALL_STATE(3796)] = 242675, + [SMALL_STATE(3797)] = 242714, + [SMALL_STATE(3798)] = 242753, + [SMALL_STATE(3799)] = 242792, + [SMALL_STATE(3800)] = 242831, + [SMALL_STATE(3801)] = 242858, + [SMALL_STATE(3802)] = 242897, + [SMALL_STATE(3803)] = 242926, + [SMALL_STATE(3804)] = 242965, + [SMALL_STATE(3805)] = 242994, + [SMALL_STATE(3806)] = 243033, + [SMALL_STATE(3807)] = 243076, + [SMALL_STATE(3808)] = 243115, + [SMALL_STATE(3809)] = 243144, + [SMALL_STATE(3810)] = 243183, + [SMALL_STATE(3811)] = 243222, + [SMALL_STATE(3812)] = 243251, + [SMALL_STATE(3813)] = 243290, + [SMALL_STATE(3814)] = 243337, + [SMALL_STATE(3815)] = 243376, + [SMALL_STATE(3816)] = 243403, + [SMALL_STATE(3817)] = 243442, + [SMALL_STATE(3818)] = 243481, + [SMALL_STATE(3819)] = 243510, + [SMALL_STATE(3820)] = 243549, + [SMALL_STATE(3821)] = 243578, + [SMALL_STATE(3822)] = 243621, + [SMALL_STATE(3823)] = 243650, + [SMALL_STATE(3824)] = 243697, + [SMALL_STATE(3825)] = 243736, + [SMALL_STATE(3826)] = 243775, + [SMALL_STATE(3827)] = 243814, + [SMALL_STATE(3828)] = 243853, + [SMALL_STATE(3829)] = 243892, + [SMALL_STATE(3830)] = 243931, + [SMALL_STATE(3831)] = 243974, + [SMALL_STATE(3832)] = 244017, + [SMALL_STATE(3833)] = 244060, + [SMALL_STATE(3834)] = 244099, + [SMALL_STATE(3835)] = 244138, + [SMALL_STATE(3836)] = 244181, + [SMALL_STATE(3837)] = 244224, + [SMALL_STATE(3838)] = 244263, + [SMALL_STATE(3839)] = 244306, + [SMALL_STATE(3840)] = 244345, + [SMALL_STATE(3841)] = 244384, + [SMALL_STATE(3842)] = 244427, + [SMALL_STATE(3843)] = 244466, + [SMALL_STATE(3844)] = 244505, + [SMALL_STATE(3845)] = 244534, + [SMALL_STATE(3846)] = 244577, + [SMALL_STATE(3847)] = 244616, + [SMALL_STATE(3848)] = 244659, + [SMALL_STATE(3849)] = 244702, + [SMALL_STATE(3850)] = 244745, + [SMALL_STATE(3851)] = 244788, + [SMALL_STATE(3852)] = 244827, + [SMALL_STATE(3853)] = 244871, + [SMALL_STATE(3854)] = 244915, + [SMALL_STATE(3855)] = 244957, + [SMALL_STATE(3856)] = 245001, + [SMALL_STATE(3857)] = 245043, + [SMALL_STATE(3858)] = 245087, + [SMALL_STATE(3859)] = 245113, + [SMALL_STATE(3860)] = 245157, + [SMALL_STATE(3861)] = 245199, + [SMALL_STATE(3862)] = 245243, + [SMALL_STATE(3863)] = 245287, + [SMALL_STATE(3864)] = 245329, + [SMALL_STATE(3865)] = 245373, + [SMALL_STATE(3866)] = 245417, + [SMALL_STATE(3867)] = 245459, + [SMALL_STATE(3868)] = 245501, + [SMALL_STATE(3869)] = 245543, + [SMALL_STATE(3870)] = 245585, + [SMALL_STATE(3871)] = 245629, + [SMALL_STATE(3872)] = 245671, + [SMALL_STATE(3873)] = 245697, + [SMALL_STATE(3874)] = 245741, + [SMALL_STATE(3875)] = 245783, + [SMALL_STATE(3876)] = 245821, + [SMALL_STATE(3877)] = 245865, + [SMALL_STATE(3878)] = 245909, + [SMALL_STATE(3879)] = 245953, + [SMALL_STATE(3880)] = 245983, + [SMALL_STATE(3881)] = 246025, + [SMALL_STATE(3882)] = 246069, + [SMALL_STATE(3883)] = 246105, + [SMALL_STATE(3884)] = 246147, + [SMALL_STATE(3885)] = 246189, + [SMALL_STATE(3886)] = 246231, + [SMALL_STATE(3887)] = 246273, + [SMALL_STATE(3888)] = 246317, + [SMALL_STATE(3889)] = 246361, + [SMALL_STATE(3890)] = 246403, + [SMALL_STATE(3891)] = 246447, + [SMALL_STATE(3892)] = 246489, + [SMALL_STATE(3893)] = 246531, + [SMALL_STATE(3894)] = 246573, + [SMALL_STATE(3895)] = 246615, + [SMALL_STATE(3896)] = 246657, + [SMALL_STATE(3897)] = 246701, + [SMALL_STATE(3898)] = 246743, + [SMALL_STATE(3899)] = 246787, + [SMALL_STATE(3900)] = 246829, + [SMALL_STATE(3901)] = 246873, + [SMALL_STATE(3902)] = 246911, + [SMALL_STATE(3903)] = 246955, + [SMALL_STATE(3904)] = 246991, + [SMALL_STATE(3905)] = 247035, + [SMALL_STATE(3906)] = 247079, + [SMALL_STATE(3907)] = 247121, + [SMALL_STATE(3908)] = 247163, + [SMALL_STATE(3909)] = 247199, + [SMALL_STATE(3910)] = 247243, + [SMALL_STATE(3911)] = 247269, + [SMALL_STATE(3912)] = 247313, + [SMALL_STATE(3913)] = 247355, + [SMALL_STATE(3914)] = 247397, + [SMALL_STATE(3915)] = 247439, + [SMALL_STATE(3916)] = 247465, + [SMALL_STATE(3917)] = 247491, + [SMALL_STATE(3918)] = 247535, + [SMALL_STATE(3919)] = 247577, + [SMALL_STATE(3920)] = 247619, + [SMALL_STATE(3921)] = 247661, + [SMALL_STATE(3922)] = 247705, + [SMALL_STATE(3923)] = 247749, + [SMALL_STATE(3924)] = 247793, + [SMALL_STATE(3925)] = 247819, + [SMALL_STATE(3926)] = 247863, + [SMALL_STATE(3927)] = 247897, + [SMALL_STATE(3928)] = 247941, + [SMALL_STATE(3929)] = 247983, + [SMALL_STATE(3930)] = 248027, + [SMALL_STATE(3931)] = 248071, + [SMALL_STATE(3932)] = 248115, + [SMALL_STATE(3933)] = 248151, + [SMALL_STATE(3934)] = 248192, + [SMALL_STATE(3935)] = 248219, + [SMALL_STATE(3936)] = 248254, + [SMALL_STATE(3937)] = 248295, + [SMALL_STATE(3938)] = 248336, + [SMALL_STATE(3939)] = 248377, + [SMALL_STATE(3940)] = 248418, + [SMALL_STATE(3941)] = 248447, + [SMALL_STATE(3942)] = 248488, + [SMALL_STATE(3943)] = 248519, + [SMALL_STATE(3944)] = 248560, + [SMALL_STATE(3945)] = 248589, + [SMALL_STATE(3946)] = 248616, + [SMALL_STATE(3947)] = 248643, + [SMALL_STATE(3948)] = 248670, + [SMALL_STATE(3949)] = 248697, + [SMALL_STATE(3950)] = 248724, + [SMALL_STATE(3951)] = 248765, + [SMALL_STATE(3952)] = 248794, + [SMALL_STATE(3953)] = 248821, + [SMALL_STATE(3954)] = 248862, + [SMALL_STATE(3955)] = 248889, + [SMALL_STATE(3956)] = 248916, + [SMALL_STATE(3957)] = 248943, + [SMALL_STATE(3958)] = 248984, + [SMALL_STATE(3959)] = 249025, + [SMALL_STATE(3960)] = 249066, + [SMALL_STATE(3961)] = 249107, + [SMALL_STATE(3962)] = 249148, + [SMALL_STATE(3963)] = 249189, + [SMALL_STATE(3964)] = 249216, + [SMALL_STATE(3965)] = 249243, + [SMALL_STATE(3966)] = 249284, + [SMALL_STATE(3967)] = 249311, + [SMALL_STATE(3968)] = 249338, + [SMALL_STATE(3969)] = 249365, + [SMALL_STATE(3970)] = 249392, + [SMALL_STATE(3971)] = 249433, + [SMALL_STATE(3972)] = 249462, + [SMALL_STATE(3973)] = 249489, + [SMALL_STATE(3974)] = 249516, + [SMALL_STATE(3975)] = 249543, + [SMALL_STATE(3976)] = 249572, + [SMALL_STATE(3977)] = 249599, + [SMALL_STATE(3978)] = 249626, + [SMALL_STATE(3979)] = 249667, + [SMALL_STATE(3980)] = 249694, + [SMALL_STATE(3981)] = 249721, + [SMALL_STATE(3982)] = 249748, + [SMALL_STATE(3983)] = 249775, + [SMALL_STATE(3984)] = 249816, + [SMALL_STATE(3985)] = 249857, + [SMALL_STATE(3986)] = 249884, + [SMALL_STATE(3987)] = 249911, + [SMALL_STATE(3988)] = 249938, + [SMALL_STATE(3989)] = 249965, + [SMALL_STATE(3990)] = 250006, + [SMALL_STATE(3991)] = 250033, + [SMALL_STATE(3992)] = 250060, + [SMALL_STATE(3993)] = 250101, + [SMALL_STATE(3994)] = 250130, + [SMALL_STATE(3995)] = 250157, + [SMALL_STATE(3996)] = 250198, + [SMALL_STATE(3997)] = 250225, + [SMALL_STATE(3998)] = 250252, + [SMALL_STATE(3999)] = 250281, + [SMALL_STATE(4000)] = 250322, + [SMALL_STATE(4001)] = 250363, + [SMALL_STATE(4002)] = 250390, + [SMALL_STATE(4003)] = 250425, + [SMALL_STATE(4004)] = 250463, + [SMALL_STATE(4005)] = 250495, + [SMALL_STATE(4006)] = 250533, + [SMALL_STATE(4007)] = 250569, + [SMALL_STATE(4008)] = 250607, + [SMALL_STATE(4009)] = 250637, + [SMALL_STATE(4010)] = 250673, + [SMALL_STATE(4011)] = 250703, + [SMALL_STATE(4012)] = 250739, + [SMALL_STATE(4013)] = 250769, + [SMALL_STATE(4014)] = 250799, + [SMALL_STATE(4015)] = 250831, + [SMALL_STATE(4016)] = 250867, + [SMALL_STATE(4017)] = 250905, + [SMALL_STATE(4018)] = 250937, + [SMALL_STATE(4019)] = 250975, + [SMALL_STATE(4020)] = 251007, + [SMALL_STATE(4021)] = 251035, + [SMALL_STATE(4022)] = 251059, + [SMALL_STATE(4023)] = 251091, + [SMALL_STATE(4024)] = 251121, + [SMALL_STATE(4025)] = 251157, + [SMALL_STATE(4026)] = 251193, + [SMALL_STATE(4027)] = 251231, + [SMALL_STATE(4028)] = 251267, + [SMALL_STATE(4029)] = 251299, + [SMALL_STATE(4030)] = 251329, + [SMALL_STATE(4031)] = 251367, + [SMALL_STATE(4032)] = 251399, + [SMALL_STATE(4033)] = 251429, + [SMALL_STATE(4034)] = 251465, + [SMALL_STATE(4035)] = 251501, + [SMALL_STATE(4036)] = 251533, + [SMALL_STATE(4037)] = 251565, + [SMALL_STATE(4038)] = 251597, + [SMALL_STATE(4039)] = 251633, + [SMALL_STATE(4040)] = 251671, + [SMALL_STATE(4041)] = 251707, + [SMALL_STATE(4042)] = 251745, + [SMALL_STATE(4043)] = 251775, + [SMALL_STATE(4044)] = 251813, + [SMALL_STATE(4045)] = 251849, + [SMALL_STATE(4046)] = 251885, + [SMALL_STATE(4047)] = 251915, + [SMALL_STATE(4048)] = 251947, + [SMALL_STATE(4049)] = 251979, + [SMALL_STATE(4050)] = 252017, + [SMALL_STATE(4051)] = 252053, + [SMALL_STATE(4052)] = 252091, + [SMALL_STATE(4053)] = 252127, + [SMALL_STATE(4054)] = 252165, + [SMALL_STATE(4055)] = 252201, + [SMALL_STATE(4056)] = 252239, + [SMALL_STATE(4057)] = 252274, + [SMALL_STATE(4058)] = 252309, + [SMALL_STATE(4059)] = 252344, + [SMALL_STATE(4060)] = 252379, + [SMALL_STATE(4061)] = 252414, + [SMALL_STATE(4062)] = 252445, + [SMALL_STATE(4063)] = 252480, + [SMALL_STATE(4064)] = 252515, + [SMALL_STATE(4065)] = 252550, + [SMALL_STATE(4066)] = 252585, + [SMALL_STATE(4067)] = 252620, + [SMALL_STATE(4068)] = 252655, + [SMALL_STATE(4069)] = 252690, + [SMALL_STATE(4070)] = 252725, + [SMALL_STATE(4071)] = 252760, + [SMALL_STATE(4072)] = 252795, + [SMALL_STATE(4073)] = 252830, + [SMALL_STATE(4074)] = 252865, + [SMALL_STATE(4075)] = 252900, + [SMALL_STATE(4076)] = 252933, + [SMALL_STATE(4077)] = 252956, + [SMALL_STATE(4078)] = 252989, + [SMALL_STATE(4079)] = 253016, + [SMALL_STATE(4080)] = 253051, + [SMALL_STATE(4081)] = 253086, + [SMALL_STATE(4082)] = 253121, + [SMALL_STATE(4083)] = 253156, + [SMALL_STATE(4084)] = 253191, + [SMALL_STATE(4085)] = 253226, + [SMALL_STATE(4086)] = 253261, + [SMALL_STATE(4087)] = 253296, + [SMALL_STATE(4088)] = 253331, + [SMALL_STATE(4089)] = 253366, + [SMALL_STATE(4090)] = 253401, + [SMALL_STATE(4091)] = 253434, + [SMALL_STATE(4092)] = 253469, + [SMALL_STATE(4093)] = 253504, + [SMALL_STATE(4094)] = 253539, + [SMALL_STATE(4095)] = 253574, + [SMALL_STATE(4096)] = 253609, + [SMALL_STATE(4097)] = 253644, + [SMALL_STATE(4098)] = 253679, + [SMALL_STATE(4099)] = 253714, + [SMALL_STATE(4100)] = 253749, + [SMALL_STATE(4101)] = 253784, + [SMALL_STATE(4102)] = 253819, + [SMALL_STATE(4103)] = 253854, + [SMALL_STATE(4104)] = 253889, + [SMALL_STATE(4105)] = 253924, + [SMALL_STATE(4106)] = 253949, + [SMALL_STATE(4107)] = 253982, + [SMALL_STATE(4108)] = 254017, + [SMALL_STATE(4109)] = 254052, + [SMALL_STATE(4110)] = 254087, + [SMALL_STATE(4111)] = 254122, + [SMALL_STATE(4112)] = 254157, + [SMALL_STATE(4113)] = 254192, + [SMALL_STATE(4114)] = 254227, + [SMALL_STATE(4115)] = 254262, + [SMALL_STATE(4116)] = 254297, + [SMALL_STATE(4117)] = 254332, + [SMALL_STATE(4118)] = 254367, + [SMALL_STATE(4119)] = 254402, + [SMALL_STATE(4120)] = 254437, + [SMALL_STATE(4121)] = 254472, + [SMALL_STATE(4122)] = 254507, + [SMALL_STATE(4123)] = 254542, + [SMALL_STATE(4124)] = 254577, + [SMALL_STATE(4125)] = 254612, + [SMALL_STATE(4126)] = 254647, + [SMALL_STATE(4127)] = 254682, + [SMALL_STATE(4128)] = 254717, + [SMALL_STATE(4129)] = 254752, + [SMALL_STATE(4130)] = 254787, + [SMALL_STATE(4131)] = 254822, + [SMALL_STATE(4132)] = 254857, + [SMALL_STATE(4133)] = 254892, + [SMALL_STATE(4134)] = 254927, + [SMALL_STATE(4135)] = 254962, + [SMALL_STATE(4136)] = 254997, + [SMALL_STATE(4137)] = 255032, + [SMALL_STATE(4138)] = 255067, + [SMALL_STATE(4139)] = 255102, + [SMALL_STATE(4140)] = 255137, + [SMALL_STATE(4141)] = 255172, + [SMALL_STATE(4142)] = 255207, + [SMALL_STATE(4143)] = 255242, + [SMALL_STATE(4144)] = 255277, + [SMALL_STATE(4145)] = 255312, + [SMALL_STATE(4146)] = 255347, + [SMALL_STATE(4147)] = 255376, + [SMALL_STATE(4148)] = 255411, + [SMALL_STATE(4149)] = 255446, + [SMALL_STATE(4150)] = 255481, + [SMALL_STATE(4151)] = 255516, + [SMALL_STATE(4152)] = 255551, + [SMALL_STATE(4153)] = 255586, + [SMALL_STATE(4154)] = 255621, + [SMALL_STATE(4155)] = 255648, + [SMALL_STATE(4156)] = 255683, + [SMALL_STATE(4157)] = 255718, + [SMALL_STATE(4158)] = 255753, + [SMALL_STATE(4159)] = 255788, + [SMALL_STATE(4160)] = 255823, + [SMALL_STATE(4161)] = 255858, + [SMALL_STATE(4162)] = 255893, + [SMALL_STATE(4163)] = 255928, + [SMALL_STATE(4164)] = 255963, + [SMALL_STATE(4165)] = 255998, + [SMALL_STATE(4166)] = 256033, + [SMALL_STATE(4167)] = 256068, + [SMALL_STATE(4168)] = 256103, + [SMALL_STATE(4169)] = 256138, + [SMALL_STATE(4170)] = 256173, + [SMALL_STATE(4171)] = 256208, + [SMALL_STATE(4172)] = 256243, + [SMALL_STATE(4173)] = 256278, + [SMALL_STATE(4174)] = 256313, + [SMALL_STATE(4175)] = 256348, + [SMALL_STATE(4176)] = 256383, + [SMALL_STATE(4177)] = 256416, + [SMALL_STATE(4178)] = 256451, + [SMALL_STATE(4179)] = 256486, + [SMALL_STATE(4180)] = 256521, + [SMALL_STATE(4181)] = 256554, + [SMALL_STATE(4182)] = 256583, + [SMALL_STATE(4183)] = 256618, + [SMALL_STATE(4184)] = 256653, + [SMALL_STATE(4185)] = 256688, + [SMALL_STATE(4186)] = 256723, + [SMALL_STATE(4187)] = 256758, + [SMALL_STATE(4188)] = 256793, + [SMALL_STATE(4189)] = 256828, + [SMALL_STATE(4190)] = 256863, + [SMALL_STATE(4191)] = 256898, + [SMALL_STATE(4192)] = 256931, + [SMALL_STATE(4193)] = 256966, + [SMALL_STATE(4194)] = 256989, + [SMALL_STATE(4195)] = 257024, + [SMALL_STATE(4196)] = 257059, + [SMALL_STATE(4197)] = 257090, + [SMALL_STATE(4198)] = 257125, + [SMALL_STATE(4199)] = 257160, + [SMALL_STATE(4200)] = 257195, + [SMALL_STATE(4201)] = 257230, + [SMALL_STATE(4202)] = 257265, + [SMALL_STATE(4203)] = 257300, + [SMALL_STATE(4204)] = 257335, + [SMALL_STATE(4205)] = 257364, + [SMALL_STATE(4206)] = 257399, + [SMALL_STATE(4207)] = 257434, + [SMALL_STATE(4208)] = 257469, + [SMALL_STATE(4209)] = 257504, + [SMALL_STATE(4210)] = 257539, + [SMALL_STATE(4211)] = 257574, + [SMALL_STATE(4212)] = 257609, + [SMALL_STATE(4213)] = 257644, + [SMALL_STATE(4214)] = 257675, + [SMALL_STATE(4215)] = 257710, + [SMALL_STATE(4216)] = 257745, + [SMALL_STATE(4217)] = 257780, + [SMALL_STATE(4218)] = 257811, + [SMALL_STATE(4219)] = 257846, + [SMALL_STATE(4220)] = 257881, + [SMALL_STATE(4221)] = 257916, + [SMALL_STATE(4222)] = 257951, + [SMALL_STATE(4223)] = 257986, + [SMALL_STATE(4224)] = 258021, + [SMALL_STATE(4225)] = 258044, + [SMALL_STATE(4226)] = 258079, + [SMALL_STATE(4227)] = 258114, + [SMALL_STATE(4228)] = 258149, + [SMALL_STATE(4229)] = 258184, + [SMALL_STATE(4230)] = 258219, + [SMALL_STATE(4231)] = 258254, + [SMALL_STATE(4232)] = 258289, + [SMALL_STATE(4233)] = 258324, + [SMALL_STATE(4234)] = 258357, + [SMALL_STATE(4235)] = 258392, + [SMALL_STATE(4236)] = 258415, + [SMALL_STATE(4237)] = 258448, + [SMALL_STATE(4238)] = 258471, + [SMALL_STATE(4239)] = 258494, + [SMALL_STATE(4240)] = 258529, + [SMALL_STATE(4241)] = 258552, + [SMALL_STATE(4242)] = 258575, + [SMALL_STATE(4243)] = 258610, + [SMALL_STATE(4244)] = 258645, + [SMALL_STATE(4245)] = 258680, + [SMALL_STATE(4246)] = 258715, + [SMALL_STATE(4247)] = 258750, + [SMALL_STATE(4248)] = 258785, + [SMALL_STATE(4249)] = 258820, + [SMALL_STATE(4250)] = 258855, + [SMALL_STATE(4251)] = 258878, + [SMALL_STATE(4252)] = 258901, + [SMALL_STATE(4253)] = 258936, + [SMALL_STATE(4254)] = 258971, + [SMALL_STATE(4255)] = 259006, + [SMALL_STATE(4256)] = 259041, + [SMALL_STATE(4257)] = 259076, + [SMALL_STATE(4258)] = 259109, + [SMALL_STATE(4259)] = 259144, + [SMALL_STATE(4260)] = 259175, + [SMALL_STATE(4261)] = 259210, + [SMALL_STATE(4262)] = 259245, + [SMALL_STATE(4263)] = 259280, + [SMALL_STATE(4264)] = 259315, + [SMALL_STATE(4265)] = 259350, + [SMALL_STATE(4266)] = 259385, + [SMALL_STATE(4267)] = 259420, + [SMALL_STATE(4268)] = 259444, + [SMALL_STATE(4269)] = 259476, + [SMALL_STATE(4270)] = 259506, + [SMALL_STATE(4271)] = 259532, + [SMALL_STATE(4272)] = 259562, + [SMALL_STATE(4273)] = 259594, + [SMALL_STATE(4274)] = 259626, + [SMALL_STATE(4275)] = 259656, + [SMALL_STATE(4276)] = 259686, + [SMALL_STATE(4277)] = 259712, + [SMALL_STATE(4278)] = 259742, + [SMALL_STATE(4279)] = 259772, + [SMALL_STATE(4280)] = 259804, + [SMALL_STATE(4281)] = 259836, + [SMALL_STATE(4282)] = 259860, + [SMALL_STATE(4283)] = 259884, + [SMALL_STATE(4284)] = 259914, + [SMALL_STATE(4285)] = 259944, + [SMALL_STATE(4286)] = 259972, + [SMALL_STATE(4287)] = 260000, + [SMALL_STATE(4288)] = 260028, + [SMALL_STATE(4289)] = 260060, + [SMALL_STATE(4290)] = 260090, + [SMALL_STATE(4291)] = 260122, + [SMALL_STATE(4292)] = 260154, + [SMALL_STATE(4293)] = 260178, + [SMALL_STATE(4294)] = 260206, + [SMALL_STATE(4295)] = 260238, + [SMALL_STATE(4296)] = 260268, + [SMALL_STATE(4297)] = 260298, + [SMALL_STATE(4298)] = 260326, + [SMALL_STATE(4299)] = 260358, + [SMALL_STATE(4300)] = 260384, + [SMALL_STATE(4301)] = 260416, + [SMALL_STATE(4302)] = 260448, + [SMALL_STATE(4303)] = 260478, + [SMALL_STATE(4304)] = 260502, + [SMALL_STATE(4305)] = 260530, + [SMALL_STATE(4306)] = 260562, + [SMALL_STATE(4307)] = 260594, + [SMALL_STATE(4308)] = 260626, + [SMALL_STATE(4309)] = 260652, + [SMALL_STATE(4310)] = 260682, + [SMALL_STATE(4311)] = 260710, + [SMALL_STATE(4312)] = 260736, + [SMALL_STATE(4313)] = 260766, + [SMALL_STATE(4314)] = 260798, + [SMALL_STATE(4315)] = 260828, + [SMALL_STATE(4316)] = 260858, + [SMALL_STATE(4317)] = 260886, + [SMALL_STATE(4318)] = 260914, + [SMALL_STATE(4319)] = 260944, + [SMALL_STATE(4320)] = 260968, + [SMALL_STATE(4321)] = 260990, + [SMALL_STATE(4322)] = 261022, + [SMALL_STATE(4323)] = 261046, + [SMALL_STATE(4324)] = 261076, + [SMALL_STATE(4325)] = 261104, + [SMALL_STATE(4326)] = 261126, + [SMALL_STATE(4327)] = 261158, + [SMALL_STATE(4328)] = 261188, + [SMALL_STATE(4329)] = 261216, + [SMALL_STATE(4330)] = 261246, + [SMALL_STATE(4331)] = 261268, + [SMALL_STATE(4332)] = 261300, + [SMALL_STATE(4333)] = 261322, + [SMALL_STATE(4334)] = 261350, + [SMALL_STATE(4335)] = 261372, + [SMALL_STATE(4336)] = 261404, + [SMALL_STATE(4337)] = 261434, + [SMALL_STATE(4338)] = 261462, + [SMALL_STATE(4339)] = 261490, + [SMALL_STATE(4340)] = 261522, + [SMALL_STATE(4341)] = 261554, + [SMALL_STATE(4342)] = 261582, + [SMALL_STATE(4343)] = 261610, + [SMALL_STATE(4344)] = 261640, + [SMALL_STATE(4345)] = 261672, + [SMALL_STATE(4346)] = 261702, + [SMALL_STATE(4347)] = 261734, + [SMALL_STATE(4348)] = 261764, + [SMALL_STATE(4349)] = 261794, + [SMALL_STATE(4350)] = 261824, + [SMALL_STATE(4351)] = 261854, + [SMALL_STATE(4352)] = 261880, + [SMALL_STATE(4353)] = 261912, + [SMALL_STATE(4354)] = 261940, + [SMALL_STATE(4355)] = 261972, + [SMALL_STATE(4356)] = 262004, + [SMALL_STATE(4357)] = 262034, + [SMALL_STATE(4358)] = 262064, + [SMALL_STATE(4359)] = 262094, + [SMALL_STATE(4360)] = 262118, + [SMALL_STATE(4361)] = 262146, + [SMALL_STATE(4362)] = 262178, + [SMALL_STATE(4363)] = 262202, + [SMALL_STATE(4364)] = 262232, + [SMALL_STATE(4365)] = 262262, + [SMALL_STATE(4366)] = 262294, + [SMALL_STATE(4367)] = 262324, + [SMALL_STATE(4368)] = 262352, + [SMALL_STATE(4369)] = 262380, + [SMALL_STATE(4370)] = 262412, + [SMALL_STATE(4371)] = 262442, + [SMALL_STATE(4372)] = 262470, + [SMALL_STATE(4373)] = 262502, + [SMALL_STATE(4374)] = 262530, + [SMALL_STATE(4375)] = 262560, + [SMALL_STATE(4376)] = 262592, + [SMALL_STATE(4377)] = 262624, + [SMALL_STATE(4378)] = 262654, + [SMALL_STATE(4379)] = 262684, + [SMALL_STATE(4380)] = 262708, + [SMALL_STATE(4381)] = 262738, + [SMALL_STATE(4382)] = 262766, + [SMALL_STATE(4383)] = 262794, + [SMALL_STATE(4384)] = 262824, + [SMALL_STATE(4385)] = 262848, + [SMALL_STATE(4386)] = 262872, + [SMALL_STATE(4387)] = 262902, + [SMALL_STATE(4388)] = 262924, + [SMALL_STATE(4389)] = 262956, + [SMALL_STATE(4390)] = 262980, + [SMALL_STATE(4391)] = 263002, + [SMALL_STATE(4392)] = 263024, + [SMALL_STATE(4393)] = 263052, + [SMALL_STATE(4394)] = 263080, + [SMALL_STATE(4395)] = 263110, + [SMALL_STATE(4396)] = 263134, + [SMALL_STATE(4397)] = 263164, + [SMALL_STATE(4398)] = 263194, + [SMALL_STATE(4399)] = 263224, + [SMALL_STATE(4400)] = 263256, + [SMALL_STATE(4401)] = 263288, + [SMALL_STATE(4402)] = 263318, + [SMALL_STATE(4403)] = 263348, + [SMALL_STATE(4404)] = 263380, + [SMALL_STATE(4405)] = 263410, + [SMALL_STATE(4406)] = 263440, + [SMALL_STATE(4407)] = 263470, + [SMALL_STATE(4408)] = 263494, + [SMALL_STATE(4409)] = 263518, + [SMALL_STATE(4410)] = 263548, + [SMALL_STATE(4411)] = 263570, + [SMALL_STATE(4412)] = 263596, + [SMALL_STATE(4413)] = 263624, + [SMALL_STATE(4414)] = 263654, + [SMALL_STATE(4415)] = 263686, + [SMALL_STATE(4416)] = 263718, + [SMALL_STATE(4417)] = 263746, + [SMALL_STATE(4418)] = 263778, + [SMALL_STATE(4419)] = 263800, + [SMALL_STATE(4420)] = 263824, + [SMALL_STATE(4421)] = 263850, + [SMALL_STATE(4422)] = 263880, + [SMALL_STATE(4423)] = 263912, + [SMALL_STATE(4424)] = 263936, + [SMALL_STATE(4425)] = 263966, + [SMALL_STATE(4426)] = 263996, + [SMALL_STATE(4427)] = 264018, + [SMALL_STATE(4428)] = 264044, + [SMALL_STATE(4429)] = 264076, + [SMALL_STATE(4430)] = 264108, + [SMALL_STATE(4431)] = 264138, + [SMALL_STATE(4432)] = 264166, + [SMALL_STATE(4433)] = 264198, + [SMALL_STATE(4434)] = 264230, + [SMALL_STATE(4435)] = 264258, + [SMALL_STATE(4436)] = 264290, + [SMALL_STATE(4437)] = 264320, + [SMALL_STATE(4438)] = 264352, + [SMALL_STATE(4439)] = 264384, + [SMALL_STATE(4440)] = 264414, + [SMALL_STATE(4441)] = 264444, + [SMALL_STATE(4442)] = 264468, + [SMALL_STATE(4443)] = 264498, + [SMALL_STATE(4444)] = 264530, + [SMALL_STATE(4445)] = 264560, + [SMALL_STATE(4446)] = 264592, + [SMALL_STATE(4447)] = 264620, + [SMALL_STATE(4448)] = 264652, + [SMALL_STATE(4449)] = 264676, + [SMALL_STATE(4450)] = 264706, + [SMALL_STATE(4451)] = 264730, + [SMALL_STATE(4452)] = 264756, + [SMALL_STATE(4453)] = 264786, + [SMALL_STATE(4454)] = 264818, + [SMALL_STATE(4455)] = 264848, + [SMALL_STATE(4456)] = 264878, + [SMALL_STATE(4457)] = 264908, + [SMALL_STATE(4458)] = 264938, + [SMALL_STATE(4459)] = 264968, + [SMALL_STATE(4460)] = 264998, + [SMALL_STATE(4461)] = 265030, + [SMALL_STATE(4462)] = 265056, + [SMALL_STATE(4463)] = 265086, + [SMALL_STATE(4464)] = 265118, + [SMALL_STATE(4465)] = 265150, + [SMALL_STATE(4466)] = 265182, + [SMALL_STATE(4467)] = 265204, + [SMALL_STATE(4468)] = 265228, + [SMALL_STATE(4469)] = 265256, + [SMALL_STATE(4470)] = 265288, + [SMALL_STATE(4471)] = 265320, + [SMALL_STATE(4472)] = 265352, + [SMALL_STATE(4473)] = 265384, + [SMALL_STATE(4474)] = 265416, + [SMALL_STATE(4475)] = 265440, + [SMALL_STATE(4476)] = 265468, + [SMALL_STATE(4477)] = 265500, + [SMALL_STATE(4478)] = 265524, + [SMALL_STATE(4479)] = 265554, + [SMALL_STATE(4480)] = 265584, + [SMALL_STATE(4481)] = 265614, + [SMALL_STATE(4482)] = 265646, + [SMALL_STATE(4483)] = 265678, + [SMALL_STATE(4484)] = 265710, + [SMALL_STATE(4485)] = 265734, + [SMALL_STATE(4486)] = 265766, + [SMALL_STATE(4487)] = 265794, + [SMALL_STATE(4488)] = 265824, + [SMALL_STATE(4489)] = 265856, + [SMALL_STATE(4490)] = 265888, + [SMALL_STATE(4491)] = 265918, + [SMALL_STATE(4492)] = 265950, + [SMALL_STATE(4493)] = 265978, + [SMALL_STATE(4494)] = 266002, + [SMALL_STATE(4495)] = 266034, + [SMALL_STATE(4496)] = 266066, + [SMALL_STATE(4497)] = 266096, + [SMALL_STATE(4498)] = 266128, + [SMALL_STATE(4499)] = 266158, + [SMALL_STATE(4500)] = 266188, + [SMALL_STATE(4501)] = 266216, + [SMALL_STATE(4502)] = 266248, + [SMALL_STATE(4503)] = 266280, + [SMALL_STATE(4504)] = 266308, + [SMALL_STATE(4505)] = 266340, + [SMALL_STATE(4506)] = 266370, + [SMALL_STATE(4507)] = 266400, + [SMALL_STATE(4508)] = 266432, + [SMALL_STATE(4509)] = 266460, + [SMALL_STATE(4510)] = 266490, + [SMALL_STATE(4511)] = 266518, + [SMALL_STATE(4512)] = 266542, + [SMALL_STATE(4513)] = 266566, + [SMALL_STATE(4514)] = 266590, + [SMALL_STATE(4515)] = 266620, + [SMALL_STATE(4516)] = 266650, + [SMALL_STATE(4517)] = 266674, + [SMALL_STATE(4518)] = 266704, + [SMALL_STATE(4519)] = 266736, + [SMALL_STATE(4520)] = 266766, + [SMALL_STATE(4521)] = 266796, + [SMALL_STATE(4522)] = 266828, + [SMALL_STATE(4523)] = 266858, + [SMALL_STATE(4524)] = 266880, + [SMALL_STATE(4525)] = 266910, + [SMALL_STATE(4526)] = 266940, + [SMALL_STATE(4527)] = 266972, + [SMALL_STATE(4528)] = 267002, + [SMALL_STATE(4529)] = 267032, + [SMALL_STATE(4530)] = 267064, + [SMALL_STATE(4531)] = 267094, + [SMALL_STATE(4532)] = 267124, + [SMALL_STATE(4533)] = 267156, + [SMALL_STATE(4534)] = 267186, + [SMALL_STATE(4535)] = 267216, + [SMALL_STATE(4536)] = 267248, + [SMALL_STATE(4537)] = 267280, + [SMALL_STATE(4538)] = 267308, + [SMALL_STATE(4539)] = 267336, + [SMALL_STATE(4540)] = 267366, + [SMALL_STATE(4541)] = 267396, + [SMALL_STATE(4542)] = 267426, + [SMALL_STATE(4543)] = 267458, + [SMALL_STATE(4544)] = 267490, + [SMALL_STATE(4545)] = 267522, + [SMALL_STATE(4546)] = 267550, + [SMALL_STATE(4547)] = 267572, + [SMALL_STATE(4548)] = 267597, + [SMALL_STATE(4549)] = 267622, + [SMALL_STATE(4550)] = 267645, + [SMALL_STATE(4551)] = 267670, + [SMALL_STATE(4552)] = 267691, + [SMALL_STATE(4553)] = 267720, + [SMALL_STATE(4554)] = 267749, + [SMALL_STATE(4555)] = 267778, + [SMALL_STATE(4556)] = 267807, + [SMALL_STATE(4557)] = 267834, + [SMALL_STATE(4558)] = 267863, + [SMALL_STATE(4559)] = 267892, + [SMALL_STATE(4560)] = 267919, + [SMALL_STATE(4561)] = 267948, + [SMALL_STATE(4562)] = 267975, + [SMALL_STATE(4563)] = 268004, + [SMALL_STATE(4564)] = 268033, + [SMALL_STATE(4565)] = 268062, + [SMALL_STATE(4566)] = 268089, + [SMALL_STATE(4567)] = 268118, + [SMALL_STATE(4568)] = 268147, + [SMALL_STATE(4569)] = 268170, + [SMALL_STATE(4570)] = 268199, + [SMALL_STATE(4571)] = 268224, + [SMALL_STATE(4572)] = 268249, + [SMALL_STATE(4573)] = 268274, + [SMALL_STATE(4574)] = 268303, + [SMALL_STATE(4575)] = 268324, + [SMALL_STATE(4576)] = 268353, + [SMALL_STATE(4577)] = 268382, + [SMALL_STATE(4578)] = 268411, + [SMALL_STATE(4579)] = 268432, + [SMALL_STATE(4580)] = 268461, + [SMALL_STATE(4581)] = 268490, + [SMALL_STATE(4582)] = 268519, + [SMALL_STATE(4583)] = 268540, + [SMALL_STATE(4584)] = 268565, + [SMALL_STATE(4585)] = 268594, + [SMALL_STATE(4586)] = 268623, + [SMALL_STATE(4587)] = 268652, + [SMALL_STATE(4588)] = 268677, + [SMALL_STATE(4589)] = 268706, + [SMALL_STATE(4590)] = 268735, + [SMALL_STATE(4591)] = 268758, + [SMALL_STATE(4592)] = 268785, + [SMALL_STATE(4593)] = 268806, + [SMALL_STATE(4594)] = 268833, + [SMALL_STATE(4595)] = 268854, + [SMALL_STATE(4596)] = 268879, + [SMALL_STATE(4597)] = 268900, + [SMALL_STATE(4598)] = 268925, + [SMALL_STATE(4599)] = 268950, + [SMALL_STATE(4600)] = 268971, + [SMALL_STATE(4601)] = 269000, + [SMALL_STATE(4602)] = 269027, + [SMALL_STATE(4603)] = 269052, + [SMALL_STATE(4604)] = 269081, + [SMALL_STATE(4605)] = 269108, + [SMALL_STATE(4606)] = 269129, + [SMALL_STATE(4607)] = 269152, + [SMALL_STATE(4608)] = 269173, + [SMALL_STATE(4609)] = 269194, + [SMALL_STATE(4610)] = 269219, + [SMALL_STATE(4611)] = 269240, + [SMALL_STATE(4612)] = 269269, + [SMALL_STATE(4613)] = 269294, + [SMALL_STATE(4614)] = 269323, + [SMALL_STATE(4615)] = 269348, + [SMALL_STATE(4616)] = 269377, + [SMALL_STATE(4617)] = 269406, + [SMALL_STATE(4618)] = 269435, + [SMALL_STATE(4619)] = 269464, + [SMALL_STATE(4620)] = 269487, + [SMALL_STATE(4621)] = 269512, + [SMALL_STATE(4622)] = 269537, + [SMALL_STATE(4623)] = 269566, + [SMALL_STATE(4624)] = 269595, + [SMALL_STATE(4625)] = 269624, + [SMALL_STATE(4626)] = 269653, + [SMALL_STATE(4627)] = 269682, + [SMALL_STATE(4628)] = 269709, + [SMALL_STATE(4629)] = 269734, + [SMALL_STATE(4630)] = 269757, + [SMALL_STATE(4631)] = 269778, + [SMALL_STATE(4632)] = 269803, + [SMALL_STATE(4633)] = 269830, + [SMALL_STATE(4634)] = 269859, + [SMALL_STATE(4635)] = 269886, + [SMALL_STATE(4636)] = 269915, + [SMALL_STATE(4637)] = 269942, + [SMALL_STATE(4638)] = 269967, + [SMALL_STATE(4639)] = 269990, + [SMALL_STATE(4640)] = 270019, + [SMALL_STATE(4641)] = 270042, + [SMALL_STATE(4642)] = 270071, + [SMALL_STATE(4643)] = 270100, + [SMALL_STATE(4644)] = 270123, + [SMALL_STATE(4645)] = 270152, + [SMALL_STATE(4646)] = 270177, + [SMALL_STATE(4647)] = 270204, + [SMALL_STATE(4648)] = 270227, + [SMALL_STATE(4649)] = 270252, + [SMALL_STATE(4650)] = 270281, + [SMALL_STATE(4651)] = 270308, + [SMALL_STATE(4652)] = 270335, + [SMALL_STATE(4653)] = 270364, + [SMALL_STATE(4654)] = 270393, + [SMALL_STATE(4655)] = 270418, + [SMALL_STATE(4656)] = 270441, + [SMALL_STATE(4657)] = 270467, + [SMALL_STATE(4658)] = 270487, + [SMALL_STATE(4659)] = 270513, + [SMALL_STATE(4660)] = 270537, + [SMALL_STATE(4661)] = 270563, + [SMALL_STATE(4662)] = 270587, + [SMALL_STATE(4663)] = 270607, + [SMALL_STATE(4664)] = 270631, + [SMALL_STATE(4665)] = 270655, + [SMALL_STATE(4666)] = 270679, + [SMALL_STATE(4667)] = 270703, + [SMALL_STATE(4668)] = 270727, + [SMALL_STATE(4669)] = 270753, + [SMALL_STATE(4670)] = 270777, + [SMALL_STATE(4671)] = 270803, + [SMALL_STATE(4672)] = 270827, + [SMALL_STATE(4673)] = 270847, + [SMALL_STATE(4674)] = 270869, + [SMALL_STATE(4675)] = 270893, + [SMALL_STATE(4676)] = 270919, + [SMALL_STATE(4677)] = 270943, + [SMALL_STATE(4678)] = 270963, + [SMALL_STATE(4679)] = 270983, + [SMALL_STATE(4680)] = 271005, + [SMALL_STATE(4681)] = 271027, + [SMALL_STATE(4682)] = 271049, + [SMALL_STATE(4683)] = 271071, + [SMALL_STATE(4684)] = 271091, + [SMALL_STATE(4685)] = 271111, + [SMALL_STATE(4686)] = 271137, + [SMALL_STATE(4687)] = 271157, + [SMALL_STATE(4688)] = 271183, + [SMALL_STATE(4689)] = 271209, + [SMALL_STATE(4690)] = 271235, + [SMALL_STATE(4691)] = 271261, + [SMALL_STATE(4692)] = 271285, + [SMALL_STATE(4693)] = 271311, + [SMALL_STATE(4694)] = 271337, + [SMALL_STATE(4695)] = 271363, + [SMALL_STATE(4696)] = 271383, + [SMALL_STATE(4697)] = 271409, + [SMALL_STATE(4698)] = 271435, + [SMALL_STATE(4699)] = 271459, + [SMALL_STATE(4700)] = 271485, + [SMALL_STATE(4701)] = 271511, + [SMALL_STATE(4702)] = 271535, + [SMALL_STATE(4703)] = 271559, + [SMALL_STATE(4704)] = 271585, + [SMALL_STATE(4705)] = 271611, + [SMALL_STATE(4706)] = 271637, + [SMALL_STATE(4707)] = 271663, + [SMALL_STATE(4708)] = 271683, + [SMALL_STATE(4709)] = 271709, + [SMALL_STATE(4710)] = 271735, + [SMALL_STATE(4711)] = 271759, + [SMALL_STATE(4712)] = 271783, + [SMALL_STATE(4713)] = 271809, + [SMALL_STATE(4714)] = 271835, + [SMALL_STATE(4715)] = 271859, + [SMALL_STATE(4716)] = 271885, + [SMALL_STATE(4717)] = 271911, + [SMALL_STATE(4718)] = 271937, + [SMALL_STATE(4719)] = 271961, + [SMALL_STATE(4720)] = 271985, + [SMALL_STATE(4721)] = 272005, + [SMALL_STATE(4722)] = 272031, + [SMALL_STATE(4723)] = 272057, + [SMALL_STATE(4724)] = 272083, + [SMALL_STATE(4725)] = 272109, + [SMALL_STATE(4726)] = 272135, + [SMALL_STATE(4727)] = 272159, + [SMALL_STATE(4728)] = 272183, + [SMALL_STATE(4729)] = 272207, + [SMALL_STATE(4730)] = 272231, + [SMALL_STATE(4731)] = 272255, + [SMALL_STATE(4732)] = 272279, + [SMALL_STATE(4733)] = 272303, + [SMALL_STATE(4734)] = 272327, + [SMALL_STATE(4735)] = 272351, + [SMALL_STATE(4736)] = 272375, + [SMALL_STATE(4737)] = 272401, + [SMALL_STATE(4738)] = 272427, + [SMALL_STATE(4739)] = 272453, + [SMALL_STATE(4740)] = 272479, + [SMALL_STATE(4741)] = 272505, + [SMALL_STATE(4742)] = 272531, + [SMALL_STATE(4743)] = 272557, + [SMALL_STATE(4744)] = 272583, + [SMALL_STATE(4745)] = 272609, + [SMALL_STATE(4746)] = 272635, + [SMALL_STATE(4747)] = 272661, + [SMALL_STATE(4748)] = 272687, + [SMALL_STATE(4749)] = 272713, + [SMALL_STATE(4750)] = 272739, + [SMALL_STATE(4751)] = 272765, + [SMALL_STATE(4752)] = 272791, + [SMALL_STATE(4753)] = 272817, + [SMALL_STATE(4754)] = 272837, + [SMALL_STATE(4755)] = 272857, + [SMALL_STATE(4756)] = 272877, + [SMALL_STATE(4757)] = 272903, + [SMALL_STATE(4758)] = 272929, + [SMALL_STATE(4759)] = 272955, + [SMALL_STATE(4760)] = 272981, + [SMALL_STATE(4761)] = 273007, + [SMALL_STATE(4762)] = 273033, + [SMALL_STATE(4763)] = 273059, + [SMALL_STATE(4764)] = 273079, + [SMALL_STATE(4765)] = 273099, + [SMALL_STATE(4766)] = 273119, + [SMALL_STATE(4767)] = 273145, + [SMALL_STATE(4768)] = 273171, + [SMALL_STATE(4769)] = 273191, + [SMALL_STATE(4770)] = 273211, + [SMALL_STATE(4771)] = 273237, + [SMALL_STATE(4772)] = 273263, + [SMALL_STATE(4773)] = 273289, + [SMALL_STATE(4774)] = 273315, + [SMALL_STATE(4775)] = 273341, + [SMALL_STATE(4776)] = 273367, + [SMALL_STATE(4777)] = 273393, + [SMALL_STATE(4778)] = 273417, + [SMALL_STATE(4779)] = 273437, + [SMALL_STATE(4780)] = 273463, + [SMALL_STATE(4781)] = 273489, + [SMALL_STATE(4782)] = 273515, + [SMALL_STATE(4783)] = 273535, + [SMALL_STATE(4784)] = 273561, + [SMALL_STATE(4785)] = 273581, + [SMALL_STATE(4786)] = 273607, + [SMALL_STATE(4787)] = 273627, + [SMALL_STATE(4788)] = 273653, + [SMALL_STATE(4789)] = 273673, + [SMALL_STATE(4790)] = 273693, + [SMALL_STATE(4791)] = 273719, + [SMALL_STATE(4792)] = 273745, + [SMALL_STATE(4793)] = 273771, + [SMALL_STATE(4794)] = 273791, + [SMALL_STATE(4795)] = 273811, + [SMALL_STATE(4796)] = 273831, + [SMALL_STATE(4797)] = 273851, + [SMALL_STATE(4798)] = 273871, + [SMALL_STATE(4799)] = 273897, + [SMALL_STATE(4800)] = 273917, + [SMALL_STATE(4801)] = 273943, + [SMALL_STATE(4802)] = 273963, + [SMALL_STATE(4803)] = 273983, + [SMALL_STATE(4804)] = 274003, + [SMALL_STATE(4805)] = 274027, + [SMALL_STATE(4806)] = 274053, + [SMALL_STATE(4807)] = 274079, + [SMALL_STATE(4808)] = 274099, + [SMALL_STATE(4809)] = 274119, + [SMALL_STATE(4810)] = 274145, + [SMALL_STATE(4811)] = 274165, + [SMALL_STATE(4812)] = 274185, + [SMALL_STATE(4813)] = 274205, + [SMALL_STATE(4814)] = 274231, + [SMALL_STATE(4815)] = 274251, + [SMALL_STATE(4816)] = 274271, + [SMALL_STATE(4817)] = 274297, + [SMALL_STATE(4818)] = 274317, + [SMALL_STATE(4819)] = 274343, + [SMALL_STATE(4820)] = 274369, + [SMALL_STATE(4821)] = 274395, + [SMALL_STATE(4822)] = 274421, + [SMALL_STATE(4823)] = 274441, + [SMALL_STATE(4824)] = 274461, + [SMALL_STATE(4825)] = 274487, + [SMALL_STATE(4826)] = 274507, + [SMALL_STATE(4827)] = 274527, + [SMALL_STATE(4828)] = 274547, + [SMALL_STATE(4829)] = 274567, + [SMALL_STATE(4830)] = 274587, + [SMALL_STATE(4831)] = 274607, + [SMALL_STATE(4832)] = 274633, + [SMALL_STATE(4833)] = 274657, + [SMALL_STATE(4834)] = 274683, + [SMALL_STATE(4835)] = 274703, + [SMALL_STATE(4836)] = 274723, + [SMALL_STATE(4837)] = 274749, + [SMALL_STATE(4838)] = 274769, + [SMALL_STATE(4839)] = 274789, + [SMALL_STATE(4840)] = 274815, + [SMALL_STATE(4841)] = 274841, + [SMALL_STATE(4842)] = 274861, + [SMALL_STATE(4843)] = 274881, + [SMALL_STATE(4844)] = 274901, + [SMALL_STATE(4845)] = 274921, + [SMALL_STATE(4846)] = 274941, + [SMALL_STATE(4847)] = 274961, + [SMALL_STATE(4848)] = 274987, + [SMALL_STATE(4849)] = 275013, + [SMALL_STATE(4850)] = 275039, + [SMALL_STATE(4851)] = 275065, + [SMALL_STATE(4852)] = 275091, + [SMALL_STATE(4853)] = 275117, + [SMALL_STATE(4854)] = 275143, + [SMALL_STATE(4855)] = 275169, + [SMALL_STATE(4856)] = 275195, + [SMALL_STATE(4857)] = 275221, + [SMALL_STATE(4858)] = 275241, + [SMALL_STATE(4859)] = 275261, + [SMALL_STATE(4860)] = 275287, + [SMALL_STATE(4861)] = 275313, + [SMALL_STATE(4862)] = 275333, + [SMALL_STATE(4863)] = 275359, + [SMALL_STATE(4864)] = 275385, + [SMALL_STATE(4865)] = 275411, + [SMALL_STATE(4866)] = 275431, + [SMALL_STATE(4867)] = 275457, + [SMALL_STATE(4868)] = 275477, + [SMALL_STATE(4869)] = 275497, + [SMALL_STATE(4870)] = 275523, + [SMALL_STATE(4871)] = 275549, + [SMALL_STATE(4872)] = 275569, + [SMALL_STATE(4873)] = 275589, + [SMALL_STATE(4874)] = 275615, + [SMALL_STATE(4875)] = 275641, + [SMALL_STATE(4876)] = 275667, + [SMALL_STATE(4877)] = 275687, + [SMALL_STATE(4878)] = 275707, + [SMALL_STATE(4879)] = 275727, + [SMALL_STATE(4880)] = 275753, + [SMALL_STATE(4881)] = 275779, + [SMALL_STATE(4882)] = 275799, + [SMALL_STATE(4883)] = 275819, + [SMALL_STATE(4884)] = 275839, + [SMALL_STATE(4885)] = 275865, + [SMALL_STATE(4886)] = 275891, + [SMALL_STATE(4887)] = 275911, + [SMALL_STATE(4888)] = 275931, + [SMALL_STATE(4889)] = 275951, + [SMALL_STATE(4890)] = 275971, + [SMALL_STATE(4891)] = 275991, + [SMALL_STATE(4892)] = 276017, + [SMALL_STATE(4893)] = 276043, + [SMALL_STATE(4894)] = 276063, + [SMALL_STATE(4895)] = 276083, + [SMALL_STATE(4896)] = 276103, + [SMALL_STATE(4897)] = 276123, + [SMALL_STATE(4898)] = 276149, + [SMALL_STATE(4899)] = 276175, + [SMALL_STATE(4900)] = 276195, + [SMALL_STATE(4901)] = 276215, + [SMALL_STATE(4902)] = 276241, + [SMALL_STATE(4903)] = 276261, + [SMALL_STATE(4904)] = 276287, + [SMALL_STATE(4905)] = 276307, + [SMALL_STATE(4906)] = 276327, + [SMALL_STATE(4907)] = 276353, + [SMALL_STATE(4908)] = 276379, + [SMALL_STATE(4909)] = 276399, + [SMALL_STATE(4910)] = 276425, + [SMALL_STATE(4911)] = 276445, + [SMALL_STATE(4912)] = 276465, + [SMALL_STATE(4913)] = 276485, + [SMALL_STATE(4914)] = 276505, + [SMALL_STATE(4915)] = 276525, + [SMALL_STATE(4916)] = 276545, + [SMALL_STATE(4917)] = 276571, + [SMALL_STATE(4918)] = 276591, + [SMALL_STATE(4919)] = 276611, + [SMALL_STATE(4920)] = 276631, + [SMALL_STATE(4921)] = 276651, + [SMALL_STATE(4922)] = 276671, + [SMALL_STATE(4923)] = 276697, + [SMALL_STATE(4924)] = 276717, + [SMALL_STATE(4925)] = 276737, + [SMALL_STATE(4926)] = 276757, + [SMALL_STATE(4927)] = 276783, + [SMALL_STATE(4928)] = 276809, + [SMALL_STATE(4929)] = 276829, + [SMALL_STATE(4930)] = 276855, + [SMALL_STATE(4931)] = 276875, + [SMALL_STATE(4932)] = 276895, + [SMALL_STATE(4933)] = 276915, + [SMALL_STATE(4934)] = 276941, + [SMALL_STATE(4935)] = 276961, + [SMALL_STATE(4936)] = 276981, + [SMALL_STATE(4937)] = 277001, + [SMALL_STATE(4938)] = 277027, + [SMALL_STATE(4939)] = 277047, + [SMALL_STATE(4940)] = 277067, + [SMALL_STATE(4941)] = 277093, + [SMALL_STATE(4942)] = 277113, + [SMALL_STATE(4943)] = 277133, + [SMALL_STATE(4944)] = 277159, + [SMALL_STATE(4945)] = 277179, + [SMALL_STATE(4946)] = 277199, + [SMALL_STATE(4947)] = 277225, + [SMALL_STATE(4948)] = 277245, + [SMALL_STATE(4949)] = 277265, + [SMALL_STATE(4950)] = 277285, + [SMALL_STATE(4951)] = 277311, + [SMALL_STATE(4952)] = 277331, + [SMALL_STATE(4953)] = 277351, + [SMALL_STATE(4954)] = 277371, + [SMALL_STATE(4955)] = 277391, + [SMALL_STATE(4956)] = 277415, + [SMALL_STATE(4957)] = 277435, + [SMALL_STATE(4958)] = 277455, + [SMALL_STATE(4959)] = 277481, + [SMALL_STATE(4960)] = 277501, + [SMALL_STATE(4961)] = 277521, + [SMALL_STATE(4962)] = 277541, + [SMALL_STATE(4963)] = 277561, + [SMALL_STATE(4964)] = 277581, + [SMALL_STATE(4965)] = 277601, + [SMALL_STATE(4966)] = 277621, + [SMALL_STATE(4967)] = 277641, + [SMALL_STATE(4968)] = 277661, + [SMALL_STATE(4969)] = 277685, + [SMALL_STATE(4970)] = 277711, + [SMALL_STATE(4971)] = 277737, + [SMALL_STATE(4972)] = 277759, + [SMALL_STATE(4973)] = 277785, + [SMALL_STATE(4974)] = 277811, + [SMALL_STATE(4975)] = 277837, + [SMALL_STATE(4976)] = 277863, + [SMALL_STATE(4977)] = 277883, + [SMALL_STATE(4978)] = 277909, + [SMALL_STATE(4979)] = 277935, + [SMALL_STATE(4980)] = 277961, + [SMALL_STATE(4981)] = 277987, + [SMALL_STATE(4982)] = 278009, + [SMALL_STATE(4983)] = 278029, + [SMALL_STATE(4984)] = 278049, + [SMALL_STATE(4985)] = 278075, + [SMALL_STATE(4986)] = 278101, + [SMALL_STATE(4987)] = 278121, + [SMALL_STATE(4988)] = 278147, + [SMALL_STATE(4989)] = 278173, + [SMALL_STATE(4990)] = 278193, + [SMALL_STATE(4991)] = 278213, + [SMALL_STATE(4992)] = 278233, + [SMALL_STATE(4993)] = 278253, + [SMALL_STATE(4994)] = 278279, + [SMALL_STATE(4995)] = 278305, + [SMALL_STATE(4996)] = 278325, + [SMALL_STATE(4997)] = 278345, + [SMALL_STATE(4998)] = 278371, + [SMALL_STATE(4999)] = 278397, + [SMALL_STATE(5000)] = 278417, + [SMALL_STATE(5001)] = 278437, + [SMALL_STATE(5002)] = 278457, + [SMALL_STATE(5003)] = 278483, + [SMALL_STATE(5004)] = 278509, + [SMALL_STATE(5005)] = 278535, + [SMALL_STATE(5006)] = 278555, + [SMALL_STATE(5007)] = 278581, + [SMALL_STATE(5008)] = 278601, + [SMALL_STATE(5009)] = 278621, + [SMALL_STATE(5010)] = 278647, + [SMALL_STATE(5011)] = 278673, + [SMALL_STATE(5012)] = 278695, + [SMALL_STATE(5013)] = 278715, + [SMALL_STATE(5014)] = 278735, + [SMALL_STATE(5015)] = 278755, + [SMALL_STATE(5016)] = 278775, + [SMALL_STATE(5017)] = 278801, + [SMALL_STATE(5018)] = 278827, + [SMALL_STATE(5019)] = 278847, + [SMALL_STATE(5020)] = 278867, + [SMALL_STATE(5021)] = 278887, + [SMALL_STATE(5022)] = 278907, + [SMALL_STATE(5023)] = 278933, + [SMALL_STATE(5024)] = 278959, + [SMALL_STATE(5025)] = 278979, + [SMALL_STATE(5026)] = 278999, + [SMALL_STATE(5027)] = 279019, + [SMALL_STATE(5028)] = 279039, + [SMALL_STATE(5029)] = 279059, + [SMALL_STATE(5030)] = 279079, + [SMALL_STATE(5031)] = 279105, + [SMALL_STATE(5032)] = 279131, + [SMALL_STATE(5033)] = 279157, + [SMALL_STATE(5034)] = 279183, + [SMALL_STATE(5035)] = 279205, + [SMALL_STATE(5036)] = 279231, + [SMALL_STATE(5037)] = 279257, + [SMALL_STATE(5038)] = 279283, + [SMALL_STATE(5039)] = 279309, + [SMALL_STATE(5040)] = 279335, + [SMALL_STATE(5041)] = 279361, + [SMALL_STATE(5042)] = 279387, + [SMALL_STATE(5043)] = 279413, + [SMALL_STATE(5044)] = 279433, + [SMALL_STATE(5045)] = 279453, + [SMALL_STATE(5046)] = 279479, + [SMALL_STATE(5047)] = 279505, + [SMALL_STATE(5048)] = 279529, + [SMALL_STATE(5049)] = 279555, + [SMALL_STATE(5050)] = 279579, + [SMALL_STATE(5051)] = 279599, + [SMALL_STATE(5052)] = 279625, + [SMALL_STATE(5053)] = 279651, + [SMALL_STATE(5054)] = 279677, + [SMALL_STATE(5055)] = 279703, + [SMALL_STATE(5056)] = 279729, + [SMALL_STATE(5057)] = 279755, + [SMALL_STATE(5058)] = 279781, + [SMALL_STATE(5059)] = 279807, + [SMALL_STATE(5060)] = 279833, + [SMALL_STATE(5061)] = 279859, + [SMALL_STATE(5062)] = 279885, + [SMALL_STATE(5063)] = 279909, + [SMALL_STATE(5064)] = 279933, + [SMALL_STATE(5065)] = 279959, + [SMALL_STATE(5066)] = 279985, + [SMALL_STATE(5067)] = 280005, + [SMALL_STATE(5068)] = 280029, + [SMALL_STATE(5069)] = 280053, + [SMALL_STATE(5070)] = 280079, + [SMALL_STATE(5071)] = 280105, + [SMALL_STATE(5072)] = 280131, + [SMALL_STATE(5073)] = 280157, + [SMALL_STATE(5074)] = 280183, + [SMALL_STATE(5075)] = 280205, + [SMALL_STATE(5076)] = 280229, + [SMALL_STATE(5077)] = 280255, + [SMALL_STATE(5078)] = 280281, + [SMALL_STATE(5079)] = 280301, + [SMALL_STATE(5080)] = 280327, + [SMALL_STATE(5081)] = 280353, + [SMALL_STATE(5082)] = 280379, + [SMALL_STATE(5083)] = 280405, + [SMALL_STATE(5084)] = 280431, + [SMALL_STATE(5085)] = 280457, + [SMALL_STATE(5086)] = 280483, + [SMALL_STATE(5087)] = 280503, + [SMALL_STATE(5088)] = 280525, + [SMALL_STATE(5089)] = 280551, + [SMALL_STATE(5090)] = 280577, + [SMALL_STATE(5091)] = 280603, + [SMALL_STATE(5092)] = 280629, + [SMALL_STATE(5093)] = 280653, + [SMALL_STATE(5094)] = 280679, + [SMALL_STATE(5095)] = 280705, + [SMALL_STATE(5096)] = 280731, + [SMALL_STATE(5097)] = 280757, + [SMALL_STATE(5098)] = 280783, + [SMALL_STATE(5099)] = 280807, + [SMALL_STATE(5100)] = 280833, + [SMALL_STATE(5101)] = 280859, + [SMALL_STATE(5102)] = 280885, + [SMALL_STATE(5103)] = 280911, + [SMALL_STATE(5104)] = 280937, + [SMALL_STATE(5105)] = 280963, + [SMALL_STATE(5106)] = 280989, + [SMALL_STATE(5107)] = 281009, + [SMALL_STATE(5108)] = 281035, + [SMALL_STATE(5109)] = 281061, + [SMALL_STATE(5110)] = 281087, + [SMALL_STATE(5111)] = 281113, + [SMALL_STATE(5112)] = 281139, + [SMALL_STATE(5113)] = 281165, + [SMALL_STATE(5114)] = 281191, + [SMALL_STATE(5115)] = 281217, + [SMALL_STATE(5116)] = 281243, + [SMALL_STATE(5117)] = 281269, + [SMALL_STATE(5118)] = 281293, + [SMALL_STATE(5119)] = 281315, + [SMALL_STATE(5120)] = 281341, + [SMALL_STATE(5121)] = 281367, + [SMALL_STATE(5122)] = 281393, + [SMALL_STATE(5123)] = 281413, + [SMALL_STATE(5124)] = 281439, + [SMALL_STATE(5125)] = 281465, + [SMALL_STATE(5126)] = 281491, + [SMALL_STATE(5127)] = 281517, + [SMALL_STATE(5128)] = 281543, + [SMALL_STATE(5129)] = 281569, + [SMALL_STATE(5130)] = 281595, + [SMALL_STATE(5131)] = 281621, + [SMALL_STATE(5132)] = 281647, + [SMALL_STATE(5133)] = 281669, + [SMALL_STATE(5134)] = 281695, + [SMALL_STATE(5135)] = 281717, + [SMALL_STATE(5136)] = 281741, + [SMALL_STATE(5137)] = 281761, + [SMALL_STATE(5138)] = 281787, + [SMALL_STATE(5139)] = 281809, + [SMALL_STATE(5140)] = 281833, + [SMALL_STATE(5141)] = 281859, + [SMALL_STATE(5142)] = 281885, + [SMALL_STATE(5143)] = 281909, + [SMALL_STATE(5144)] = 281935, + [SMALL_STATE(5145)] = 281955, + [SMALL_STATE(5146)] = 281981, + [SMALL_STATE(5147)] = 282005, + [SMALL_STATE(5148)] = 282031, + [SMALL_STATE(5149)] = 282057, + [SMALL_STATE(5150)] = 282083, + [SMALL_STATE(5151)] = 282103, + [SMALL_STATE(5152)] = 282123, + [SMALL_STATE(5153)] = 282149, + [SMALL_STATE(5154)] = 282175, + [SMALL_STATE(5155)] = 282199, + [SMALL_STATE(5156)] = 282225, + [SMALL_STATE(5157)] = 282245, + [SMALL_STATE(5158)] = 282265, + [SMALL_STATE(5159)] = 282285, + [SMALL_STATE(5160)] = 282305, + [SMALL_STATE(5161)] = 282331, + [SMALL_STATE(5162)] = 282351, + [SMALL_STATE(5163)] = 282377, + [SMALL_STATE(5164)] = 282401, + [SMALL_STATE(5165)] = 282423, + [SMALL_STATE(5166)] = 282445, + [SMALL_STATE(5167)] = 282467, + [SMALL_STATE(5168)] = 282493, + [SMALL_STATE(5169)] = 282517, + [SMALL_STATE(5170)] = 282543, + [SMALL_STATE(5171)] = 282567, + [SMALL_STATE(5172)] = 282593, + [SMALL_STATE(5173)] = 282619, + [SMALL_STATE(5174)] = 282641, + [SMALL_STATE(5175)] = 282667, + [SMALL_STATE(5176)] = 282693, + [SMALL_STATE(5177)] = 282719, + [SMALL_STATE(5178)] = 282745, + [SMALL_STATE(5179)] = 282771, + [SMALL_STATE(5180)] = 282793, + [SMALL_STATE(5181)] = 282819, + [SMALL_STATE(5182)] = 282845, + [SMALL_STATE(5183)] = 282871, + [SMALL_STATE(5184)] = 282897, + [SMALL_STATE(5185)] = 282923, + [SMALL_STATE(5186)] = 282949, + [SMALL_STATE(5187)] = 282975, + [SMALL_STATE(5188)] = 283001, + [SMALL_STATE(5189)] = 283027, + [SMALL_STATE(5190)] = 283049, + [SMALL_STATE(5191)] = 283071, + [SMALL_STATE(5192)] = 283091, + [SMALL_STATE(5193)] = 283117, + [SMALL_STATE(5194)] = 283143, + [SMALL_STATE(5195)] = 283169, + [SMALL_STATE(5196)] = 283189, + [SMALL_STATE(5197)] = 283211, + [SMALL_STATE(5198)] = 283237, + [SMALL_STATE(5199)] = 283263, + [SMALL_STATE(5200)] = 283289, + [SMALL_STATE(5201)] = 283315, + [SMALL_STATE(5202)] = 283339, + [SMALL_STATE(5203)] = 283361, + [SMALL_STATE(5204)] = 283383, + [SMALL_STATE(5205)] = 283409, + [SMALL_STATE(5206)] = 283435, + [SMALL_STATE(5207)] = 283461, + [SMALL_STATE(5208)] = 283487, + [SMALL_STATE(5209)] = 283509, + [SMALL_STATE(5210)] = 283529, + [SMALL_STATE(5211)] = 283555, + [SMALL_STATE(5212)] = 283581, + [SMALL_STATE(5213)] = 283607, + [SMALL_STATE(5214)] = 283626, + [SMALL_STATE(5215)] = 283649, + [SMALL_STATE(5216)] = 283670, + [SMALL_STATE(5217)] = 283689, + [SMALL_STATE(5218)] = 283710, + [SMALL_STATE(5219)] = 283733, + [SMALL_STATE(5220)] = 283754, + [SMALL_STATE(5221)] = 283777, + [SMALL_STATE(5222)] = 283800, + [SMALL_STATE(5223)] = 283821, + [SMALL_STATE(5224)] = 283844, + [SMALL_STATE(5225)] = 283863, + [SMALL_STATE(5226)] = 283886, + [SMALL_STATE(5227)] = 283909, + [SMALL_STATE(5228)] = 283928, + [SMALL_STATE(5229)] = 283951, + [SMALL_STATE(5230)] = 283974, + [SMALL_STATE(5231)] = 283997, + [SMALL_STATE(5232)] = 284016, + [SMALL_STATE(5233)] = 284035, + [SMALL_STATE(5234)] = 284058, + [SMALL_STATE(5235)] = 284081, + [SMALL_STATE(5236)] = 284104, + [SMALL_STATE(5237)] = 284123, + [SMALL_STATE(5238)] = 284144, + [SMALL_STATE(5239)] = 284165, + [SMALL_STATE(5240)] = 284188, + [SMALL_STATE(5241)] = 284207, + [SMALL_STATE(5242)] = 284230, + [SMALL_STATE(5243)] = 284249, + [SMALL_STATE(5244)] = 284272, + [SMALL_STATE(5245)] = 284295, + [SMALL_STATE(5246)] = 284314, + [SMALL_STATE(5247)] = 284337, + [SMALL_STATE(5248)] = 284360, + [SMALL_STATE(5249)] = 284383, + [SMALL_STATE(5250)] = 284406, + [SMALL_STATE(5251)] = 284429, + [SMALL_STATE(5252)] = 284450, + [SMALL_STATE(5253)] = 284473, + [SMALL_STATE(5254)] = 284492, + [SMALL_STATE(5255)] = 284515, + [SMALL_STATE(5256)] = 284536, + [SMALL_STATE(5257)] = 284559, + [SMALL_STATE(5258)] = 284580, + [SMALL_STATE(5259)] = 284603, + [SMALL_STATE(5260)] = 284624, + [SMALL_STATE(5261)] = 284647, + [SMALL_STATE(5262)] = 284670, + [SMALL_STATE(5263)] = 284693, + [SMALL_STATE(5264)] = 284716, + [SMALL_STATE(5265)] = 284739, + [SMALL_STATE(5266)] = 284762, + [SMALL_STATE(5267)] = 284785, + [SMALL_STATE(5268)] = 284808, + [SMALL_STATE(5269)] = 284831, + [SMALL_STATE(5270)] = 284854, + [SMALL_STATE(5271)] = 284877, + [SMALL_STATE(5272)] = 284900, + [SMALL_STATE(5273)] = 284923, + [SMALL_STATE(5274)] = 284946, + [SMALL_STATE(5275)] = 284969, + [SMALL_STATE(5276)] = 284992, + [SMALL_STATE(5277)] = 285015, + [SMALL_STATE(5278)] = 285038, + [SMALL_STATE(5279)] = 285061, + [SMALL_STATE(5280)] = 285084, + [SMALL_STATE(5281)] = 285105, + [SMALL_STATE(5282)] = 285128, + [SMALL_STATE(5283)] = 285151, + [SMALL_STATE(5284)] = 285174, + [SMALL_STATE(5285)] = 285197, + [SMALL_STATE(5286)] = 285218, + [SMALL_STATE(5287)] = 285241, + [SMALL_STATE(5288)] = 285264, + [SMALL_STATE(5289)] = 285287, + [SMALL_STATE(5290)] = 285310, + [SMALL_STATE(5291)] = 285333, + [SMALL_STATE(5292)] = 285356, + [SMALL_STATE(5293)] = 285379, + [SMALL_STATE(5294)] = 285402, + [SMALL_STATE(5295)] = 285425, + [SMALL_STATE(5296)] = 285448, + [SMALL_STATE(5297)] = 285471, + [SMALL_STATE(5298)] = 285494, + [SMALL_STATE(5299)] = 285517, + [SMALL_STATE(5300)] = 285536, + [SMALL_STATE(5301)] = 285559, + [SMALL_STATE(5302)] = 285582, + [SMALL_STATE(5303)] = 285605, + [SMALL_STATE(5304)] = 285628, + [SMALL_STATE(5305)] = 285651, + [SMALL_STATE(5306)] = 285674, + [SMALL_STATE(5307)] = 285697, + [SMALL_STATE(5308)] = 285720, + [SMALL_STATE(5309)] = 285743, + [SMALL_STATE(5310)] = 285766, + [SMALL_STATE(5311)] = 285789, + [SMALL_STATE(5312)] = 285812, + [SMALL_STATE(5313)] = 285835, + [SMALL_STATE(5314)] = 285858, + [SMALL_STATE(5315)] = 285881, + [SMALL_STATE(5316)] = 285904, + [SMALL_STATE(5317)] = 285927, + [SMALL_STATE(5318)] = 285950, + [SMALL_STATE(5319)] = 285971, + [SMALL_STATE(5320)] = 285994, + [SMALL_STATE(5321)] = 286017, + [SMALL_STATE(5322)] = 286040, + [SMALL_STATE(5323)] = 286061, + [SMALL_STATE(5324)] = 286084, + [SMALL_STATE(5325)] = 286105, + [SMALL_STATE(5326)] = 286128, + [SMALL_STATE(5327)] = 286151, + [SMALL_STATE(5328)] = 286172, + [SMALL_STATE(5329)] = 286195, + [SMALL_STATE(5330)] = 286218, + [SMALL_STATE(5331)] = 286241, + [SMALL_STATE(5332)] = 286262, + [SMALL_STATE(5333)] = 286285, + [SMALL_STATE(5334)] = 286306, + [SMALL_STATE(5335)] = 286329, + [SMALL_STATE(5336)] = 286352, + [SMALL_STATE(5337)] = 286375, + [SMALL_STATE(5338)] = 286398, + [SMALL_STATE(5339)] = 286421, + [SMALL_STATE(5340)] = 286444, + [SMALL_STATE(5341)] = 286467, + [SMALL_STATE(5342)] = 286490, + [SMALL_STATE(5343)] = 286513, + [SMALL_STATE(5344)] = 286534, + [SMALL_STATE(5345)] = 286557, + [SMALL_STATE(5346)] = 286580, + [SMALL_STATE(5347)] = 286603, + [SMALL_STATE(5348)] = 286626, + [SMALL_STATE(5349)] = 286649, + [SMALL_STATE(5350)] = 286672, + [SMALL_STATE(5351)] = 286695, + [SMALL_STATE(5352)] = 286714, + [SMALL_STATE(5353)] = 286737, + [SMALL_STATE(5354)] = 286760, + [SMALL_STATE(5355)] = 286783, + [SMALL_STATE(5356)] = 286806, + [SMALL_STATE(5357)] = 286827, + [SMALL_STATE(5358)] = 286850, + [SMALL_STATE(5359)] = 286871, + [SMALL_STATE(5360)] = 286894, + [SMALL_STATE(5361)] = 286915, + [SMALL_STATE(5362)] = 286938, + [SMALL_STATE(5363)] = 286961, + [SMALL_STATE(5364)] = 286984, + [SMALL_STATE(5365)] = 287007, + [SMALL_STATE(5366)] = 287030, + [SMALL_STATE(5367)] = 287053, + [SMALL_STATE(5368)] = 287076, + [SMALL_STATE(5369)] = 287097, + [SMALL_STATE(5370)] = 287120, + [SMALL_STATE(5371)] = 287143, + [SMALL_STATE(5372)] = 287166, + [SMALL_STATE(5373)] = 287189, + [SMALL_STATE(5374)] = 287212, + [SMALL_STATE(5375)] = 287235, + [SMALL_STATE(5376)] = 287258, + [SMALL_STATE(5377)] = 287281, + [SMALL_STATE(5378)] = 287304, + [SMALL_STATE(5379)] = 287323, + [SMALL_STATE(5380)] = 287346, + [SMALL_STATE(5381)] = 287369, + [SMALL_STATE(5382)] = 287392, + [SMALL_STATE(5383)] = 287415, + [SMALL_STATE(5384)] = 287438, + [SMALL_STATE(5385)] = 287461, + [SMALL_STATE(5386)] = 287484, + [SMALL_STATE(5387)] = 287507, + [SMALL_STATE(5388)] = 287530, + [SMALL_STATE(5389)] = 287551, + [SMALL_STATE(5390)] = 287574, + [SMALL_STATE(5391)] = 287595, + [SMALL_STATE(5392)] = 287618, + [SMALL_STATE(5393)] = 287641, + [SMALL_STATE(5394)] = 287664, + [SMALL_STATE(5395)] = 287685, + [SMALL_STATE(5396)] = 287704, + [SMALL_STATE(5397)] = 287727, + [SMALL_STATE(5398)] = 287746, + [SMALL_STATE(5399)] = 287769, + [SMALL_STATE(5400)] = 287792, + [SMALL_STATE(5401)] = 287815, + [SMALL_STATE(5402)] = 287838, + [SMALL_STATE(5403)] = 287861, + [SMALL_STATE(5404)] = 287882, + [SMALL_STATE(5405)] = 287905, + [SMALL_STATE(5406)] = 287928, + [SMALL_STATE(5407)] = 287949, + [SMALL_STATE(5408)] = 287970, + [SMALL_STATE(5409)] = 287993, + [SMALL_STATE(5410)] = 288016, + [SMALL_STATE(5411)] = 288039, + [SMALL_STATE(5412)] = 288062, + [SMALL_STATE(5413)] = 288085, + [SMALL_STATE(5414)] = 288108, + [SMALL_STATE(5415)] = 288129, + [SMALL_STATE(5416)] = 288152, + [SMALL_STATE(5417)] = 288175, + [SMALL_STATE(5418)] = 288198, + [SMALL_STATE(5419)] = 288219, + [SMALL_STATE(5420)] = 288240, + [SMALL_STATE(5421)] = 288263, + [SMALL_STATE(5422)] = 288286, + [SMALL_STATE(5423)] = 288309, + [SMALL_STATE(5424)] = 288332, + [SMALL_STATE(5425)] = 288353, + [SMALL_STATE(5426)] = 288376, + [SMALL_STATE(5427)] = 288399, + [SMALL_STATE(5428)] = 288420, + [SMALL_STATE(5429)] = 288443, + [SMALL_STATE(5430)] = 288462, + [SMALL_STATE(5431)] = 288485, + [SMALL_STATE(5432)] = 288508, + [SMALL_STATE(5433)] = 288529, + [SMALL_STATE(5434)] = 288548, + [SMALL_STATE(5435)] = 288567, + [SMALL_STATE(5436)] = 288588, + [SMALL_STATE(5437)] = 288611, + [SMALL_STATE(5438)] = 288632, + [SMALL_STATE(5439)] = 288655, + [SMALL_STATE(5440)] = 288678, + [SMALL_STATE(5441)] = 288701, + [SMALL_STATE(5442)] = 288724, + [SMALL_STATE(5443)] = 288745, + [SMALL_STATE(5444)] = 288766, + [SMALL_STATE(5445)] = 288787, + [SMALL_STATE(5446)] = 288810, + [SMALL_STATE(5447)] = 288833, + [SMALL_STATE(5448)] = 288856, + [SMALL_STATE(5449)] = 288877, + [SMALL_STATE(5450)] = 288900, + [SMALL_STATE(5451)] = 288923, + [SMALL_STATE(5452)] = 288946, + [SMALL_STATE(5453)] = 288969, + [SMALL_STATE(5454)] = 288992, + [SMALL_STATE(5455)] = 289015, + [SMALL_STATE(5456)] = 289038, + [SMALL_STATE(5457)] = 289057, + [SMALL_STATE(5458)] = 289080, + [SMALL_STATE(5459)] = 289099, + [SMALL_STATE(5460)] = 289122, + [SMALL_STATE(5461)] = 289145, + [SMALL_STATE(5462)] = 289168, + [SMALL_STATE(5463)] = 289191, + [SMALL_STATE(5464)] = 289214, + [SMALL_STATE(5465)] = 289237, + [SMALL_STATE(5466)] = 289260, + [SMALL_STATE(5467)] = 289283, + [SMALL_STATE(5468)] = 289306, + [SMALL_STATE(5469)] = 289329, + [SMALL_STATE(5470)] = 289352, + [SMALL_STATE(5471)] = 289373, + [SMALL_STATE(5472)] = 289396, + [SMALL_STATE(5473)] = 289419, + [SMALL_STATE(5474)] = 289442, + [SMALL_STATE(5475)] = 289465, + [SMALL_STATE(5476)] = 289488, + [SMALL_STATE(5477)] = 289511, + [SMALL_STATE(5478)] = 289530, + [SMALL_STATE(5479)] = 289553, + [SMALL_STATE(5480)] = 289576, + [SMALL_STATE(5481)] = 289599, + [SMALL_STATE(5482)] = 289620, + [SMALL_STATE(5483)] = 289643, + [SMALL_STATE(5484)] = 289666, + [SMALL_STATE(5485)] = 289689, + [SMALL_STATE(5486)] = 289708, + [SMALL_STATE(5487)] = 289729, + [SMALL_STATE(5488)] = 289752, + [SMALL_STATE(5489)] = 289775, + [SMALL_STATE(5490)] = 289798, + [SMALL_STATE(5491)] = 289821, + [SMALL_STATE(5492)] = 289844, + [SMALL_STATE(5493)] = 289867, + [SMALL_STATE(5494)] = 289890, + [SMALL_STATE(5495)] = 289909, + [SMALL_STATE(5496)] = 289932, + [SMALL_STATE(5497)] = 289955, + [SMALL_STATE(5498)] = 289978, + [SMALL_STATE(5499)] = 289997, + [SMALL_STATE(5500)] = 290020, + [SMALL_STATE(5501)] = 290039, + [SMALL_STATE(5502)] = 290059, + [SMALL_STATE(5503)] = 290079, + [SMALL_STATE(5504)] = 290097, + [SMALL_STATE(5505)] = 290117, + [SMALL_STATE(5506)] = 290137, + [SMALL_STATE(5507)] = 290157, + [SMALL_STATE(5508)] = 290177, + [SMALL_STATE(5509)] = 290197, + [SMALL_STATE(5510)] = 290217, + [SMALL_STATE(5511)] = 290237, + [SMALL_STATE(5512)] = 290257, + [SMALL_STATE(5513)] = 290277, + [SMALL_STATE(5514)] = 290297, + [SMALL_STATE(5515)] = 290317, + [SMALL_STATE(5516)] = 290335, + [SMALL_STATE(5517)] = 290355, + [SMALL_STATE(5518)] = 290373, + [SMALL_STATE(5519)] = 290393, + [SMALL_STATE(5520)] = 290413, + [SMALL_STATE(5521)] = 290433, + [SMALL_STATE(5522)] = 290453, + [SMALL_STATE(5523)] = 290473, + [SMALL_STATE(5524)] = 290493, + [SMALL_STATE(5525)] = 290513, + [SMALL_STATE(5526)] = 290533, + [SMALL_STATE(5527)] = 290553, + [SMALL_STATE(5528)] = 290573, + [SMALL_STATE(5529)] = 290593, + [SMALL_STATE(5530)] = 290613, + [SMALL_STATE(5531)] = 290631, + [SMALL_STATE(5532)] = 290651, + [SMALL_STATE(5533)] = 290669, + [SMALL_STATE(5534)] = 290689, + [SMALL_STATE(5535)] = 290709, + [SMALL_STATE(5536)] = 290729, + [SMALL_STATE(5537)] = 290749, + [SMALL_STATE(5538)] = 290769, + [SMALL_STATE(5539)] = 290789, + [SMALL_STATE(5540)] = 290809, + [SMALL_STATE(5541)] = 290829, + [SMALL_STATE(5542)] = 290849, + [SMALL_STATE(5543)] = 290869, + [SMALL_STATE(5544)] = 290889, + [SMALL_STATE(5545)] = 290907, + [SMALL_STATE(5546)] = 290927, + [SMALL_STATE(5547)] = 290947, + [SMALL_STATE(5548)] = 290967, + [SMALL_STATE(5549)] = 290985, + [SMALL_STATE(5550)] = 291003, + [SMALL_STATE(5551)] = 291023, + [SMALL_STATE(5552)] = 291043, + [SMALL_STATE(5553)] = 291063, + [SMALL_STATE(5554)] = 291083, + [SMALL_STATE(5555)] = 291103, + [SMALL_STATE(5556)] = 291123, + [SMALL_STATE(5557)] = 291143, + [SMALL_STATE(5558)] = 291163, + [SMALL_STATE(5559)] = 291183, + [SMALL_STATE(5560)] = 291203, + [SMALL_STATE(5561)] = 291223, + [SMALL_STATE(5562)] = 291243, + [SMALL_STATE(5563)] = 291263, + [SMALL_STATE(5564)] = 291283, + [SMALL_STATE(5565)] = 291303, + [SMALL_STATE(5566)] = 291323, + [SMALL_STATE(5567)] = 291343, + [SMALL_STATE(5568)] = 291363, + [SMALL_STATE(5569)] = 291383, + [SMALL_STATE(5570)] = 291403, + [SMALL_STATE(5571)] = 291423, + [SMALL_STATE(5572)] = 291443, + [SMALL_STATE(5573)] = 291463, + [SMALL_STATE(5574)] = 291483, + [SMALL_STATE(5575)] = 291503, + [SMALL_STATE(5576)] = 291523, + [SMALL_STATE(5577)] = 291543, + [SMALL_STATE(5578)] = 291563, + [SMALL_STATE(5579)] = 291583, + [SMALL_STATE(5580)] = 291603, + [SMALL_STATE(5581)] = 291623, + [SMALL_STATE(5582)] = 291643, + [SMALL_STATE(5583)] = 291661, + [SMALL_STATE(5584)] = 291681, + [SMALL_STATE(5585)] = 291701, + [SMALL_STATE(5586)] = 291721, + [SMALL_STATE(5587)] = 291741, + [SMALL_STATE(5588)] = 291759, + [SMALL_STATE(5589)] = 291777, + [SMALL_STATE(5590)] = 291797, + [SMALL_STATE(5591)] = 291817, + [SMALL_STATE(5592)] = 291837, + [SMALL_STATE(5593)] = 291857, + [SMALL_STATE(5594)] = 291877, + [SMALL_STATE(5595)] = 291897, + [SMALL_STATE(5596)] = 291917, + [SMALL_STATE(5597)] = 291937, + [SMALL_STATE(5598)] = 291957, + [SMALL_STATE(5599)] = 291977, + [SMALL_STATE(5600)] = 291997, + [SMALL_STATE(5601)] = 292015, + [SMALL_STATE(5602)] = 292035, + [SMALL_STATE(5603)] = 292055, + [SMALL_STATE(5604)] = 292075, + [SMALL_STATE(5605)] = 292095, + [SMALL_STATE(5606)] = 292115, + [SMALL_STATE(5607)] = 292135, + [SMALL_STATE(5608)] = 292155, + [SMALL_STATE(5609)] = 292175, + [SMALL_STATE(5610)] = 292195, + [SMALL_STATE(5611)] = 292215, + [SMALL_STATE(5612)] = 292235, + [SMALL_STATE(5613)] = 292253, + [SMALL_STATE(5614)] = 292273, + [SMALL_STATE(5615)] = 292291, + [SMALL_STATE(5616)] = 292311, + [SMALL_STATE(5617)] = 292331, + [SMALL_STATE(5618)] = 292349, + [SMALL_STATE(5619)] = 292369, + [SMALL_STATE(5620)] = 292389, + [SMALL_STATE(5621)] = 292409, + [SMALL_STATE(5622)] = 292429, + [SMALL_STATE(5623)] = 292449, + [SMALL_STATE(5624)] = 292469, + [SMALL_STATE(5625)] = 292489, + [SMALL_STATE(5626)] = 292509, + [SMALL_STATE(5627)] = 292529, + [SMALL_STATE(5628)] = 292549, + [SMALL_STATE(5629)] = 292569, + [SMALL_STATE(5630)] = 292589, + [SMALL_STATE(5631)] = 292609, + [SMALL_STATE(5632)] = 292629, + [SMALL_STATE(5633)] = 292649, + [SMALL_STATE(5634)] = 292669, + [SMALL_STATE(5635)] = 292689, + [SMALL_STATE(5636)] = 292709, + [SMALL_STATE(5637)] = 292729, + [SMALL_STATE(5638)] = 292749, + [SMALL_STATE(5639)] = 292769, + [SMALL_STATE(5640)] = 292789, + [SMALL_STATE(5641)] = 292809, + [SMALL_STATE(5642)] = 292829, + [SMALL_STATE(5643)] = 292849, + [SMALL_STATE(5644)] = 292869, + [SMALL_STATE(5645)] = 292889, + [SMALL_STATE(5646)] = 292909, + [SMALL_STATE(5647)] = 292929, + [SMALL_STATE(5648)] = 292947, + [SMALL_STATE(5649)] = 292967, + [SMALL_STATE(5650)] = 292987, + [SMALL_STATE(5651)] = 293007, + [SMALL_STATE(5652)] = 293025, + [SMALL_STATE(5653)] = 293045, + [SMALL_STATE(5654)] = 293063, + [SMALL_STATE(5655)] = 293083, + [SMALL_STATE(5656)] = 293103, + [SMALL_STATE(5657)] = 293123, + [SMALL_STATE(5658)] = 293143, + [SMALL_STATE(5659)] = 293161, + [SMALL_STATE(5660)] = 293181, + [SMALL_STATE(5661)] = 293199, + [SMALL_STATE(5662)] = 293219, + [SMALL_STATE(5663)] = 293239, + [SMALL_STATE(5664)] = 293259, + [SMALL_STATE(5665)] = 293279, + [SMALL_STATE(5666)] = 293299, + [SMALL_STATE(5667)] = 293319, + [SMALL_STATE(5668)] = 293339, + [SMALL_STATE(5669)] = 293359, + [SMALL_STATE(5670)] = 293379, + [SMALL_STATE(5671)] = 293399, + [SMALL_STATE(5672)] = 293419, + [SMALL_STATE(5673)] = 293437, + [SMALL_STATE(5674)] = 293457, + [SMALL_STATE(5675)] = 293477, + [SMALL_STATE(5676)] = 293497, + [SMALL_STATE(5677)] = 293517, + [SMALL_STATE(5678)] = 293537, + [SMALL_STATE(5679)] = 293557, + [SMALL_STATE(5680)] = 293577, + [SMALL_STATE(5681)] = 293597, + [SMALL_STATE(5682)] = 293617, + [SMALL_STATE(5683)] = 293637, + [SMALL_STATE(5684)] = 293657, + [SMALL_STATE(5685)] = 293677, + [SMALL_STATE(5686)] = 293697, + [SMALL_STATE(5687)] = 293717, + [SMALL_STATE(5688)] = 293737, + [SMALL_STATE(5689)] = 293757, + [SMALL_STATE(5690)] = 293777, + [SMALL_STATE(5691)] = 293797, + [SMALL_STATE(5692)] = 293815, + [SMALL_STATE(5693)] = 293833, + [SMALL_STATE(5694)] = 293853, + [SMALL_STATE(5695)] = 293871, + [SMALL_STATE(5696)] = 293891, + [SMALL_STATE(5697)] = 293911, + [SMALL_STATE(5698)] = 293931, + [SMALL_STATE(5699)] = 293951, + [SMALL_STATE(5700)] = 293971, + [SMALL_STATE(5701)] = 293991, + [SMALL_STATE(5702)] = 294011, + [SMALL_STATE(5703)] = 294029, + [SMALL_STATE(5704)] = 294047, + [SMALL_STATE(5705)] = 294067, + [SMALL_STATE(5706)] = 294085, + [SMALL_STATE(5707)] = 294105, + [SMALL_STATE(5708)] = 294125, + [SMALL_STATE(5709)] = 294145, + [SMALL_STATE(5710)] = 294165, + [SMALL_STATE(5711)] = 294185, + [SMALL_STATE(5712)] = 294205, + [SMALL_STATE(5713)] = 294225, + [SMALL_STATE(5714)] = 294245, + [SMALL_STATE(5715)] = 294265, + [SMALL_STATE(5716)] = 294285, + [SMALL_STATE(5717)] = 294305, + [SMALL_STATE(5718)] = 294325, + [SMALL_STATE(5719)] = 294345, + [SMALL_STATE(5720)] = 294365, + [SMALL_STATE(5721)] = 294385, + [SMALL_STATE(5722)] = 294405, + [SMALL_STATE(5723)] = 294425, + [SMALL_STATE(5724)] = 294445, + [SMALL_STATE(5725)] = 294465, + [SMALL_STATE(5726)] = 294485, + [SMALL_STATE(5727)] = 294505, + [SMALL_STATE(5728)] = 294525, + [SMALL_STATE(5729)] = 294545, + [SMALL_STATE(5730)] = 294563, + [SMALL_STATE(5731)] = 294583, + [SMALL_STATE(5732)] = 294603, + [SMALL_STATE(5733)] = 294623, + [SMALL_STATE(5734)] = 294643, + [SMALL_STATE(5735)] = 294663, + [SMALL_STATE(5736)] = 294683, + [SMALL_STATE(5737)] = 294703, + [SMALL_STATE(5738)] = 294721, + [SMALL_STATE(5739)] = 294741, + [SMALL_STATE(5740)] = 294761, + [SMALL_STATE(5741)] = 294781, + [SMALL_STATE(5742)] = 294801, + [SMALL_STATE(5743)] = 294821, + [SMALL_STATE(5744)] = 294841, + [SMALL_STATE(5745)] = 294861, + [SMALL_STATE(5746)] = 294881, + [SMALL_STATE(5747)] = 294901, + [SMALL_STATE(5748)] = 294921, + [SMALL_STATE(5749)] = 294939, + [SMALL_STATE(5750)] = 294959, + [SMALL_STATE(5751)] = 294979, + [SMALL_STATE(5752)] = 294999, + [SMALL_STATE(5753)] = 295019, + [SMALL_STATE(5754)] = 295039, + [SMALL_STATE(5755)] = 295059, + [SMALL_STATE(5756)] = 295079, + [SMALL_STATE(5757)] = 295099, + [SMALL_STATE(5758)] = 295119, + [SMALL_STATE(5759)] = 295139, + [SMALL_STATE(5760)] = 295159, + [SMALL_STATE(5761)] = 295179, + [SMALL_STATE(5762)] = 295199, + [SMALL_STATE(5763)] = 295219, + [SMALL_STATE(5764)] = 295239, + [SMALL_STATE(5765)] = 295259, + [SMALL_STATE(5766)] = 295279, + [SMALL_STATE(5767)] = 295299, + [SMALL_STATE(5768)] = 295319, + [SMALL_STATE(5769)] = 295337, + [SMALL_STATE(5770)] = 295355, + [SMALL_STATE(5771)] = 295375, + [SMALL_STATE(5772)] = 295393, + [SMALL_STATE(5773)] = 295413, + [SMALL_STATE(5774)] = 295433, + [SMALL_STATE(5775)] = 295453, + [SMALL_STATE(5776)] = 295473, + [SMALL_STATE(5777)] = 295493, + [SMALL_STATE(5778)] = 295513, + [SMALL_STATE(5779)] = 295533, + [SMALL_STATE(5780)] = 295551, + [SMALL_STATE(5781)] = 295571, + [SMALL_STATE(5782)] = 295591, + [SMALL_STATE(5783)] = 295611, + [SMALL_STATE(5784)] = 295631, + [SMALL_STATE(5785)] = 295651, + [SMALL_STATE(5786)] = 295671, + [SMALL_STATE(5787)] = 295691, + [SMALL_STATE(5788)] = 295711, + [SMALL_STATE(5789)] = 295729, + [SMALL_STATE(5790)] = 295749, + [SMALL_STATE(5791)] = 295767, + [SMALL_STATE(5792)] = 295787, + [SMALL_STATE(5793)] = 295807, + [SMALL_STATE(5794)] = 295827, + [SMALL_STATE(5795)] = 295847, + [SMALL_STATE(5796)] = 295867, + [SMALL_STATE(5797)] = 295887, + [SMALL_STATE(5798)] = 295907, + [SMALL_STATE(5799)] = 295927, + [SMALL_STATE(5800)] = 295945, + [SMALL_STATE(5801)] = 295963, + [SMALL_STATE(5802)] = 295983, + [SMALL_STATE(5803)] = 296003, + [SMALL_STATE(5804)] = 296021, + [SMALL_STATE(5805)] = 296041, + [SMALL_STATE(5806)] = 296061, + [SMALL_STATE(5807)] = 296081, + [SMALL_STATE(5808)] = 296101, + [SMALL_STATE(5809)] = 296121, + [SMALL_STATE(5810)] = 296141, + [SMALL_STATE(5811)] = 296159, + [SMALL_STATE(5812)] = 296179, + [SMALL_STATE(5813)] = 296199, + [SMALL_STATE(5814)] = 296219, + [SMALL_STATE(5815)] = 296239, + [SMALL_STATE(5816)] = 296259, + [SMALL_STATE(5817)] = 296279, + [SMALL_STATE(5818)] = 296299, + [SMALL_STATE(5819)] = 296317, + [SMALL_STATE(5820)] = 296337, + [SMALL_STATE(5821)] = 296357, + [SMALL_STATE(5822)] = 296377, + [SMALL_STATE(5823)] = 296395, + [SMALL_STATE(5824)] = 296415, + [SMALL_STATE(5825)] = 296435, + [SMALL_STATE(5826)] = 296455, + [SMALL_STATE(5827)] = 296475, + [SMALL_STATE(5828)] = 296495, + [SMALL_STATE(5829)] = 296515, + [SMALL_STATE(5830)] = 296535, + [SMALL_STATE(5831)] = 296555, + [SMALL_STATE(5832)] = 296575, + [SMALL_STATE(5833)] = 296593, + [SMALL_STATE(5834)] = 296613, + [SMALL_STATE(5835)] = 296633, + [SMALL_STATE(5836)] = 296653, + [SMALL_STATE(5837)] = 296673, + [SMALL_STATE(5838)] = 296691, + [SMALL_STATE(5839)] = 296711, + [SMALL_STATE(5840)] = 296731, + [SMALL_STATE(5841)] = 296751, + [SMALL_STATE(5842)] = 296769, + [SMALL_STATE(5843)] = 296789, + [SMALL_STATE(5844)] = 296809, + [SMALL_STATE(5845)] = 296829, + [SMALL_STATE(5846)] = 296849, + [SMALL_STATE(5847)] = 296869, + [SMALL_STATE(5848)] = 296889, + [SMALL_STATE(5849)] = 296907, + [SMALL_STATE(5850)] = 296927, + [SMALL_STATE(5851)] = 296947, + [SMALL_STATE(5852)] = 296967, + [SMALL_STATE(5853)] = 296987, + [SMALL_STATE(5854)] = 297007, + [SMALL_STATE(5855)] = 297027, + [SMALL_STATE(5856)] = 297047, + [SMALL_STATE(5857)] = 297065, + [SMALL_STATE(5858)] = 297085, + [SMALL_STATE(5859)] = 297105, + [SMALL_STATE(5860)] = 297125, + [SMALL_STATE(5861)] = 297145, + [SMALL_STATE(5862)] = 297165, + [SMALL_STATE(5863)] = 297183, + [SMALL_STATE(5864)] = 297203, + [SMALL_STATE(5865)] = 297223, + [SMALL_STATE(5866)] = 297243, + [SMALL_STATE(5867)] = 297263, + [SMALL_STATE(5868)] = 297283, + [SMALL_STATE(5869)] = 297303, + [SMALL_STATE(5870)] = 297323, + [SMALL_STATE(5871)] = 297343, + [SMALL_STATE(5872)] = 297361, + [SMALL_STATE(5873)] = 297381, + [SMALL_STATE(5874)] = 297401, + [SMALL_STATE(5875)] = 297419, + [SMALL_STATE(5876)] = 297439, + [SMALL_STATE(5877)] = 297459, + [SMALL_STATE(5878)] = 297479, + [SMALL_STATE(5879)] = 297499, + [SMALL_STATE(5880)] = 297519, + [SMALL_STATE(5881)] = 297539, + [SMALL_STATE(5882)] = 297559, + [SMALL_STATE(5883)] = 297579, + [SMALL_STATE(5884)] = 297599, + [SMALL_STATE(5885)] = 297619, + [SMALL_STATE(5886)] = 297639, + [SMALL_STATE(5887)] = 297659, + [SMALL_STATE(5888)] = 297679, + [SMALL_STATE(5889)] = 297699, + [SMALL_STATE(5890)] = 297719, + [SMALL_STATE(5891)] = 297739, + [SMALL_STATE(5892)] = 297759, + [SMALL_STATE(5893)] = 297779, + [SMALL_STATE(5894)] = 297799, + [SMALL_STATE(5895)] = 297819, + [SMALL_STATE(5896)] = 297839, + [SMALL_STATE(5897)] = 297859, + [SMALL_STATE(5898)] = 297879, + [SMALL_STATE(5899)] = 297899, + [SMALL_STATE(5900)] = 297919, + [SMALL_STATE(5901)] = 297939, + [SMALL_STATE(5902)] = 297959, + [SMALL_STATE(5903)] = 297979, + [SMALL_STATE(5904)] = 297997, + [SMALL_STATE(5905)] = 298017, + [SMALL_STATE(5906)] = 298037, + [SMALL_STATE(5907)] = 298055, + [SMALL_STATE(5908)] = 298075, + [SMALL_STATE(5909)] = 298095, + [SMALL_STATE(5910)] = 298115, + [SMALL_STATE(5911)] = 298135, + [SMALL_STATE(5912)] = 298155, + [SMALL_STATE(5913)] = 298175, + [SMALL_STATE(5914)] = 298195, + [SMALL_STATE(5915)] = 298215, + [SMALL_STATE(5916)] = 298235, + [SMALL_STATE(5917)] = 298255, + [SMALL_STATE(5918)] = 298275, + [SMALL_STATE(5919)] = 298295, + [SMALL_STATE(5920)] = 298315, + [SMALL_STATE(5921)] = 298335, + [SMALL_STATE(5922)] = 298355, + [SMALL_STATE(5923)] = 298375, + [SMALL_STATE(5924)] = 298395, + [SMALL_STATE(5925)] = 298415, + [SMALL_STATE(5926)] = 298435, + [SMALL_STATE(5927)] = 298455, + [SMALL_STATE(5928)] = 298475, + [SMALL_STATE(5929)] = 298495, + [SMALL_STATE(5930)] = 298515, + [SMALL_STATE(5931)] = 298535, + [SMALL_STATE(5932)] = 298555, + [SMALL_STATE(5933)] = 298575, + [SMALL_STATE(5934)] = 298595, + [SMALL_STATE(5935)] = 298615, + [SMALL_STATE(5936)] = 298635, + [SMALL_STATE(5937)] = 298655, + [SMALL_STATE(5938)] = 298675, + [SMALL_STATE(5939)] = 298695, + [SMALL_STATE(5940)] = 298715, + [SMALL_STATE(5941)] = 298733, + [SMALL_STATE(5942)] = 298753, + [SMALL_STATE(5943)] = 298773, + [SMALL_STATE(5944)] = 298791, + [SMALL_STATE(5945)] = 298811, + [SMALL_STATE(5946)] = 298831, + [SMALL_STATE(5947)] = 298851, + [SMALL_STATE(5948)] = 298871, + [SMALL_STATE(5949)] = 298891, + [SMALL_STATE(5950)] = 298911, + [SMALL_STATE(5951)] = 298931, + [SMALL_STATE(5952)] = 298951, + [SMALL_STATE(5953)] = 298971, + [SMALL_STATE(5954)] = 298991, + [SMALL_STATE(5955)] = 299009, + [SMALL_STATE(5956)] = 299029, + [SMALL_STATE(5957)] = 299049, + [SMALL_STATE(5958)] = 299069, + [SMALL_STATE(5959)] = 299089, + [SMALL_STATE(5960)] = 299109, + [SMALL_STATE(5961)] = 299129, + [SMALL_STATE(5962)] = 299149, + [SMALL_STATE(5963)] = 299169, + [SMALL_STATE(5964)] = 299189, + [SMALL_STATE(5965)] = 299209, + [SMALL_STATE(5966)] = 299229, + [SMALL_STATE(5967)] = 299249, + [SMALL_STATE(5968)] = 299267, + [SMALL_STATE(5969)] = 299287, + [SMALL_STATE(5970)] = 299307, + [SMALL_STATE(5971)] = 299327, + [SMALL_STATE(5972)] = 299347, + [SMALL_STATE(5973)] = 299367, + [SMALL_STATE(5974)] = 299387, + [SMALL_STATE(5975)] = 299405, + [SMALL_STATE(5976)] = 299425, + [SMALL_STATE(5977)] = 299445, + [SMALL_STATE(5978)] = 299465, + [SMALL_STATE(5979)] = 299485, + [SMALL_STATE(5980)] = 299505, + [SMALL_STATE(5981)] = 299525, + [SMALL_STATE(5982)] = 299545, + [SMALL_STATE(5983)] = 299565, + [SMALL_STATE(5984)] = 299585, + [SMALL_STATE(5985)] = 299605, + [SMALL_STATE(5986)] = 299625, + [SMALL_STATE(5987)] = 299645, + [SMALL_STATE(5988)] = 299665, + [SMALL_STATE(5989)] = 299685, + [SMALL_STATE(5990)] = 299705, + [SMALL_STATE(5991)] = 299725, + [SMALL_STATE(5992)] = 299743, + [SMALL_STATE(5993)] = 299763, + [SMALL_STATE(5994)] = 299783, + [SMALL_STATE(5995)] = 299803, + [SMALL_STATE(5996)] = 299821, + [SMALL_STATE(5997)] = 299841, + [SMALL_STATE(5998)] = 299861, + [SMALL_STATE(5999)] = 299881, + [SMALL_STATE(6000)] = 299901, + [SMALL_STATE(6001)] = 299921, + [SMALL_STATE(6002)] = 299941, + [SMALL_STATE(6003)] = 299961, + [SMALL_STATE(6004)] = 299981, + [SMALL_STATE(6005)] = 300001, + [SMALL_STATE(6006)] = 300021, + [SMALL_STATE(6007)] = 300041, + [SMALL_STATE(6008)] = 300061, + [SMALL_STATE(6009)] = 300081, + [SMALL_STATE(6010)] = 300099, + [SMALL_STATE(6011)] = 300119, + [SMALL_STATE(6012)] = 300139, + [SMALL_STATE(6013)] = 300159, + [SMALL_STATE(6014)] = 300179, + [SMALL_STATE(6015)] = 300199, + [SMALL_STATE(6016)] = 300219, + [SMALL_STATE(6017)] = 300239, + [SMALL_STATE(6018)] = 300259, + [SMALL_STATE(6019)] = 300279, + [SMALL_STATE(6020)] = 300299, + [SMALL_STATE(6021)] = 300319, + [SMALL_STATE(6022)] = 300339, + [SMALL_STATE(6023)] = 300359, + [SMALL_STATE(6024)] = 300379, + [SMALL_STATE(6025)] = 300399, + [SMALL_STATE(6026)] = 300419, + [SMALL_STATE(6027)] = 300439, + [SMALL_STATE(6028)] = 300459, + [SMALL_STATE(6029)] = 300479, + [SMALL_STATE(6030)] = 300499, + [SMALL_STATE(6031)] = 300519, + [SMALL_STATE(6032)] = 300539, + [SMALL_STATE(6033)] = 300559, + [SMALL_STATE(6034)] = 300579, + [SMALL_STATE(6035)] = 300599, + [SMALL_STATE(6036)] = 300619, + [SMALL_STATE(6037)] = 300639, + [SMALL_STATE(6038)] = 300659, + [SMALL_STATE(6039)] = 300679, + [SMALL_STATE(6040)] = 300699, + [SMALL_STATE(6041)] = 300719, + [SMALL_STATE(6042)] = 300739, + [SMALL_STATE(6043)] = 300759, + [SMALL_STATE(6044)] = 300779, + [SMALL_STATE(6045)] = 300799, + [SMALL_STATE(6046)] = 300819, + [SMALL_STATE(6047)] = 300839, + [SMALL_STATE(6048)] = 300859, + [SMALL_STATE(6049)] = 300879, + [SMALL_STATE(6050)] = 300899, + [SMALL_STATE(6051)] = 300919, + [SMALL_STATE(6052)] = 300939, + [SMALL_STATE(6053)] = 300959, + [SMALL_STATE(6054)] = 300977, + [SMALL_STATE(6055)] = 300997, + [SMALL_STATE(6056)] = 301015, + [SMALL_STATE(6057)] = 301035, + [SMALL_STATE(6058)] = 301055, + [SMALL_STATE(6059)] = 301075, + [SMALL_STATE(6060)] = 301095, + [SMALL_STATE(6061)] = 301115, + [SMALL_STATE(6062)] = 301135, + [SMALL_STATE(6063)] = 301153, + [SMALL_STATE(6064)] = 301173, + [SMALL_STATE(6065)] = 301193, + [SMALL_STATE(6066)] = 301213, + [SMALL_STATE(6067)] = 301233, + [SMALL_STATE(6068)] = 301253, + [SMALL_STATE(6069)] = 301273, + [SMALL_STATE(6070)] = 301293, + [SMALL_STATE(6071)] = 301311, + [SMALL_STATE(6072)] = 301329, + [SMALL_STATE(6073)] = 301349, + [SMALL_STATE(6074)] = 301369, + [SMALL_STATE(6075)] = 301389, + [SMALL_STATE(6076)] = 301409, + [SMALL_STATE(6077)] = 301429, + [SMALL_STATE(6078)] = 301449, + [SMALL_STATE(6079)] = 301469, + [SMALL_STATE(6080)] = 301489, + [SMALL_STATE(6081)] = 301509, + [SMALL_STATE(6082)] = 301529, + [SMALL_STATE(6083)] = 301547, + [SMALL_STATE(6084)] = 301567, + [SMALL_STATE(6085)] = 301587, + [SMALL_STATE(6086)] = 301607, + [SMALL_STATE(6087)] = 301627, + [SMALL_STATE(6088)] = 301647, + [SMALL_STATE(6089)] = 301667, + [SMALL_STATE(6090)] = 301687, + [SMALL_STATE(6091)] = 301707, + [SMALL_STATE(6092)] = 301727, + [SMALL_STATE(6093)] = 301747, + [SMALL_STATE(6094)] = 301767, + [SMALL_STATE(6095)] = 301787, + [SMALL_STATE(6096)] = 301807, + [SMALL_STATE(6097)] = 301827, + [SMALL_STATE(6098)] = 301847, + [SMALL_STATE(6099)] = 301867, + [SMALL_STATE(6100)] = 301887, + [SMALL_STATE(6101)] = 301907, + [SMALL_STATE(6102)] = 301927, + [SMALL_STATE(6103)] = 301947, + [SMALL_STATE(6104)] = 301967, + [SMALL_STATE(6105)] = 301987, + [SMALL_STATE(6106)] = 302007, + [SMALL_STATE(6107)] = 302027, + [SMALL_STATE(6108)] = 302047, + [SMALL_STATE(6109)] = 302067, + [SMALL_STATE(6110)] = 302087, + [SMALL_STATE(6111)] = 302107, + [SMALL_STATE(6112)] = 302125, + [SMALL_STATE(6113)] = 302145, + [SMALL_STATE(6114)] = 302165, + [SMALL_STATE(6115)] = 302183, + [SMALL_STATE(6116)] = 302203, + [SMALL_STATE(6117)] = 302223, + [SMALL_STATE(6118)] = 302243, + [SMALL_STATE(6119)] = 302263, + [SMALL_STATE(6120)] = 302283, + [SMALL_STATE(6121)] = 302303, + [SMALL_STATE(6122)] = 302323, + [SMALL_STATE(6123)] = 302343, + [SMALL_STATE(6124)] = 302363, + [SMALL_STATE(6125)] = 302383, + [SMALL_STATE(6126)] = 302403, + [SMALL_STATE(6127)] = 302423, + [SMALL_STATE(6128)] = 302443, + [SMALL_STATE(6129)] = 302463, + [SMALL_STATE(6130)] = 302483, + [SMALL_STATE(6131)] = 302503, + [SMALL_STATE(6132)] = 302523, + [SMALL_STATE(6133)] = 302543, + [SMALL_STATE(6134)] = 302563, + [SMALL_STATE(6135)] = 302583, + [SMALL_STATE(6136)] = 302603, + [SMALL_STATE(6137)] = 302623, + [SMALL_STATE(6138)] = 302643, + [SMALL_STATE(6139)] = 302663, + [SMALL_STATE(6140)] = 302683, + [SMALL_STATE(6141)] = 302703, + [SMALL_STATE(6142)] = 302723, + [SMALL_STATE(6143)] = 302743, + [SMALL_STATE(6144)] = 302763, + [SMALL_STATE(6145)] = 302781, + [SMALL_STATE(6146)] = 302801, + [SMALL_STATE(6147)] = 302821, + [SMALL_STATE(6148)] = 302841, + [SMALL_STATE(6149)] = 302861, + [SMALL_STATE(6150)] = 302881, + [SMALL_STATE(6151)] = 302901, + [SMALL_STATE(6152)] = 302921, + [SMALL_STATE(6153)] = 302941, + [SMALL_STATE(6154)] = 302961, + [SMALL_STATE(6155)] = 302981, + [SMALL_STATE(6156)] = 303001, + [SMALL_STATE(6157)] = 303021, + [SMALL_STATE(6158)] = 303041, + [SMALL_STATE(6159)] = 303061, + [SMALL_STATE(6160)] = 303081, + [SMALL_STATE(6161)] = 303101, + [SMALL_STATE(6162)] = 303121, + [SMALL_STATE(6163)] = 303141, + [SMALL_STATE(6164)] = 303161, + [SMALL_STATE(6165)] = 303181, + [SMALL_STATE(6166)] = 303201, + [SMALL_STATE(6167)] = 303221, + [SMALL_STATE(6168)] = 303241, + [SMALL_STATE(6169)] = 303261, + [SMALL_STATE(6170)] = 303281, + [SMALL_STATE(6171)] = 303301, + [SMALL_STATE(6172)] = 303321, + [SMALL_STATE(6173)] = 303341, + [SMALL_STATE(6174)] = 303361, + [SMALL_STATE(6175)] = 303379, + [SMALL_STATE(6176)] = 303399, + [SMALL_STATE(6177)] = 303419, + [SMALL_STATE(6178)] = 303439, + [SMALL_STATE(6179)] = 303459, + [SMALL_STATE(6180)] = 303479, + [SMALL_STATE(6181)] = 303499, + [SMALL_STATE(6182)] = 303519, + [SMALL_STATE(6183)] = 303539, + [SMALL_STATE(6184)] = 303559, + [SMALL_STATE(6185)] = 303579, + [SMALL_STATE(6186)] = 303599, + [SMALL_STATE(6187)] = 303619, + [SMALL_STATE(6188)] = 303639, + [SMALL_STATE(6189)] = 303659, + [SMALL_STATE(6190)] = 303679, + [SMALL_STATE(6191)] = 303697, + [SMALL_STATE(6192)] = 303717, + [SMALL_STATE(6193)] = 303737, + [SMALL_STATE(6194)] = 303757, + [SMALL_STATE(6195)] = 303777, + [SMALL_STATE(6196)] = 303797, + [SMALL_STATE(6197)] = 303817, + [SMALL_STATE(6198)] = 303837, + [SMALL_STATE(6199)] = 303854, + [SMALL_STATE(6200)] = 303871, + [SMALL_STATE(6201)] = 303888, + [SMALL_STATE(6202)] = 303905, + [SMALL_STATE(6203)] = 303922, + [SMALL_STATE(6204)] = 303939, + [SMALL_STATE(6205)] = 303956, + [SMALL_STATE(6206)] = 303973, + [SMALL_STATE(6207)] = 303990, + [SMALL_STATE(6208)] = 304007, + [SMALL_STATE(6209)] = 304024, + [SMALL_STATE(6210)] = 304041, + [SMALL_STATE(6211)] = 304058, + [SMALL_STATE(6212)] = 304075, + [SMALL_STATE(6213)] = 304092, + [SMALL_STATE(6214)] = 304109, + [SMALL_STATE(6215)] = 304126, + [SMALL_STATE(6216)] = 304143, + [SMALL_STATE(6217)] = 304160, + [SMALL_STATE(6218)] = 304177, + [SMALL_STATE(6219)] = 304194, + [SMALL_STATE(6220)] = 304211, + [SMALL_STATE(6221)] = 304228, + [SMALL_STATE(6222)] = 304245, + [SMALL_STATE(6223)] = 304262, + [SMALL_STATE(6224)] = 304279, + [SMALL_STATE(6225)] = 304296, + [SMALL_STATE(6226)] = 304313, + [SMALL_STATE(6227)] = 304330, + [SMALL_STATE(6228)] = 304347, + [SMALL_STATE(6229)] = 304364, + [SMALL_STATE(6230)] = 304381, + [SMALL_STATE(6231)] = 304398, + [SMALL_STATE(6232)] = 304415, + [SMALL_STATE(6233)] = 304432, + [SMALL_STATE(6234)] = 304449, + [SMALL_STATE(6235)] = 304466, + [SMALL_STATE(6236)] = 304483, + [SMALL_STATE(6237)] = 304500, + [SMALL_STATE(6238)] = 304517, + [SMALL_STATE(6239)] = 304534, + [SMALL_STATE(6240)] = 304551, + [SMALL_STATE(6241)] = 304568, + [SMALL_STATE(6242)] = 304585, + [SMALL_STATE(6243)] = 304602, + [SMALL_STATE(6244)] = 304619, + [SMALL_STATE(6245)] = 304636, + [SMALL_STATE(6246)] = 304653, + [SMALL_STATE(6247)] = 304670, + [SMALL_STATE(6248)] = 304687, + [SMALL_STATE(6249)] = 304704, + [SMALL_STATE(6250)] = 304721, + [SMALL_STATE(6251)] = 304738, + [SMALL_STATE(6252)] = 304755, + [SMALL_STATE(6253)] = 304772, + [SMALL_STATE(6254)] = 304789, + [SMALL_STATE(6255)] = 304806, + [SMALL_STATE(6256)] = 304823, + [SMALL_STATE(6257)] = 304840, + [SMALL_STATE(6258)] = 304857, + [SMALL_STATE(6259)] = 304874, + [SMALL_STATE(6260)] = 304891, + [SMALL_STATE(6261)] = 304908, + [SMALL_STATE(6262)] = 304925, + [SMALL_STATE(6263)] = 304942, + [SMALL_STATE(6264)] = 304959, + [SMALL_STATE(6265)] = 304976, + [SMALL_STATE(6266)] = 304993, + [SMALL_STATE(6267)] = 305010, + [SMALL_STATE(6268)] = 305027, + [SMALL_STATE(6269)] = 305044, + [SMALL_STATE(6270)] = 305061, + [SMALL_STATE(6271)] = 305078, + [SMALL_STATE(6272)] = 305095, + [SMALL_STATE(6273)] = 305112, + [SMALL_STATE(6274)] = 305129, + [SMALL_STATE(6275)] = 305146, + [SMALL_STATE(6276)] = 305163, + [SMALL_STATE(6277)] = 305180, + [SMALL_STATE(6278)] = 305197, + [SMALL_STATE(6279)] = 305214, + [SMALL_STATE(6280)] = 305231, + [SMALL_STATE(6281)] = 305248, + [SMALL_STATE(6282)] = 305265, + [SMALL_STATE(6283)] = 305282, + [SMALL_STATE(6284)] = 305299, + [SMALL_STATE(6285)] = 305316, + [SMALL_STATE(6286)] = 305333, + [SMALL_STATE(6287)] = 305350, + [SMALL_STATE(6288)] = 305367, + [SMALL_STATE(6289)] = 305384, + [SMALL_STATE(6290)] = 305401, + [SMALL_STATE(6291)] = 305418, + [SMALL_STATE(6292)] = 305435, + [SMALL_STATE(6293)] = 305452, + [SMALL_STATE(6294)] = 305469, + [SMALL_STATE(6295)] = 305486, + [SMALL_STATE(6296)] = 305503, + [SMALL_STATE(6297)] = 305520, + [SMALL_STATE(6298)] = 305537, + [SMALL_STATE(6299)] = 305554, + [SMALL_STATE(6300)] = 305571, + [SMALL_STATE(6301)] = 305588, + [SMALL_STATE(6302)] = 305605, + [SMALL_STATE(6303)] = 305622, + [SMALL_STATE(6304)] = 305639, + [SMALL_STATE(6305)] = 305656, + [SMALL_STATE(6306)] = 305673, + [SMALL_STATE(6307)] = 305690, + [SMALL_STATE(6308)] = 305705, + [SMALL_STATE(6309)] = 305722, + [SMALL_STATE(6310)] = 305739, + [SMALL_STATE(6311)] = 305756, + [SMALL_STATE(6312)] = 305773, + [SMALL_STATE(6313)] = 305790, + [SMALL_STATE(6314)] = 305807, + [SMALL_STATE(6315)] = 305824, + [SMALL_STATE(6316)] = 305841, + [SMALL_STATE(6317)] = 305858, + [SMALL_STATE(6318)] = 305875, + [SMALL_STATE(6319)] = 305892, + [SMALL_STATE(6320)] = 305909, + [SMALL_STATE(6321)] = 305926, + [SMALL_STATE(6322)] = 305943, + [SMALL_STATE(6323)] = 305960, + [SMALL_STATE(6324)] = 305977, + [SMALL_STATE(6325)] = 305994, + [SMALL_STATE(6326)] = 306011, + [SMALL_STATE(6327)] = 306028, + [SMALL_STATE(6328)] = 306045, + [SMALL_STATE(6329)] = 306062, + [SMALL_STATE(6330)] = 306079, + [SMALL_STATE(6331)] = 306096, + [SMALL_STATE(6332)] = 306113, + [SMALL_STATE(6333)] = 306130, + [SMALL_STATE(6334)] = 306147, + [SMALL_STATE(6335)] = 306164, + [SMALL_STATE(6336)] = 306181, + [SMALL_STATE(6337)] = 306198, + [SMALL_STATE(6338)] = 306215, + [SMALL_STATE(6339)] = 306232, + [SMALL_STATE(6340)] = 306249, + [SMALL_STATE(6341)] = 306266, + [SMALL_STATE(6342)] = 306283, + [SMALL_STATE(6343)] = 306300, + [SMALL_STATE(6344)] = 306317, + [SMALL_STATE(6345)] = 306334, + [SMALL_STATE(6346)] = 306351, + [SMALL_STATE(6347)] = 306368, + [SMALL_STATE(6348)] = 306385, + [SMALL_STATE(6349)] = 306402, + [SMALL_STATE(6350)] = 306419, + [SMALL_STATE(6351)] = 306436, + [SMALL_STATE(6352)] = 306453, + [SMALL_STATE(6353)] = 306470, + [SMALL_STATE(6354)] = 306487, + [SMALL_STATE(6355)] = 306504, + [SMALL_STATE(6356)] = 306521, + [SMALL_STATE(6357)] = 306538, + [SMALL_STATE(6358)] = 306555, + [SMALL_STATE(6359)] = 306572, + [SMALL_STATE(6360)] = 306589, + [SMALL_STATE(6361)] = 306606, + [SMALL_STATE(6362)] = 306623, + [SMALL_STATE(6363)] = 306640, + [SMALL_STATE(6364)] = 306657, + [SMALL_STATE(6365)] = 306674, + [SMALL_STATE(6366)] = 306691, + [SMALL_STATE(6367)] = 306708, + [SMALL_STATE(6368)] = 306725, + [SMALL_STATE(6369)] = 306742, + [SMALL_STATE(6370)] = 306759, + [SMALL_STATE(6371)] = 306776, + [SMALL_STATE(6372)] = 306793, + [SMALL_STATE(6373)] = 306810, + [SMALL_STATE(6374)] = 306827, + [SMALL_STATE(6375)] = 306844, + [SMALL_STATE(6376)] = 306861, + [SMALL_STATE(6377)] = 306878, + [SMALL_STATE(6378)] = 306895, + [SMALL_STATE(6379)] = 306912, + [SMALL_STATE(6380)] = 306929, + [SMALL_STATE(6381)] = 306946, + [SMALL_STATE(6382)] = 306963, + [SMALL_STATE(6383)] = 306980, + [SMALL_STATE(6384)] = 306997, + [SMALL_STATE(6385)] = 307014, + [SMALL_STATE(6386)] = 307031, + [SMALL_STATE(6387)] = 307048, + [SMALL_STATE(6388)] = 307065, + [SMALL_STATE(6389)] = 307082, + [SMALL_STATE(6390)] = 307099, + [SMALL_STATE(6391)] = 307116, + [SMALL_STATE(6392)] = 307133, + [SMALL_STATE(6393)] = 307150, + [SMALL_STATE(6394)] = 307167, + [SMALL_STATE(6395)] = 307184, + [SMALL_STATE(6396)] = 307201, + [SMALL_STATE(6397)] = 307218, + [SMALL_STATE(6398)] = 307235, + [SMALL_STATE(6399)] = 307252, + [SMALL_STATE(6400)] = 307269, + [SMALL_STATE(6401)] = 307286, + [SMALL_STATE(6402)] = 307303, + [SMALL_STATE(6403)] = 307320, + [SMALL_STATE(6404)] = 307337, + [SMALL_STATE(6405)] = 307354, + [SMALL_STATE(6406)] = 307371, + [SMALL_STATE(6407)] = 307388, + [SMALL_STATE(6408)] = 307405, + [SMALL_STATE(6409)] = 307422, + [SMALL_STATE(6410)] = 307439, + [SMALL_STATE(6411)] = 307456, + [SMALL_STATE(6412)] = 307473, + [SMALL_STATE(6413)] = 307490, + [SMALL_STATE(6414)] = 307507, + [SMALL_STATE(6415)] = 307524, + [SMALL_STATE(6416)] = 307541, + [SMALL_STATE(6417)] = 307558, + [SMALL_STATE(6418)] = 307575, + [SMALL_STATE(6419)] = 307592, + [SMALL_STATE(6420)] = 307609, + [SMALL_STATE(6421)] = 307626, + [SMALL_STATE(6422)] = 307643, + [SMALL_STATE(6423)] = 307660, + [SMALL_STATE(6424)] = 307677, + [SMALL_STATE(6425)] = 307694, + [SMALL_STATE(6426)] = 307711, + [SMALL_STATE(6427)] = 307728, + [SMALL_STATE(6428)] = 307745, + [SMALL_STATE(6429)] = 307762, + [SMALL_STATE(6430)] = 307779, + [SMALL_STATE(6431)] = 307796, + [SMALL_STATE(6432)] = 307813, + [SMALL_STATE(6433)] = 307830, + [SMALL_STATE(6434)] = 307847, + [SMALL_STATE(6435)] = 307864, + [SMALL_STATE(6436)] = 307881, + [SMALL_STATE(6437)] = 307898, + [SMALL_STATE(6438)] = 307915, + [SMALL_STATE(6439)] = 307932, + [SMALL_STATE(6440)] = 307949, + [SMALL_STATE(6441)] = 307966, + [SMALL_STATE(6442)] = 307983, + [SMALL_STATE(6443)] = 308000, + [SMALL_STATE(6444)] = 308017, + [SMALL_STATE(6445)] = 308034, + [SMALL_STATE(6446)] = 308051, + [SMALL_STATE(6447)] = 308068, + [SMALL_STATE(6448)] = 308085, + [SMALL_STATE(6449)] = 308102, + [SMALL_STATE(6450)] = 308119, + [SMALL_STATE(6451)] = 308136, + [SMALL_STATE(6452)] = 308153, + [SMALL_STATE(6453)] = 308170, + [SMALL_STATE(6454)] = 308187, + [SMALL_STATE(6455)] = 308204, + [SMALL_STATE(6456)] = 308221, + [SMALL_STATE(6457)] = 308238, + [SMALL_STATE(6458)] = 308255, + [SMALL_STATE(6459)] = 308272, + [SMALL_STATE(6460)] = 308289, + [SMALL_STATE(6461)] = 308306, + [SMALL_STATE(6462)] = 308323, + [SMALL_STATE(6463)] = 308340, + [SMALL_STATE(6464)] = 308357, + [SMALL_STATE(6465)] = 308374, + [SMALL_STATE(6466)] = 308391, + [SMALL_STATE(6467)] = 308408, + [SMALL_STATE(6468)] = 308425, + [SMALL_STATE(6469)] = 308442, + [SMALL_STATE(6470)] = 308459, + [SMALL_STATE(6471)] = 308476, + [SMALL_STATE(6472)] = 308493, + [SMALL_STATE(6473)] = 308510, + [SMALL_STATE(6474)] = 308527, + [SMALL_STATE(6475)] = 308544, + [SMALL_STATE(6476)] = 308561, + [SMALL_STATE(6477)] = 308578, + [SMALL_STATE(6478)] = 308595, + [SMALL_STATE(6479)] = 308612, + [SMALL_STATE(6480)] = 308629, + [SMALL_STATE(6481)] = 308646, + [SMALL_STATE(6482)] = 308663, + [SMALL_STATE(6483)] = 308680, + [SMALL_STATE(6484)] = 308697, + [SMALL_STATE(6485)] = 308714, + [SMALL_STATE(6486)] = 308731, + [SMALL_STATE(6487)] = 308748, + [SMALL_STATE(6488)] = 308765, + [SMALL_STATE(6489)] = 308782, + [SMALL_STATE(6490)] = 308799, + [SMALL_STATE(6491)] = 308816, + [SMALL_STATE(6492)] = 308833, + [SMALL_STATE(6493)] = 308850, + [SMALL_STATE(6494)] = 308867, + [SMALL_STATE(6495)] = 308884, + [SMALL_STATE(6496)] = 308901, + [SMALL_STATE(6497)] = 308918, + [SMALL_STATE(6498)] = 308935, + [SMALL_STATE(6499)] = 308952, + [SMALL_STATE(6500)] = 308969, + [SMALL_STATE(6501)] = 308986, + [SMALL_STATE(6502)] = 309003, + [SMALL_STATE(6503)] = 309020, + [SMALL_STATE(6504)] = 309037, + [SMALL_STATE(6505)] = 309054, + [SMALL_STATE(6506)] = 309071, + [SMALL_STATE(6507)] = 309088, + [SMALL_STATE(6508)] = 309105, + [SMALL_STATE(6509)] = 309122, + [SMALL_STATE(6510)] = 309139, + [SMALL_STATE(6511)] = 309156, + [SMALL_STATE(6512)] = 309173, + [SMALL_STATE(6513)] = 309190, + [SMALL_STATE(6514)] = 309207, + [SMALL_STATE(6515)] = 309224, + [SMALL_STATE(6516)] = 309241, + [SMALL_STATE(6517)] = 309258, + [SMALL_STATE(6518)] = 309275, + [SMALL_STATE(6519)] = 309292, + [SMALL_STATE(6520)] = 309309, + [SMALL_STATE(6521)] = 309326, + [SMALL_STATE(6522)] = 309343, + [SMALL_STATE(6523)] = 309360, + [SMALL_STATE(6524)] = 309377, + [SMALL_STATE(6525)] = 309394, + [SMALL_STATE(6526)] = 309411, + [SMALL_STATE(6527)] = 309428, + [SMALL_STATE(6528)] = 309445, + [SMALL_STATE(6529)] = 309462, + [SMALL_STATE(6530)] = 309479, + [SMALL_STATE(6531)] = 309496, + [SMALL_STATE(6532)] = 309513, + [SMALL_STATE(6533)] = 309530, + [SMALL_STATE(6534)] = 309547, + [SMALL_STATE(6535)] = 309564, + [SMALL_STATE(6536)] = 309581, + [SMALL_STATE(6537)] = 309598, + [SMALL_STATE(6538)] = 309615, + [SMALL_STATE(6539)] = 309632, + [SMALL_STATE(6540)] = 309649, + [SMALL_STATE(6541)] = 309666, + [SMALL_STATE(6542)] = 309683, + [SMALL_STATE(6543)] = 309700, + [SMALL_STATE(6544)] = 309717, + [SMALL_STATE(6545)] = 309734, + [SMALL_STATE(6546)] = 309751, + [SMALL_STATE(6547)] = 309768, + [SMALL_STATE(6548)] = 309785, + [SMALL_STATE(6549)] = 309802, + [SMALL_STATE(6550)] = 309819, + [SMALL_STATE(6551)] = 309836, + [SMALL_STATE(6552)] = 309853, + [SMALL_STATE(6553)] = 309870, + [SMALL_STATE(6554)] = 309887, + [SMALL_STATE(6555)] = 309904, + [SMALL_STATE(6556)] = 309921, + [SMALL_STATE(6557)] = 309938, + [SMALL_STATE(6558)] = 309955, + [SMALL_STATE(6559)] = 309972, + [SMALL_STATE(6560)] = 309989, + [SMALL_STATE(6561)] = 310006, + [SMALL_STATE(6562)] = 310023, + [SMALL_STATE(6563)] = 310040, + [SMALL_STATE(6564)] = 310057, + [SMALL_STATE(6565)] = 310074, + [SMALL_STATE(6566)] = 310091, + [SMALL_STATE(6567)] = 310108, + [SMALL_STATE(6568)] = 310125, + [SMALL_STATE(6569)] = 310142, + [SMALL_STATE(6570)] = 310159, + [SMALL_STATE(6571)] = 310176, + [SMALL_STATE(6572)] = 310193, + [SMALL_STATE(6573)] = 310210, + [SMALL_STATE(6574)] = 310227, + [SMALL_STATE(6575)] = 310244, + [SMALL_STATE(6576)] = 310261, + [SMALL_STATE(6577)] = 310278, + [SMALL_STATE(6578)] = 310295, + [SMALL_STATE(6579)] = 310312, + [SMALL_STATE(6580)] = 310329, + [SMALL_STATE(6581)] = 310346, + [SMALL_STATE(6582)] = 310363, + [SMALL_STATE(6583)] = 310380, + [SMALL_STATE(6584)] = 310397, + [SMALL_STATE(6585)] = 310414, + [SMALL_STATE(6586)] = 310431, + [SMALL_STATE(6587)] = 310448, + [SMALL_STATE(6588)] = 310465, + [SMALL_STATE(6589)] = 310482, + [SMALL_STATE(6590)] = 310499, + [SMALL_STATE(6591)] = 310516, + [SMALL_STATE(6592)] = 310533, + [SMALL_STATE(6593)] = 310550, + [SMALL_STATE(6594)] = 310567, + [SMALL_STATE(6595)] = 310584, + [SMALL_STATE(6596)] = 310601, + [SMALL_STATE(6597)] = 310618, + [SMALL_STATE(6598)] = 310635, + [SMALL_STATE(6599)] = 310652, + [SMALL_STATE(6600)] = 310669, + [SMALL_STATE(6601)] = 310686, + [SMALL_STATE(6602)] = 310703, + [SMALL_STATE(6603)] = 310720, + [SMALL_STATE(6604)] = 310737, + [SMALL_STATE(6605)] = 310754, + [SMALL_STATE(6606)] = 310771, + [SMALL_STATE(6607)] = 310788, + [SMALL_STATE(6608)] = 310805, + [SMALL_STATE(6609)] = 310822, + [SMALL_STATE(6610)] = 310839, + [SMALL_STATE(6611)] = 310856, + [SMALL_STATE(6612)] = 310873, + [SMALL_STATE(6613)] = 310890, + [SMALL_STATE(6614)] = 310907, + [SMALL_STATE(6615)] = 310924, + [SMALL_STATE(6616)] = 310941, + [SMALL_STATE(6617)] = 310958, + [SMALL_STATE(6618)] = 310975, + [SMALL_STATE(6619)] = 310992, + [SMALL_STATE(6620)] = 311009, + [SMALL_STATE(6621)] = 311026, + [SMALL_STATE(6622)] = 311043, + [SMALL_STATE(6623)] = 311060, + [SMALL_STATE(6624)] = 311077, + [SMALL_STATE(6625)] = 311094, + [SMALL_STATE(6626)] = 311111, + [SMALL_STATE(6627)] = 311128, + [SMALL_STATE(6628)] = 311145, + [SMALL_STATE(6629)] = 311162, + [SMALL_STATE(6630)] = 311179, + [SMALL_STATE(6631)] = 311196, + [SMALL_STATE(6632)] = 311213, + [SMALL_STATE(6633)] = 311230, + [SMALL_STATE(6634)] = 311247, + [SMALL_STATE(6635)] = 311264, + [SMALL_STATE(6636)] = 311281, + [SMALL_STATE(6637)] = 311298, + [SMALL_STATE(6638)] = 311315, + [SMALL_STATE(6639)] = 311332, + [SMALL_STATE(6640)] = 311349, + [SMALL_STATE(6641)] = 311366, + [SMALL_STATE(6642)] = 311383, + [SMALL_STATE(6643)] = 311400, + [SMALL_STATE(6644)] = 311417, + [SMALL_STATE(6645)] = 311434, + [SMALL_STATE(6646)] = 311451, + [SMALL_STATE(6647)] = 311468, + [SMALL_STATE(6648)] = 311485, + [SMALL_STATE(6649)] = 311502, + [SMALL_STATE(6650)] = 311519, + [SMALL_STATE(6651)] = 311536, + [SMALL_STATE(6652)] = 311553, + [SMALL_STATE(6653)] = 311570, + [SMALL_STATE(6654)] = 311587, + [SMALL_STATE(6655)] = 311604, + [SMALL_STATE(6656)] = 311621, + [SMALL_STATE(6657)] = 311638, + [SMALL_STATE(6658)] = 311655, + [SMALL_STATE(6659)] = 311672, + [SMALL_STATE(6660)] = 311689, + [SMALL_STATE(6661)] = 311706, + [SMALL_STATE(6662)] = 311723, + [SMALL_STATE(6663)] = 311740, + [SMALL_STATE(6664)] = 311757, + [SMALL_STATE(6665)] = 311774, + [SMALL_STATE(6666)] = 311791, + [SMALL_STATE(6667)] = 311808, + [SMALL_STATE(6668)] = 311825, + [SMALL_STATE(6669)] = 311842, + [SMALL_STATE(6670)] = 311859, + [SMALL_STATE(6671)] = 311876, + [SMALL_STATE(6672)] = 311893, + [SMALL_STATE(6673)] = 311910, + [SMALL_STATE(6674)] = 311927, + [SMALL_STATE(6675)] = 311944, + [SMALL_STATE(6676)] = 311961, + [SMALL_STATE(6677)] = 311978, + [SMALL_STATE(6678)] = 311995, + [SMALL_STATE(6679)] = 312012, + [SMALL_STATE(6680)] = 312029, + [SMALL_STATE(6681)] = 312046, + [SMALL_STATE(6682)] = 312063, + [SMALL_STATE(6683)] = 312080, + [SMALL_STATE(6684)] = 312097, + [SMALL_STATE(6685)] = 312114, + [SMALL_STATE(6686)] = 312131, + [SMALL_STATE(6687)] = 312148, + [SMALL_STATE(6688)] = 312165, + [SMALL_STATE(6689)] = 312182, + [SMALL_STATE(6690)] = 312199, + [SMALL_STATE(6691)] = 312216, + [SMALL_STATE(6692)] = 312233, + [SMALL_STATE(6693)] = 312250, + [SMALL_STATE(6694)] = 312267, + [SMALL_STATE(6695)] = 312284, + [SMALL_STATE(6696)] = 312301, + [SMALL_STATE(6697)] = 312318, + [SMALL_STATE(6698)] = 312335, + [SMALL_STATE(6699)] = 312352, + [SMALL_STATE(6700)] = 312369, + [SMALL_STATE(6701)] = 312386, + [SMALL_STATE(6702)] = 312403, + [SMALL_STATE(6703)] = 312420, + [SMALL_STATE(6704)] = 312437, + [SMALL_STATE(6705)] = 312454, + [SMALL_STATE(6706)] = 312471, + [SMALL_STATE(6707)] = 312488, + [SMALL_STATE(6708)] = 312505, + [SMALL_STATE(6709)] = 312522, + [SMALL_STATE(6710)] = 312539, + [SMALL_STATE(6711)] = 312556, + [SMALL_STATE(6712)] = 312573, + [SMALL_STATE(6713)] = 312590, + [SMALL_STATE(6714)] = 312607, + [SMALL_STATE(6715)] = 312624, + [SMALL_STATE(6716)] = 312641, + [SMALL_STATE(6717)] = 312658, + [SMALL_STATE(6718)] = 312675, + [SMALL_STATE(6719)] = 312692, + [SMALL_STATE(6720)] = 312709, + [SMALL_STATE(6721)] = 312726, + [SMALL_STATE(6722)] = 312743, + [SMALL_STATE(6723)] = 312760, + [SMALL_STATE(6724)] = 312777, + [SMALL_STATE(6725)] = 312794, + [SMALL_STATE(6726)] = 312811, + [SMALL_STATE(6727)] = 312828, + [SMALL_STATE(6728)] = 312845, + [SMALL_STATE(6729)] = 312862, + [SMALL_STATE(6730)] = 312879, + [SMALL_STATE(6731)] = 312896, + [SMALL_STATE(6732)] = 312913, + [SMALL_STATE(6733)] = 312930, + [SMALL_STATE(6734)] = 312947, + [SMALL_STATE(6735)] = 312964, + [SMALL_STATE(6736)] = 312981, + [SMALL_STATE(6737)] = 312998, + [SMALL_STATE(6738)] = 313015, + [SMALL_STATE(6739)] = 313032, + [SMALL_STATE(6740)] = 313049, + [SMALL_STATE(6741)] = 313066, + [SMALL_STATE(6742)] = 313083, + [SMALL_STATE(6743)] = 313100, + [SMALL_STATE(6744)] = 313117, + [SMALL_STATE(6745)] = 313134, + [SMALL_STATE(6746)] = 313151, + [SMALL_STATE(6747)] = 313168, + [SMALL_STATE(6748)] = 313185, + [SMALL_STATE(6749)] = 313202, + [SMALL_STATE(6750)] = 313219, + [SMALL_STATE(6751)] = 313236, + [SMALL_STATE(6752)] = 313253, + [SMALL_STATE(6753)] = 313270, + [SMALL_STATE(6754)] = 313287, + [SMALL_STATE(6755)] = 313304, + [SMALL_STATE(6756)] = 313321, + [SMALL_STATE(6757)] = 313338, + [SMALL_STATE(6758)] = 313355, + [SMALL_STATE(6759)] = 313372, + [SMALL_STATE(6760)] = 313389, + [SMALL_STATE(6761)] = 313406, + [SMALL_STATE(6762)] = 313423, + [SMALL_STATE(6763)] = 313440, + [SMALL_STATE(6764)] = 313457, + [SMALL_STATE(6765)] = 313474, + [SMALL_STATE(6766)] = 313491, + [SMALL_STATE(6767)] = 313508, + [SMALL_STATE(6768)] = 313525, + [SMALL_STATE(6769)] = 313542, + [SMALL_STATE(6770)] = 313559, + [SMALL_STATE(6771)] = 313574, + [SMALL_STATE(6772)] = 313591, + [SMALL_STATE(6773)] = 313608, + [SMALL_STATE(6774)] = 313625, + [SMALL_STATE(6775)] = 313642, + [SMALL_STATE(6776)] = 313659, + [SMALL_STATE(6777)] = 313676, + [SMALL_STATE(6778)] = 313693, + [SMALL_STATE(6779)] = 313710, + [SMALL_STATE(6780)] = 313727, + [SMALL_STATE(6781)] = 313744, + [SMALL_STATE(6782)] = 313761, + [SMALL_STATE(6783)] = 313778, + [SMALL_STATE(6784)] = 313795, + [SMALL_STATE(6785)] = 313812, + [SMALL_STATE(6786)] = 313829, + [SMALL_STATE(6787)] = 313846, + [SMALL_STATE(6788)] = 313863, + [SMALL_STATE(6789)] = 313880, + [SMALL_STATE(6790)] = 313897, + [SMALL_STATE(6791)] = 313914, + [SMALL_STATE(6792)] = 313931, + [SMALL_STATE(6793)] = 313948, + [SMALL_STATE(6794)] = 313965, + [SMALL_STATE(6795)] = 313982, + [SMALL_STATE(6796)] = 313999, + [SMALL_STATE(6797)] = 314016, + [SMALL_STATE(6798)] = 314033, + [SMALL_STATE(6799)] = 314050, + [SMALL_STATE(6800)] = 314067, + [SMALL_STATE(6801)] = 314084, + [SMALL_STATE(6802)] = 314101, + [SMALL_STATE(6803)] = 314118, + [SMALL_STATE(6804)] = 314135, + [SMALL_STATE(6805)] = 314152, + [SMALL_STATE(6806)] = 314169, + [SMALL_STATE(6807)] = 314186, + [SMALL_STATE(6808)] = 314201, + [SMALL_STATE(6809)] = 314218, + [SMALL_STATE(6810)] = 314235, + [SMALL_STATE(6811)] = 314252, + [SMALL_STATE(6812)] = 314269, + [SMALL_STATE(6813)] = 314286, + [SMALL_STATE(6814)] = 314303, + [SMALL_STATE(6815)] = 314320, + [SMALL_STATE(6816)] = 314337, + [SMALL_STATE(6817)] = 314354, + [SMALL_STATE(6818)] = 314371, + [SMALL_STATE(6819)] = 314388, + [SMALL_STATE(6820)] = 314405, + [SMALL_STATE(6821)] = 314422, + [SMALL_STATE(6822)] = 314439, + [SMALL_STATE(6823)] = 314456, + [SMALL_STATE(6824)] = 314473, + [SMALL_STATE(6825)] = 314490, + [SMALL_STATE(6826)] = 314507, + [SMALL_STATE(6827)] = 314524, + [SMALL_STATE(6828)] = 314541, + [SMALL_STATE(6829)] = 314558, + [SMALL_STATE(6830)] = 314575, + [SMALL_STATE(6831)] = 314592, + [SMALL_STATE(6832)] = 314609, + [SMALL_STATE(6833)] = 314626, + [SMALL_STATE(6834)] = 314643, + [SMALL_STATE(6835)] = 314660, + [SMALL_STATE(6836)] = 314677, + [SMALL_STATE(6837)] = 314694, + [SMALL_STATE(6838)] = 314711, + [SMALL_STATE(6839)] = 314728, + [SMALL_STATE(6840)] = 314745, + [SMALL_STATE(6841)] = 314762, + [SMALL_STATE(6842)] = 314779, + [SMALL_STATE(6843)] = 314796, + [SMALL_STATE(6844)] = 314813, + [SMALL_STATE(6845)] = 314830, + [SMALL_STATE(6846)] = 314847, + [SMALL_STATE(6847)] = 314864, + [SMALL_STATE(6848)] = 314881, + [SMALL_STATE(6849)] = 314898, + [SMALL_STATE(6850)] = 314915, + [SMALL_STATE(6851)] = 314932, + [SMALL_STATE(6852)] = 314949, + [SMALL_STATE(6853)] = 314966, + [SMALL_STATE(6854)] = 314983, + [SMALL_STATE(6855)] = 315000, + [SMALL_STATE(6856)] = 315017, + [SMALL_STATE(6857)] = 315034, + [SMALL_STATE(6858)] = 315051, + [SMALL_STATE(6859)] = 315068, + [SMALL_STATE(6860)] = 315085, + [SMALL_STATE(6861)] = 315102, + [SMALL_STATE(6862)] = 315119, + [SMALL_STATE(6863)] = 315136, + [SMALL_STATE(6864)] = 315153, + [SMALL_STATE(6865)] = 315170, + [SMALL_STATE(6866)] = 315187, + [SMALL_STATE(6867)] = 315204, + [SMALL_STATE(6868)] = 315221, + [SMALL_STATE(6869)] = 315238, + [SMALL_STATE(6870)] = 315255, + [SMALL_STATE(6871)] = 315272, + [SMALL_STATE(6872)] = 315289, + [SMALL_STATE(6873)] = 315306, + [SMALL_STATE(6874)] = 315323, + [SMALL_STATE(6875)] = 315340, + [SMALL_STATE(6876)] = 315357, + [SMALL_STATE(6877)] = 315374, + [SMALL_STATE(6878)] = 315391, + [SMALL_STATE(6879)] = 315408, + [SMALL_STATE(6880)] = 315425, + [SMALL_STATE(6881)] = 315442, + [SMALL_STATE(6882)] = 315459, + [SMALL_STATE(6883)] = 315476, + [SMALL_STATE(6884)] = 315493, + [SMALL_STATE(6885)] = 315510, + [SMALL_STATE(6886)] = 315527, + [SMALL_STATE(6887)] = 315544, + [SMALL_STATE(6888)] = 315561, + [SMALL_STATE(6889)] = 315578, + [SMALL_STATE(6890)] = 315595, + [SMALL_STATE(6891)] = 315612, + [SMALL_STATE(6892)] = 315629, + [SMALL_STATE(6893)] = 315646, + [SMALL_STATE(6894)] = 315663, + [SMALL_STATE(6895)] = 315680, + [SMALL_STATE(6896)] = 315697, + [SMALL_STATE(6897)] = 315714, + [SMALL_STATE(6898)] = 315731, + [SMALL_STATE(6899)] = 315735, + [SMALL_STATE(6900)] = 315739, + [SMALL_STATE(6901)] = 315743, + [SMALL_STATE(6902)] = 315747, }; 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(6705), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 0), - [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(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), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 3), + [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 3), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), + [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6361), + [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 23), + [104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 23), + [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 6), + [108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 6), + [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4), + [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4), + [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), + [116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6207), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6148), + [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 2), + [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 9), + [138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 9), + [140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), + [142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 3), + [144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access, 2, .production_id = 3), + [146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access, 2, .production_id = 3), + [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 6), + [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 6), + [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 2), + [154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 2), + [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1), + [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), + [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 22), + [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 22), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), + [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 34), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 34), + [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 35), + [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 35), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2), + [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 24), + [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 24), + [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 47), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 47), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), + [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 47), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 47), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 35), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 35), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(140), + [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5148), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4676), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5507), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1936), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5245), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(382), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5147), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(397), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3125), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6687), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6560), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4674), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5640), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(749), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5746), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3149), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4490), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4032), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3631), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6804), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5744), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(698), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5643), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5644), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1273), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4544), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6789), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_body, 2), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(137), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4658), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4659), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1991), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5216), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(383), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4660), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(404), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3092), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6881), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6880), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4661), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5519), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(410), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5520), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3093), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4356), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4046), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3679), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6872), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5526), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(504), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5528), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5529), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1269), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4372), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6867), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_body, 1), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(145), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5297), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(352), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(333), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(305), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(263), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(819), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3456), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(549), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(550), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(551), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(552), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(559), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(561), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(257), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5834), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(415), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(6748), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3589), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5359), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(360), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6332), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 29), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 1, .production_id = 29), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 46), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 46), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(185), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5291), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1010), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1011), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(696), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(294), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(685), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3464), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(539), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(538), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(537), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(536), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(535), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(534), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(381), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5774), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(408), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(6756), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3677), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5488), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(986), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_expression, 2), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_expression, 2), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_expression, 2, .production_id = 8), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_expression, 2, .production_id = 8), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6255), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(354), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5295), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1152), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1153), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1095), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(271), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(740), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(3438), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(668), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(667), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(666), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(665), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(664), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(663), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1091), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5821), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(414), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(6857), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(6750), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(3661), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5372), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1128), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5619), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6334), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6428), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(224), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 1), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 1), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5910), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(330), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5449), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1104), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1103), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1068), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(329), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(967), + [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3453), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(527), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(427), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(521), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(501), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(457), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(455), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1054), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5637), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(441), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(6656), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3791), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5275), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1093), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(330), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5449), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1104), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1103), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1068), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(329), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(967), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(3453), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(527), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(427), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(521), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(501), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(457), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(455), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1054), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5637), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(441), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(6656), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(3791), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5275), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1093), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(226), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 3, .production_id = 14), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6893), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6711), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5649), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(363), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6102), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(364), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_conditon, 1), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_conditon, 1), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_conditon, 3), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_conditon, 3), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 1), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 1), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6886), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(1042), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5511), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6891), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6528), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6438), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(1044), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6133), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(1080), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(1077), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_tuning, 2), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_tuning, 2), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_option, 2), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6433), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 11), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5527), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6348), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5929), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1887), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1886), + [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1697), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 2), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 11), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 11), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [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(66), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 5, .production_id = 62), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 5, .production_id = 62), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), SHIFT(70), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 11), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 11), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), SHIFT(66), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 11), SHIFT(66), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(70), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(66), + [2818] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(66), + [2822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(70), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(70), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 11), SHIFT(70), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7, .production_id = 27), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7, .production_id = 27), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 7, .production_id = 16), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 16), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 16), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 48), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 48), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7, .production_id = 27), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7, .production_id = 16), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7, .production_id = 16), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 36), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 45), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 6, .production_id = 18), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 6, .production_id = 13), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 21), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 44), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 12), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 20), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 8), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 40), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 30), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, .production_id = 18), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 36), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 20), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 6, .production_id = 27), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 6, .production_id = 27), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 6, .production_id = 16), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 16), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 16), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 37), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 37), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 16), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 16), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 6, .production_id = 27), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 6, .production_id = 16), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 6, .production_id = 16), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 36), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 5, .production_id = 18), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 5, .production_id = 13), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 5, .production_id = 21), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 5, .production_id = 12), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 5), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 5, .production_id = 32), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 20), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 8), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 31), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 30), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 5, .production_id = 18), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 15), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 26), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 25), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 20), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 5, .production_id = 27), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 5, .production_id = 27), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 5, .production_id = 16), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 5, .production_id = 16), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 5, .production_id = 16), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 5, .production_id = 16), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 26), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 25), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 15), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8, .production_id = 16), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 4, .production_id = 13), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 4, .production_id = 21), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 4, .production_id = 12), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 20), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 8), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 4, .production_id = 18), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 15), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 4, .production_id = 16), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 4, .production_id = 16), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 15), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 16), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 3, .production_id = 13), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 3, .production_id = 12), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 3), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 8), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 3), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8, .production_id = 27), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 56), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 27), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 16), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9, .production_id = 27), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 27), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 16), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 27), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 16), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 27), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8, .production_id = 27), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 27), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 27), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 7, .production_id = 27), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 20), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 36), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 27), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 8), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 20), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 53), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 7, .production_id = 32), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 44), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(5458), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 21), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 54), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 7, .production_id = 18), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 45), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8, .production_id = 16), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 7), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 16), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 20), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 56), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 27), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 8, .production_id = 27), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 20), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 20), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 53), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 59), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 8, .production_id = 54), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 45), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 16), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9, .production_id = 27), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 27), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 20), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_mode, 1), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 59), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 45), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 45), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 45), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 45), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 45), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 20), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 20), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 45), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 45), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 20), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 45), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 45), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 20), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 20), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 45), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 45), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 20), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 20), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 45), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 45), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 20), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 20), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_tuning, 1), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 16), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 50), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 50), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 45), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 59), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 20), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 45), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 8, .production_id = 54), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 27), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 59), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 53), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 20), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 20), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 8, .production_id = 27), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 45), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 7, .production_id = 18), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 54), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 21), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 44), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 7, .production_id = 32), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 53), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 20), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 8), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 36), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 20), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 7, .production_id = 27), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 7, .production_id = 16), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7, .production_id = 27), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 16), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 27), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 27), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 36), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 45), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 6, .production_id = 18), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 6, .production_id = 13), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 21), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 44), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 12), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 20), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 8), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 40), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 30), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, .production_id = 18), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 36), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 20), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 6, .production_id = 27), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 6, .production_id = 27), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 6, .production_id = 16), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 6, .production_id = 27), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 36), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 5, .production_id = 18), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 5, .production_id = 13), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 5, .production_id = 21), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 5, .production_id = 12), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 5), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 5, .production_id = 32), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 20), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 8), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 31), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 30), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, .production_id = 18), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 15), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 26), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 25), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 20), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 5, .production_id = 27), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 5, .production_id = 27), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 5, .production_id = 16), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 5, .production_id = 16), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 26), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 25), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 15), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 4, .production_id = 13), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 4, .production_id = 21), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 4, .production_id = 12), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 20), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 8), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, .production_id = 18), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 15), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 4, .production_id = 16), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 4, .production_id = 16), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 15), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 3, .production_id = 13), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 3, .production_id = 12), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 3), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 8), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 3), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6764), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuning, 2, .production_id = 17), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuning, 2, .production_id = 17), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6248), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6796), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 33), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_order, 1), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 29), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 2, .production_id = 29), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6241), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6421), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_tuning, 2), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 11), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 2), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6767), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2469), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 7), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2495), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5512), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6218), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5923), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6842), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6529), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5787), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6408), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2457), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(6351), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2478), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5757), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6703), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2531), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6840), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2567), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5578), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2450), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5851), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2566), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2459), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2578), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 1), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_when_branch_repeat1, 1), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 38), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 2), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 2), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2625), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2583), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 3), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 3), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 2), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 1, .production_id = 28), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(6534), + [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5798), + [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5412), + [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5412), + [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5410), + [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5410), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3068), + [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3075), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(491), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5409), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3066), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_operator, 1), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiplicative_operator, 1), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_operator, 1), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 7, .production_id = 64), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 7, .production_id = 64), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_tuning, 1), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_tuning, 1), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 1), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 1), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 8), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 8), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_size_phrase, 4, .production_id = 49), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_size_phrase, 4, .production_id = 49), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [4431] = {.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), + [4437] = {.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), + [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 1), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 12, .production_id = 64), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 12, .production_id = 64), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 38), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 28), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 28), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 38), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(3253), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(522), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(3208), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 38), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4519] = {.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), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 1), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 28), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6134), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 38), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 28), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_field, 1, .production_id = 19), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_field, 3, .production_id = 43), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2783), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3270), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3311), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(6522), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(760), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(760), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(5795), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(5411), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3274), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(2783), + [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(3270), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using, 2), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(733), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(733), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using, 3), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2442), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2442), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1271), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3454), + [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4012), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_repeat1, 2), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_repeat1, 2), SHIFT_REPEAT(5162), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(2783), + [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4626), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4623), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 27), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 27), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 16), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 16), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 16), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 16), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 27), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 27), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 1), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_option, 1), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(3277), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(5188), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(6227), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(2783), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(3311), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(2783), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), + [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4235), + [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4238), + [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4240), + [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(5168), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(5170), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4241), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3277), + [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(5188), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(694), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(6227), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(6151), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(604), + [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(604), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(5391), + [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3476), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6031), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), SHIFT_REPEAT(3047), + [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), SHIFT_REPEAT(2783), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, .production_id = 4), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), + [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(6822), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(6482), + [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(5848), + [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(3815), + [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(5833), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [5233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3915), + [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3910), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), + [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), + [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), + [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 4), + [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 4), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), + [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6214), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(439), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(3924), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(3582), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), SHIFT_REPEAT(3391), + [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), + [5446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), SHIFT_REPEAT(5507), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 27), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 16), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 4), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 3), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 18), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 2), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), + [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(702), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(702), + [5685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(5415), + [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(4001), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 1), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(3884), + [5706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), + [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(5507), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 1), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 38), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 28), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(3028), + [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(3028), + [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1271), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_tuning, 1), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(4193), + [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(5075), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), + [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 1), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 3), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 18), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), + [5912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), SHIFT_REPEAT(3942), + [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), SHIFT_REPEAT(4332), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 4), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 16), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 2), + [5958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 2), SHIFT_REPEAT(4387), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 6, .production_id = 27), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5, .production_id = 16), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5, .production_id = 27), + [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 18), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 4), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(5156), + [6038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(5364), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4604), + [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(6805), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 2), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 2), SHIFT_REPEAT(4610), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), + [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(6488), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(281), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_tuning, 1), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(4919), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), + [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5580), + [6216] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(78), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(78), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 31), + [6245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(753), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 1), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 51), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 7), + [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 7), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [6290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), SHIFT(78), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 8), + [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 8), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), + [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(5613), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 1), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 61), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 61), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 55), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 55), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), + [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 31), + [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(78), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(5453), + [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(5151), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 57), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 55), + [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 55), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), + [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(6863), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(6851), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), + [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), + [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 4), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_tuning, 2), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), + [6405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), + [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), + [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 11), SHIFT(78), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 55), + [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 55), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 6), + [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 6), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4655), + [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), + [6451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(6470), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 61), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 61), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 6), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 6), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 9), + [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 9), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 61), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 61), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [6506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 39), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 38), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(6871), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 58), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 2), + [6601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 2), SHIFT_REPEAT(5168), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 1), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 51), + [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [6634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(5208), + [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(5208), + [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_tuning, 1), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(213), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), + [6665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), SHIFT_REPEAT(6491), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 28), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [6704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6747), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 31), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [6747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [6775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 7), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 38), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 2), + [6819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 2), SHIFT_REPEAT(5769), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 28), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_repeat1, 2), + [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_member_repeat1, 2), + [6838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_member_repeat1, 2), SHIFT_REPEAT(4430), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, .production_id = 63), + [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member, 4, .production_id = 63), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [6971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(438), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [6976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 2, .production_id = 17), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, .production_id = 60), + [6996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member, 3, .production_id = 60), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 57), + [7002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 31), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), SHIFT_REPEAT(5440), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat1, 2), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 51), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 31), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), + [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [7125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(6734), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), + [7136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), + [7138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 5), + [7140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 5), + [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 1), + [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 1), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [7154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5680), + [7157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6735), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1), + [7210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 1), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 2), + [7220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 2), SHIFT_REPEAT(6802), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 1), + [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 1), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(5951), + [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2), SHIFT_REPEAT(186), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_tuning, 3), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 52), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(3935), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6058), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(3588), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1, .production_id = 1), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4468), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 3, .production_id = 41), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, .production_id = 4), + [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member, 1, .production_id = 4), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), + [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(5239), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [7780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 7), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 38), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 28), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 1), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 1), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 3), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 1), + [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat1, 1), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 5), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_tuning, 1), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 1), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_tuning, 1), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), [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(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), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 4), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_pass_type, 1), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [9076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 42), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [9638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 3), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9888] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [9942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [9948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), }; #ifdef __cplusplus